From f58abf59c0e45ccee7844f651b70f1a4af106f97 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 1 Apr 2024 16:04:23 +0200 Subject: [PATCH 01/40] Jit: Skip discarded registers when flushing for interpreter fallback Normally, the asserts added in 34b0a6ea90 are only triggered when something actually went wrong in Dolphin. But there is one exception: In FallBackToInterpreter, we flush all registers regardless of whether they're discarded. This is fine as long as none of the discarded registers are inputs to the instruction that the interpreter will run. To avoid false positive asserts, this change adds a parameter to Flush that controls whether to skip the asserts for discarded registers. Additionally, an assert for discarded registers is added to Arm64FPRCache::Flush. (Previously JitArm64 asserted for GPRs (and CRs) only, whereas Jit64 asserted both for GPRs and FPRs. I most likely didn't think of FPRs when writing 34b0a6ea90.) --- Source/Core/Core/PowerPC/Jit64/Jit.cpp | 4 +-- .../PowerPC/Jit64/RegCache/JitRegCache.cpp | 5 +-- .../Core/PowerPC/Jit64/RegCache/JitRegCache.h | 9 ++++- Source/Core/Core/PowerPC/JitArm64/Jit.cpp | 4 +-- .../PowerPC/JitArm64/JitArm64_RegCache.cpp | 33 +++++++++++++------ .../Core/PowerPC/JitArm64/JitArm64_RegCache.h | 27 +++++++++++---- 6 files changed, 58 insertions(+), 24 deletions(-) diff --git a/Source/Core/Core/PowerPC/Jit64/Jit.cpp b/Source/Core/Core/PowerPC/Jit64/Jit.cpp index ce1dc906d3..3c4ab352c0 100644 --- a/Source/Core/Core/PowerPC/Jit64/Jit.cpp +++ b/Source/Core/Core/PowerPC/Jit64/Jit.cpp @@ -334,8 +334,8 @@ void Jit64::Shutdown() void Jit64::FallBackToInterpreter(UGeckoInstruction inst) { - gpr.Flush(); - fpr.Flush(); + gpr.Flush(BitSet32(0xFFFFFFFF), RegCache::IgnoreDiscardedRegisters::Yes); + fpr.Flush(BitSet32(0xFFFFFFFF), RegCache::IgnoreDiscardedRegisters::Yes); if (js.op->canEndBlock) { diff --git a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp index 86f1d9e15a..f80fd0943e 100644 --- a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp +++ b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.cpp @@ -404,7 +404,7 @@ void RegCache::Discard(BitSet32 pregs) } } -void RegCache::Flush(BitSet32 pregs) +void RegCache::Flush(BitSet32 pregs, IgnoreDiscardedRegisters ignore_discarded_registers) { ASSERT_MSG( DYNA_REC, @@ -423,7 +423,8 @@ void RegCache::Flush(BitSet32 pregs) case PPCCachedReg::LocationType::Default: break; case PPCCachedReg::LocationType::Discarded: - ASSERT_MSG(DYNA_REC, false, "Attempted to flush discarded PPC reg {}", i); + ASSERT_MSG(DYNA_REC, ignore_discarded_registers != IgnoreDiscardedRegisters::No, + "Attempted to flush discarded PPC reg {}", i); break; case PPCCachedReg::LocationType::SpeculativeImmediate: // We can have a cached value without a host register through speculative constants. diff --git a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h index 158c41c02d..d926216487 100644 --- a/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h +++ b/Source/Core/Core/PowerPC/Jit64/RegCache/JitRegCache.h @@ -129,6 +129,12 @@ public: MaintainState, }; + enum class IgnoreDiscardedRegisters + { + No, + Yes, + }; + explicit RegCache(Jit64& jit); virtual ~RegCache() = default; @@ -169,7 +175,8 @@ public: RCForkGuard Fork(); void Discard(BitSet32 pregs); - void Flush(BitSet32 pregs = BitSet32::AllTrue(32)); + void Flush(BitSet32 pregs = BitSet32::AllTrue(32), + IgnoreDiscardedRegisters ignore_discarded_registers = IgnoreDiscardedRegisters::No); void Reset(BitSet32 pregs); void Revert(); void Commit(); diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp index b8fada1dcb..3fdc819561 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit.cpp @@ -184,8 +184,8 @@ void JitArm64::Shutdown() void JitArm64::FallBackToInterpreter(UGeckoInstruction inst) { FlushCarry(); - gpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG); - fpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG); + gpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG, IgnoreDiscardedRegisters::Yes); + fpr.Flush(FlushMode::All, ARM64Reg::INVALID_REG, IgnoreDiscardedRegisters::Yes); if (js.op->canEndBlock) { diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.cpp index a82949bf6e..ddede86dfd 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.cpp @@ -241,12 +241,16 @@ void Arm64GPRCache::FlushRegister(size_t index, FlushMode mode, ARM64Reg tmp_reg } } -void Arm64GPRCache::FlushRegisters(BitSet32 regs, FlushMode mode, ARM64Reg tmp_reg) +void Arm64GPRCache::FlushRegisters(BitSet32 regs, FlushMode mode, ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers) { for (auto iter = regs.begin(); iter != regs.end(); ++iter) { const int i = *iter; - ASSERT_MSG(DYNA_REC, m_guest_registers[GUEST_GPR_OFFSET + i].GetType() != RegType::Discarded, + + ASSERT_MSG(DYNA_REC, + ignore_discarded_registers != IgnoreDiscardedRegisters::No || + m_guest_registers[GUEST_GPR_OFFSET + i].GetType() != RegType::Discarded, "Attempted to flush discarded register"); if (i + 1 < int(GUEST_GPR_COUNT) && regs[i + 1]) @@ -280,11 +284,14 @@ void Arm64GPRCache::FlushRegisters(BitSet32 regs, FlushMode mode, ARM64Reg tmp_r } } -void Arm64GPRCache::FlushCRRegisters(BitSet8 regs, FlushMode mode, ARM64Reg tmp_reg) +void Arm64GPRCache::FlushCRRegisters(BitSet8 regs, FlushMode mode, ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers) { for (int i : regs) { - ASSERT_MSG(DYNA_REC, m_guest_registers[GUEST_CR_OFFSET + i].GetType() != RegType::Discarded, + ASSERT_MSG(DYNA_REC, + ignore_discarded_registers != IgnoreDiscardedRegisters::No || + m_guest_registers[GUEST_CR_OFFSET + i].GetType() != RegType::Discarded, "Attempted to flush discarded register"); FlushRegister(GUEST_CR_OFFSET + i, mode, tmp_reg); @@ -310,10 +317,11 @@ void Arm64GPRCache::ResetCRRegisters(BitSet8 regs) } } -void Arm64GPRCache::Flush(FlushMode mode, ARM64Reg tmp_reg) +void Arm64GPRCache::Flush(FlushMode mode, ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers) { - FlushRegisters(BitSet32(0xFFFFFFFF), mode, tmp_reg); - FlushCRRegisters(BitSet8(0xFF), mode, tmp_reg); + FlushRegisters(BitSet32(0xFFFFFFFF), mode, tmp_reg, ignore_discarded_registers); + FlushCRRegisters(BitSet8(0xFF), mode, tmp_reg, ignore_discarded_registers); } ARM64Reg Arm64GPRCache::R(const GuestRegInfo& guest_reg) @@ -490,14 +498,19 @@ Arm64FPRCache::Arm64FPRCache() : Arm64RegCache(GUEST_FPR_COUNT) { } -void Arm64FPRCache::Flush(FlushMode mode, ARM64Reg tmp_reg) +void Arm64FPRCache::Flush(FlushMode mode, ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers) { for (size_t i = 0; i < m_guest_registers.size(); ++i) { const RegType reg_type = m_guest_registers[i].GetType(); - if (reg_type != RegType::NotLoaded && reg_type != RegType::Discarded && - reg_type != RegType::Immediate) + if (reg_type == RegType::Discarded) + { + ASSERT_MSG(DYNA_REC, ignore_discarded_registers != IgnoreDiscardedRegisters::No, + "Attempted to flush discarded register"); + } + else if (reg_type != RegType::NotLoaded && reg_type != RegType::Immediate) { FlushRegister(i, mode, tmp_reg); } diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.h b/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.h index 9ea4e0e3b6..8895375958 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.h +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_RegCache.h @@ -81,6 +81,12 @@ enum class FlushMode : bool MaintainState, }; +enum class IgnoreDiscardedRegisters +{ + No, + Yes, +}; + class OpArg { public: @@ -172,7 +178,8 @@ public: // Flushes the register cache in different ways depending on the mode. // A temporary register must be supplied when flushing GPRs with FlushMode::MaintainState, // but in other cases it can be set to ARM64Reg::INVALID_REG when convenient for the caller. - virtual void Flush(FlushMode mode, Arm64Gen::ARM64Reg tmp_reg) = 0; + virtual void Flush(FlushMode mode, Arm64Gen::ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers) = 0; virtual BitSet32 GetCallerSavedUsed() const = 0; @@ -265,7 +272,9 @@ public: // Flushes the register cache in different ways depending on the mode. // A temporary register must be supplied when flushing GPRs with FlushMode::MaintainState, // but in other cases it can be set to ARM64Reg::INVALID_REG when convenient for the caller. - void Flush(FlushMode mode, Arm64Gen::ARM64Reg tmp_reg) override; + void Flush( + FlushMode mode, Arm64Gen::ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers = IgnoreDiscardedRegisters::No) override; // Returns a guest GPR inside of a host register. // Will dump an immediate to the host register as well. @@ -329,12 +338,12 @@ public: void StoreRegisters(BitSet32 regs, Arm64Gen::ARM64Reg tmp_reg = Arm64Gen::ARM64Reg::INVALID_REG) { - FlushRegisters(regs, FlushMode::All, tmp_reg); + FlushRegisters(regs, FlushMode::All, tmp_reg, IgnoreDiscardedRegisters::No); } void StoreCRRegisters(BitSet8 regs, Arm64Gen::ARM64Reg tmp_reg = Arm64Gen::ARM64Reg::INVALID_REG) { - FlushCRRegisters(regs, FlushMode::All, tmp_reg); + FlushCRRegisters(regs, FlushMode::All, tmp_reg, IgnoreDiscardedRegisters::No); } void DiscardCRRegisters(BitSet8 regs); @@ -369,8 +378,10 @@ private: void SetImmediate(const GuestRegInfo& guest_reg, u32 imm, bool dirty); void BindToRegister(const GuestRegInfo& guest_reg, bool will_read, bool will_write = true); - void FlushRegisters(BitSet32 regs, FlushMode mode, Arm64Gen::ARM64Reg tmp_reg); - void FlushCRRegisters(BitSet8 regs, FlushMode mode, Arm64Gen::ARM64Reg tmp_reg); + void FlushRegisters(BitSet32 regs, FlushMode mode, Arm64Gen::ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers); + void FlushCRRegisters(BitSet8 regs, FlushMode mode, Arm64Gen::ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers); }; class Arm64FPRCache : public Arm64RegCache @@ -380,7 +391,9 @@ public: // Flushes the register cache in different ways depending on the mode. // The temporary register can be set to ARM64Reg::INVALID_REG when convenient for the caller. - void Flush(FlushMode mode, Arm64Gen::ARM64Reg tmp_reg) override; + void Flush( + FlushMode mode, Arm64Gen::ARM64Reg tmp_reg, + IgnoreDiscardedRegisters ignore_discarded_registers = IgnoreDiscardedRegisters::No) override; // Returns a guest register inside of a host register // Will dump an immediate to the host register as well From 0aa8e0f4774414f8b995f41e4070917ba1f4f36d Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Tue, 13 Aug 2024 11:23:41 +0200 Subject: [PATCH 02/40] Remove redundant elaborated type specifiers --- Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp | 4 ++-- Source/Core/Core/HW/WiimoteReal/IOWin.cpp | 4 ++-- Source/Core/Core/IOS/Network/IP/Top.cpp | 2 +- Source/Core/Core/IOS/Network/KD/VFF/VFFUtil.cpp | 2 +- Source/Core/Core/IOS/Network/Socket.cpp | 4 ++-- Source/Core/Core/IOS/USB/Bluetooth/hci.h | 6 +++--- Source/Core/Core/PowerPC/GDBStub.cpp | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp index 86d3f89420..8e9248f830 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp @@ -834,7 +834,7 @@ BbaTcpSocket::ConnectingState BbaTcpSocket::Connected(StackRef* ref) fd_set read_fds; fd_set write_fds; fd_set except_fds; - struct timeval t = {0, 0}; + timeval t = {0, 0}; FD_ZERO(&read_fds); FD_ZERO(&write_fds); FD_ZERO(&except_fds); @@ -965,7 +965,7 @@ sf::Socket::Status BbaUdpSocket::Bind(u16 port, u32 net_ip) // Subscribe to the SSDP multicast group // NB: Other groups aren't supported because of HLE - struct ip_mreq mreq; + ip_mreq mreq; mreq.imr_multiaddr.s_addr = std::bit_cast(Common::IP_ADDR_SSDP); mreq.imr_interface.s_addr = net_ip; if (setsockopt(getHandle(), IPPROTO_IP, IP_ADD_MEMBERSHIP, reinterpret_cast(&mreq), diff --git a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp index f931bb10a3..ffa98292b9 100644 --- a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp +++ b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp @@ -197,8 +197,8 @@ void init_lib() namespace WiimoteReal { -int IOWrite(HANDLE& dev_handle, OVERLAPPED& hid_overlap_write, enum WinWriteMethod& stack, - const u8* buf, size_t len, DWORD* written); +int IOWrite(HANDLE& dev_handle, OVERLAPPED& hid_overlap_write, WinWriteMethod& stack, const u8* buf, + size_t len, DWORD* written); int IORead(HANDLE& dev_handle, OVERLAPPED& hid_overlap_read, u8* buf, int index); template diff --git a/Source/Core/Core/IOS/Network/IP/Top.cpp b/Source/Core/Core/IOS/Network/IP/Top.cpp index 2c078779b9..da350e92ae 100644 --- a/Source/Core/Core/IOS/Network/IP/Top.cpp +++ b/Source/Core/Core/IOS/Network/IP/Top.cpp @@ -623,7 +623,7 @@ IPCReply NetIPTopDevice::HandleInetAToNRequest(const IOCtlRequest& request) auto& memory = system.GetMemory(); const std::string hostname = memory.GetString(request.buffer_in); - struct hostent* remoteHost = gethostbyname(hostname.c_str()); + hostent* remoteHost = gethostbyname(hostname.c_str()); if (remoteHost == nullptr || remoteHost->h_addr_list == nullptr || remoteHost->h_addr_list[0] == nullptr) diff --git a/Source/Core/Core/IOS/Network/KD/VFF/VFFUtil.cpp b/Source/Core/Core/IOS/Network/KD/VFF/VFFUtil.cpp index 4cae4e5e83..738da81f74 100644 --- a/Source/Core/Core/IOS/Network/KD/VFF/VFFUtil.cpp +++ b/Source/Core/Core/IOS/Network/KD/VFF/VFFUtil.cpp @@ -27,7 +27,7 @@ static DRESULT read_vff_header(IOS::HLE::FS::FileHandle* vff, FATFS* fs) { - struct IOS::HLE::NWC24::VFFHeader header; + IOS::HLE::NWC24::VFFHeader header; if (!vff->Read(&header, 1)) { ERROR_LOG_FMT(IOS_WC24, "Failed to read VFF header."); diff --git a/Source/Core/Core/IOS/Network/Socket.cpp b/Source/Core/Core/IOS/Network/Socket.cpp index 59f8e31814..e1f9b9d533 100644 --- a/Source/Core/Core/IOS/Network/Socket.cpp +++ b/Source/Core/Core/IOS/Network/Socket.cpp @@ -770,7 +770,7 @@ WiiSocket::ConnectingState WiiSocket::GetConnectingState() const fd_set read_fds; fd_set write_fds; fd_set except_fds; - struct timeval t = {0, 0}; + timeval t = {0, 0}; FD_ZERO(&read_fds); FD_ZERO(&write_fds); FD_ZERO(&except_fds); @@ -998,7 +998,7 @@ void WiiSockMan::Update() { s32 nfds = 0; fd_set read_fds, write_fds, except_fds; - struct timeval t = {0, 0}; + timeval t = {0, 0}; FD_ZERO(&read_fds); FD_ZERO(&write_fds); FD_ZERO(&except_fds); diff --git a/Source/Core/Core/IOS/USB/Bluetooth/hci.h b/Source/Core/Core/IOS/USB/Bluetooth/hci.h index c11fef908a..c42a42aae7 100644 --- a/Source/Core/Core/IOS/USB/Bluetooth/hci.h +++ b/Source/Core/Core/IOS/USB/Bluetooth/hci.h @@ -2505,7 +2505,7 @@ struct hci_filter uint32_t mask[8]; /* 256 bits */ }; -static __inline void hci_filter_set(uint8_t bit, struct hci_filter* filter) +static __inline void hci_filter_set(uint8_t bit, hci_filter* filter) { uint8_t off = bit - 1; @@ -2513,7 +2513,7 @@ static __inline void hci_filter_set(uint8_t bit, struct hci_filter* filter) filter->mask[off] |= (1 << ((bit - 1) & 0x1f)); } -static __inline void hci_filter_clr(uint8_t bit, struct hci_filter* filter) +static __inline void hci_filter_clr(uint8_t bit, hci_filter* filter) { uint8_t off = bit - 1; @@ -2581,7 +2581,7 @@ struct btreq uint16_t btri_link_policy; /* Link Policy */ uint16_t btri_packet_type; /* Packet Type */ } btri; - struct bt_stats btrs; /* unit stats */ + bt_stats btrs; /* unit stats */ } btru; }; diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index c293977aeb..bbd72b8391 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -258,7 +258,7 @@ static void ReadCommand() static bool IsDataAvailable() { - struct timeval t; + timeval t; fd_set _fds, *fds = &_fds; FD_ZERO(fds); From 19c3b88e5a02992448bda5aba5610182d7a9b287 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Wed, 30 Oct 2024 17:41:09 -0500 Subject: [PATCH 03/40] ControllerInterface/SDL: Disable SDL's Windows.Gaming.Input controller handling. --- Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 0dfcd51281..4285c8784d 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -441,6 +441,8 @@ InputBackend::InputBackend(ControllerInterface* controller_interface) SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE, "1"); // We want buttons to come in as positions, not labels SDL_SetHint(SDL_HINT_GAMECONTROLLER_USE_BUTTON_LABELS, "0"); + // We have our own WGI backend. Enabling SDL's WGI handling creates even more redundant devices. + SDL_SetHint(SDL_HINT_JOYSTICK_WGI, "0"); m_hotplug_thread = std::thread([this] { Common::ScopeGuard quit_guard([] { From a307d9d9b8ba1612839c3507317440f00548d849 Mon Sep 17 00:00:00 2001 From: Sintendo <3380580+Sintendo@users.noreply.github.com> Date: Sat, 2 Nov 2024 23:15:22 +0100 Subject: [PATCH 04/40] JitArm64_LoadStore: Optimize zero stores in stX The value being stored must be loaded into a register. In the case of an immediate value, this means it must be materialized. The value is eventually byteswapped before performing the store. This can be simplified for the value 0 for two reasons: - ARM64 has a dedicated zero register, so does not need to be materialized. - Byteswapping zero is still zero, so we can skip this step. We could skip byteswapping for other values by immediately materializing the byteswapped value in a register, but the benefits are not so clear there (if the value needs to be materialized anyway, it is better to do it up front). Before: 0x5280001b mov w27, #0x0 ; =0 0xb9404fba ldr w26, [x29, #0x4c] 0x12881862 mov w2, #-0x40c4 ; =-16580 0x0b020342 add w2, w26, w2 0x5ac00b61 rev w1, w27 0xb8226b81 str w1, [x28, x2] After: 0xb9404fbb ldr w27, [x29, #0x4c] 0x12881862 mov w2, #-0x40c4 ; =-16580 0x0b020362 add w2, w27, w2 0xb8226b9f str wzr, [x28, x2] --- Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp | 3 ++- Source/Core/Core/PowerPC/JitArm64/Jit_Util.cpp | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp index 8e5cb47940..ebcb8142b7 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStore.cpp @@ -181,7 +181,8 @@ void JitArm64::SafeStoreFromReg(s32 dest, u32 value, s32 regOffset, u32 flags, s if (!jo.fastmem) gpr.Lock(ARM64Reg::W0); - ARM64Reg RS = gpr.R(value); + // Don't materialize zero. + ARM64Reg RS = gpr.IsImm(value, 0) ? ARM64Reg::WZR : gpr.R(value); ARM64Reg reg_dest = ARM64Reg::INVALID_REG; ARM64Reg reg_off = ARM64Reg::INVALID_REG; diff --git a/Source/Core/Core/PowerPC/JitArm64/Jit_Util.cpp b/Source/Core/Core/PowerPC/JitArm64/Jit_Util.cpp index 4beb74ff1b..19274d2793 100644 --- a/Source/Core/Core/PowerPC/JitArm64/Jit_Util.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/Jit_Util.cpp @@ -257,6 +257,12 @@ void ByteswapAfterLoad(ARM64XEmitter* emit, ARM64FloatEmitter* float_emit, ARM64 ARM64Reg ByteswapBeforeStore(ARM64XEmitter* emit, ARM64FloatEmitter* float_emit, ARM64Reg tmp_reg, ARM64Reg src_reg, u32 flags, bool want_reversed) { + // Byteswapping zero is still zero. + // We'd typically expect a writable register to be passed in, but recognize + // WZR for optimization purposes. + if ((flags & BackPatchInfo::FLAG_FLOAT) == 0 && src_reg == ARM64Reg::WZR) + return ARM64Reg::WZR; + ARM64Reg dst_reg = src_reg; if (want_reversed == !(flags & BackPatchInfo::FLAG_REVERSE)) From 6dbffd1fee448d3c0d890c1e03edfe2bf9334cd2 Mon Sep 17 00:00:00 2001 From: Joshua de Reeper Date: Mon, 4 Nov 2024 13:07:10 +0000 Subject: [PATCH 05/40] IOS/USB: Reconnect HIDv4 Devices after shutdown --- Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp | 4 +++- Source/Core/Core/IOS/USB/USB_HID/HIDv4.h | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp index b60339a8f1..0b464b13d6 100644 --- a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp +++ b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp @@ -96,10 +96,11 @@ std::optional USB_HIDv4::GetDeviceChange(const IOCtlRequest& request) m_devicechange_hook_request = std::make_unique(GetSystem(), request.address); // If there are pending changes, the reply is sent immediately (instead of on device // insertion/removal). - if (m_has_pending_changes) + if (m_has_pending_changes || m_is_shut_down) { TriggerDeviceChangeReply(); m_has_pending_changes = false; + m_is_shut_down = false; } return std::nullopt; } @@ -114,6 +115,7 @@ IPCReply USB_HIDv4::Shutdown(const IOCtlRequest& request) memory.Write_U32(0xffffffff, m_devicechange_hook_request->buffer_out); GetEmulationKernel().EnqueueIPCReply(*m_devicechange_hook_request, -1); m_devicechange_hook_request.reset(); + m_is_shut_down = true; } return IPCReply(IPC_SUCCESS); } diff --git a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h index 44c8213ae0..33fc31f461 100644 --- a/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h +++ b/Source/Core/Core/IOS/USB/USB_HID/HIDv4.h @@ -45,6 +45,7 @@ private: static constexpr u8 HID_CLASS = 0x03; bool m_has_pending_changes = true; + bool m_is_shut_down = false; std::mutex m_devicechange_hook_address_mutex; std::unique_ptr m_devicechange_hook_request; From 0488ade1dc51ad27c2238af306b0ef84dadb85bd Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Mon, 4 Nov 2024 20:46:48 +0000 Subject: [PATCH 06/40] DSPHLE/AXWii: fix Elebits sound Regressed in 37ebb13ece712d6f129bbceb73d9ec99028beaef. --- Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp index 356136bb52..04dee941ca 100644 --- a/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp +++ b/Source/Core/Core/HW/DSPHLE/UCodes/AXWii.cpp @@ -418,7 +418,7 @@ void AXWiiUCode::WritePB(Memory::MemoryManager& memory, u32 addr, const AXPBWii& case 0xadbc06bd: memory.CopyToEmuSwapped(addr, (const u16*)src, updates_begin); memory.CopyToEmuSwapped(addr + updates_begin, (const u16*)(src + updates_end), - sizeof(PBUpdatesWii)); + gap_begin - updates_end); memory.CopyToEmuSwapped(addr + gap_begin, (const u16*)(src + gap_end), sizeof(pb) - gap_end); break; From 83ed817ad2905fa318a42aa6a1e743fc9b40729c Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 4 Nov 2024 19:09:52 -0600 Subject: [PATCH 07/40] ControllerInterface/SDL: Add Battery Input. --- .../ControllerInterface/SDL/SDL.cpp | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 324619c927..d7b1bee80e 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -56,6 +56,38 @@ bool IsTriggerAxis(int index) return index >= 4; } +ControlState GetBatteryValueFromSDLPowerLevel(SDL_JoystickPowerLevel sdl_power_level) +{ + // Values come from comments in SDL_joystick.h + // A proper percentage will be exposed in SDL3. + ControlState result; + switch (sdl_power_level) + { + case SDL_JOYSTICK_POWER_EMPTY: + result = 0.025; + break; + case SDL_JOYSTICK_POWER_LOW: + result = 0.125; + break; + case SDL_JOYSTICK_POWER_MEDIUM: + result = 0.45; + break; + case SDL_JOYSTICK_POWER_FULL: + result = 0.85; + break; + case SDL_JOYSTICK_POWER_WIRED: + case SDL_JOYSTICK_POWER_MAX: + result = 1.0; + break; + case SDL_JOYSTICK_POWER_UNKNOWN: + default: + result = 0.0; + break; + } + + return result * ciface::BATTERY_INPUT_MAX_VALUE; +} + } // namespace namespace ciface::SDL @@ -142,6 +174,18 @@ private: const u8 m_direction; }; + class BatteryInput final : public Input + { + public: + explicit BatteryInput(const ControlState* battery_value) : m_battery_value(*battery_value) {} + std::string GetName() const override { return "Battery"; } + ControlState GetState() const override { return m_battery_value; } + bool IsDetectable() const override { return false; } + + private: + const ControlState& m_battery_value; + }; + // Rumble template class GenericMotor : public Output @@ -269,12 +313,18 @@ public: std::string GetName() const override; std::string GetSource() const override; int GetSDLInstanceID() const; + Core::DeviceRemoval UpdateInput() override + { + m_battery_value = GetBatteryValueFromSDLPowerLevel(SDL_JoystickCurrentPowerLevel(m_joystick)); + return Core::DeviceRemoval::Keep; + } private: SDL_GameController* const m_gamecontroller; std::string m_name; SDL_Joystick* const m_joystick; SDL_Haptic* m_haptic = nullptr; + ControlState m_battery_value; }; class InputBackend final : public ciface::InputBackend @@ -767,6 +817,17 @@ GameController::GameController(SDL_GameController* const gamecontroller, } } } + + // Needed to make the below power level not "UNKNOWN". + SDL_JoystickUpdate(); + + // Battery + if (SDL_JoystickPowerLevel const power_level = SDL_JoystickCurrentPowerLevel(m_joystick); + power_level != SDL_JOYSTICK_POWER_UNKNOWN) + { + m_battery_value = GetBatteryValueFromSDLPowerLevel(power_level); + AddInput(new BatteryInput{&m_battery_value}); + } } GameController::~GameController() From edb947df4f2ff940beb353f77ffe87577a1d8037 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Fri, 8 Nov 2024 15:38:05 -0600 Subject: [PATCH 08/40] WiimoteEmu: Remove disabled and no-longer-compiling wav dumping code. --- Source/Core/Core/HW/WiimoteEmu/Speaker.cpp | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/Source/Core/Core/HW/WiimoteEmu/Speaker.cpp b/Source/Core/Core/HW/WiimoteEmu/Speaker.cpp index 58295c796d..23cba6bfd7 100644 --- a/Source/Core/Core/HW/WiimoteEmu/Speaker.cpp +++ b/Source/Core/Core/HW/WiimoteEmu/Speaker.cpp @@ -8,21 +8,12 @@ #include "AudioCommon/AudioCommon.h" #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" -#include "Common/MathUtil.h" #include "Core/ConfigManager.h" #include "Core/HW/WiimoteEmu/WiimoteEmu.h" #include "Core/System.h" #include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h" #include "InputCommon/ControllerEmu/Setting/NumericSetting.h" -//#define WIIMOTE_SPEAKER_DUMP -#ifdef WIIMOTE_SPEAKER_DUMP -#include -#include -#include "AudioCommon/WaveFile.h" -#include "Common/FileUtil.h" -#endif - namespace WiimoteEmu { // Yamaha ADPCM decoder code based on The ffmpeg Project (Copyright (s) 2001-2003) @@ -60,17 +51,6 @@ static s16 adpcm_yamaha_expand_nibble(ADPCMState& s, u8 nibble) return s.predictor; } -#ifdef WIIMOTE_SPEAKER_DUMP -std::ofstream ofile; -WaveFileWriter wav; - -void stopdamnwav() -{ - wav.Stop(); - ofile.close(); -} -#endif - void SpeakerLogic::SpeakerData(const u8* data, int length, float speaker_pan) { // TODO: should we still process samples for the decoder state? @@ -151,28 +131,6 @@ void SpeakerLogic::SpeakerData(const u8* data, int length, float speaker_pan) const unsigned int sample_rate = sample_rate_dividend / reg_data.sample_rate; sound_stream->GetMixer()->PushWiimoteSpeakerSamples( samples.get(), sample_length, Mixer::FIXED_SAMPLE_RATE_DIVIDEND / (sample_rate * 2)); - -#ifdef WIIMOTE_SPEAKER_DUMP - static int num = 0; - - if (num == 0) - { - File::Delete("rmtdump.wav"); - File::Delete("rmtdump.bin"); - atexit(stopdamnwav); - File::OpenFStream(ofile, "rmtdump.bin", ofile.binary | ofile.out); - wav.Start("rmtdump.wav", 6000); - } - wav.AddMonoSamples(samples.get(), length * 2); - if (ofile.good()) - { - for (int i = 0; i < length; i++) - { - ofile << data[i]; - } - } - num++; -#endif } void SpeakerLogic::Reset() From fbce7374155cdd2df8a8bed2298f5c104ad2b946 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 9 Nov 2024 02:12:54 +0000 Subject: [PATCH 09/40] ProcessorInterface: sync GPU just before PI_FIFO_RESET GXAbortFrame() is problematic for Dolphin because it first writes PI_FIFO_RESET (for which we discard our internal fifo), then disables CP reads (for which we execute pending commands in the GP fifo in emulated memory). I don't know whether there is a race condition on hardware, but there is one for us. Avoid this by also doing a GPU sync here. --- Source/Core/Core/HW/ProcessorInterface.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/HW/ProcessorInterface.cpp b/Source/Core/Core/HW/ProcessorInterface.cpp index fc26896a54..3eddfd5ed5 100644 --- a/Source/Core/Core/HW/ProcessorInterface.cpp +++ b/Source/Core/Core/HW/ProcessorInterface.cpp @@ -98,6 +98,10 @@ void ProcessorInterfaceManager::RegisterMMIO(MMIO::Mapping* mmio, u32 base) { system.GetGPFifo().ResetGatherPipe(); + // Assume that all bytes that made it into the GPU fifo did in fact execute + // before this MMIO write takes effect. + system.GetFifo().SyncGPUForRegisterAccess(); + // Call Fifo::ResetVideoBuffer() from the video thread. Since that function // resets various pointers used by the video thread, we can't call it directly // from the CPU thread, so queue a task to do it instead. In single-core mode, From 60a0efc69c80c1d02e73bbe3ab914123ce13ff1c Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 8 Nov 2024 23:07:06 -0500 Subject: [PATCH 10/40] Add Approved Patches - Eternal Darkness, Monster Hunter Tri The primary focus of this PR is the Eternal Darkness patch which fixes hanging at startup, which prior to this fix makes Eternal Darkness unplayable in hardcore. The MHTri patch was added as well simply because it could be. --- Data/Sys/ApprovedInis.json | 20 ++++++++++++++++++++ Data/Sys/GameSettings/GEDE01.ini | 3 +++ Data/Sys/GameSettings/GEDJ01.ini | 3 +++ Data/Sys/GameSettings/GEDP01.ini | 3 +++ Data/Sys/GameSettings/RMHE08.ini | 3 +++ Data/Sys/GameSettings/RMHJ08.ini | 3 +++ Data/Sys/GameSettings/RMHP08.ini | 3 +++ Source/Core/Core/AchievementManager.h | 4 ++-- 8 files changed, 40 insertions(+), 2 deletions(-) diff --git a/Data/Sys/ApprovedInis.json b/Data/Sys/ApprovedInis.json index 3cbf34d556..2132bd62fe 100644 --- a/Data/Sys/ApprovedInis.json +++ b/Data/Sys/ApprovedInis.json @@ -44,6 +44,18 @@ "title": "Dead to Rights", "E23D98B2CE185C3993A40F2495D37E41B971BF91": "Fix audio issues" }, + "GEDE01": { + "title": "Eternal Darkness", + "21068C3CE905FB0CFFAA7408A93154AF8A5295A2": "Fix startup hang" + }, + "GEDJ01": { + "title": "Eternal Darkness", + "7061F3CF11BF64D3BA7F32CCF2BAC42FF3614AB6": "Fix startup hang" + }, + "GEDP01": { + "title": "Eternal Darkness", + "6F1B00517CBA30BEB738EAA90E71221378CD570D": "Fix startup hang" + }, "GEME7F": { "title": "Egg Mania: Eggstreme Madness", "CB04E00918C9C0F161715D21D046ED6620F7ADEF": "Force Progressive Scan" @@ -236,6 +248,14 @@ "title": "Ten Pin Alley 2", "793642AC6862C2F3412035A9E3D7172CC4A1D5C7": "Fix crash on main menu" }, + "RMHE08": { + "title": "Monster Hunter Tri", + "CCF233DA57B3E75221870DE502955114B0D4E7FA": "Bloom OFF" + }, + "RMHJ08": { + "title": "Monster Hunter Tri", + "29D3625B7ED577587E56AA07CB0EB8C47C97E823": "Bloom OFF" + }, "RMHP08": { "title": "Monster Hunter Tri", "1720C1173D4698167080DBFC4232F21757C4DA08": "Bloom OFF" diff --git a/Data/Sys/GameSettings/GEDE01.ini b/Data/Sys/GameSettings/GEDE01.ini index ea5e41e2b5..630437c9e0 100644 --- a/Data/Sys/GameSettings/GEDE01.ini +++ b/Data/Sys/GameSettings/GEDE01.ini @@ -6,3 +6,6 @@ $Fix startup hang [OnFrame_Enabled] $Fix startup hang + +[Patches_RetroAchievements_Verified] +$Fix startup hang diff --git a/Data/Sys/GameSettings/GEDJ01.ini b/Data/Sys/GameSettings/GEDJ01.ini index bcbe2fd03a..db2508e857 100644 --- a/Data/Sys/GameSettings/GEDJ01.ini +++ b/Data/Sys/GameSettings/GEDJ01.ini @@ -6,3 +6,6 @@ $Fix startup hang [OnFrame_Enabled] $Fix startup hang + +[Patches_RetroAchievements_Verified] +$Fix startup hang diff --git a/Data/Sys/GameSettings/GEDP01.ini b/Data/Sys/GameSettings/GEDP01.ini index a56b27369e..346e61b205 100644 --- a/Data/Sys/GameSettings/GEDP01.ini +++ b/Data/Sys/GameSettings/GEDP01.ini @@ -6,3 +6,6 @@ $Fix startup hang [OnFrame_Enabled] $Fix startup hang + +[Patches_RetroAchievements_Verified] +$Fix startup hang diff --git a/Data/Sys/GameSettings/RMHE08.ini b/Data/Sys/GameSettings/RMHE08.ini index 188822965e..35d7f4b724 100644 --- a/Data/Sys/GameSettings/RMHE08.ini +++ b/Data/Sys/GameSettings/RMHE08.ini @@ -8,3 +8,6 @@ $Bloom OFF [ActionReplay] # Add action replay cheats here. + +[Patches_RetroAchievements_Verified] +$Bloom OFF diff --git a/Data/Sys/GameSettings/RMHJ08.ini b/Data/Sys/GameSettings/RMHJ08.ini index f8636f24ce..695b09c5f9 100644 --- a/Data/Sys/GameSettings/RMHJ08.ini +++ b/Data/Sys/GameSettings/RMHJ08.ini @@ -12,3 +12,6 @@ SafeTextureCacheColorSamples = 0 [ActionReplay] # Add action replay cheats here. + +[Patches_RetroAchievements_Verified] +$Bloom OFF diff --git a/Data/Sys/GameSettings/RMHP08.ini b/Data/Sys/GameSettings/RMHP08.ini index 89f99f077b..92db0fa7a6 100644 --- a/Data/Sys/GameSettings/RMHP08.ini +++ b/Data/Sys/GameSettings/RMHP08.ini @@ -11,3 +11,6 @@ $Bloom OFF [ActionReplay] # Add action replay cheats here. + +[Patches_RetroAchievements_Verified] +$Bloom OFF diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 553c789f4f..174b4abce1 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -70,8 +70,8 @@ public: static constexpr std::string_view BLUE = "#0B71C1"; static constexpr std::string_view APPROVED_LIST_FILENAME = "ApprovedInis.json"; static const inline Common::SHA1::Digest APPROVED_LIST_HASH = { - 0x50, 0x2F, 0x58, 0x02, 0x94, 0x60, 0x1B, 0x9F, 0x92, 0xC7, - 0x04, 0x17, 0x50, 0x2E, 0xF3, 0x09, 0x8C, 0x8C, 0xD6, 0xC0}; + 0xCC, 0xB4, 0x05, 0x2D, 0x2B, 0xEE, 0xF4, 0x06, 0x4A, 0xC9, + 0x57, 0x5D, 0xA9, 0xE9, 0xDE, 0xB7, 0x98, 0xF8, 0x1A, 0x6D}; struct LeaderboardEntry { From fe96bf4108df8d4cf3ae363998679f73da64a0f1 Mon Sep 17 00:00:00 2001 From: Carles Pastor Date: Thu, 31 Oct 2024 21:04:55 +0100 Subject: [PATCH 11/40] Flatpak: Upgrade kde runtime to 6.8 this version bundles SDL2-2.30.6, the temporary measure of building the vendored version from exports is no longer necessary. --- Flatpak/SDL2/SDL2.json | 22 ---------------------- Flatpak/org.DolphinEmu.dolphin-emu.yml | 5 +---- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 Flatpak/SDL2/SDL2.json diff --git a/Flatpak/SDL2/SDL2.json b/Flatpak/SDL2/SDL2.json deleted file mode 100644 index 1a8be19260..0000000000 --- a/Flatpak/SDL2/SDL2.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "SDL2", - "buildsystem": "autotools", - "config-opts": ["--disable-static"], - "sources": [ - { - "type": "dir", - "path": "../../Externals/SDL/SDL" - } - ], - "cleanup": [ "/bin/sdl2-config", - "/include", - "/lib/libSDL2.la", - "/lib/libSDL2main.a", - "/lib/libSDL2main.la", - "/lib/libSDL2_test.a", - "/lib/libSDL2_test.la", - "/lib/cmake", - "/share/aclocal", - "/lib/pkgconfig"] -} - diff --git a/Flatpak/org.DolphinEmu.dolphin-emu.yml b/Flatpak/org.DolphinEmu.dolphin-emu.yml index 1a059de6e0..7afef2504d 100644 --- a/Flatpak/org.DolphinEmu.dolphin-emu.yml +++ b/Flatpak/org.DolphinEmu.dolphin-emu.yml @@ -1,6 +1,6 @@ app-id: org.DolphinEmu.dolphin-emu runtime: org.kde.Platform -runtime-version: '6.7' +runtime-version: '6.8' sdk: org.kde.Sdk command: dolphin-emu-wrapper rename-desktop-file: dolphin-emu.desktop @@ -47,9 +47,6 @@ modules: url: https://github.com/Unrud/xdg-screensaver-shim/archive/0.0.2.tar.gz sha256: 0ed2a69fe6ee6cbffd2fe16f85116db737f17fb1e79bfb812d893cf15c728399 - # build the vendored SDL2 from Externals until the runtime gets 2.30.6 - - SDL2/SDL2.json - - name: dolphin-emu buildsystem: cmake-ninja config-opts: From d1ef4d5cc17efed52520b37072c4988caa70f171 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 10 Nov 2024 12:24:25 +0100 Subject: [PATCH 12/40] Translation resources sync with Transifex --- Languages/po/ar.po | 102 +++++++++---------- Languages/po/ca.po | 104 ++++++++++---------- Languages/po/cs.po | 102 +++++++++---------- Languages/po/da.po | 102 +++++++++---------- Languages/po/de.po | 102 +++++++++---------- Languages/po/dolphin-emu.pot | 102 +++++++++---------- Languages/po/el.po | 102 +++++++++---------- Languages/po/en.po | 102 +++++++++---------- Languages/po/es.po | 123 ++++++++++++----------- Languages/po/fa.po | 102 +++++++++---------- Languages/po/fi.po | 109 ++++++++++----------- Languages/po/fr.po | 137 ++++++++++++-------------- Languages/po/hr.po | 102 +++++++++---------- Languages/po/hu.po | 185 ++++++++++++++++++----------------- Languages/po/it.po | 121 +++++++++++------------ Languages/po/ja.po | 108 ++++++++++---------- Languages/po/ko.po | 108 ++++++++++---------- Languages/po/ms.po | 102 +++++++++---------- Languages/po/nb.po | 102 +++++++++---------- Languages/po/nl.po | 109 ++++++++++----------- Languages/po/pl.po | 102 +++++++++---------- Languages/po/pt.po | 102 +++++++++---------- Languages/po/pt_BR.po | 120 +++++++++++------------ Languages/po/ro.po | 102 +++++++++---------- Languages/po/ru.po | 109 ++++++++++----------- Languages/po/sr.po | 102 +++++++++---------- Languages/po/sv.po | 110 ++++++++++----------- Languages/po/tr.po | 102 +++++++++---------- Languages/po/zh_CN.po | 117 +++++++++++----------- Languages/po/zh_TW.po | 102 +++++++++---------- 30 files changed, 1621 insertions(+), 1673 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index c8f05e2fc9..534b71aa21 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1106,8 +1106,8 @@ msgstr "" msgid "> Greater-than" msgstr "> أكثر-من" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "جلسة لعب الشبكة جارية بالفعل!" @@ -1144,7 +1144,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "لا يمكن تحميل حالة الحفظ دون تحديد لعبة لتشغيلها" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1336,7 +1336,7 @@ msgstr "قائمة انتظار مؤشر الترابط النشط" msgid "Active threads" msgstr "المواضيع النشطة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "محول" @@ -1588,8 +1588,8 @@ msgstr "GC/Wii جميع ملفات" msgid "All Hexadecimal" msgstr "كل سداسي عشري" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "جميع حالات الحفظ (*.sav *.s##);; كل الملفات (*)" @@ -1617,7 +1617,7 @@ msgstr "حفظ جميع اللاعبين متزامنة." msgid "Allow Mismatched Region Settings" msgstr "السماح بإعدادات المنطقة الغير متطابقة" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "السماح بالإبلاغ عن إحصائيات الاستخدام" @@ -1753,7 +1753,7 @@ msgstr "هل أنت واثق؟" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "نسبة الابعاد" @@ -2114,11 +2114,11 @@ msgstr "" msgid "Boot to Pause" msgstr "التمهيد لإيقاف مؤقت" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup file (*.bin);;All Files (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys file (*.bin);;All Files (*)" @@ -2462,8 +2462,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} لا يمكن العثور على ريموت وي من خلال مقبض الاتصال" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "لا يمكن بدء جلسة اللعب عبر الشبكة بينما لا تزال اللعبة قيد التشغيل! " @@ -2965,8 +2965,8 @@ msgstr "إعداد الإخراج" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "تأكيد " @@ -3530,11 +3530,11 @@ msgstr "(Stretch) مخصص" msgid "Custom Address Space" msgstr "مساحة العنوان المخصصة" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "تخصيص نسبة ارتفاع الابعاد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "تخصيص نسبة عرض الابعاد" @@ -4038,11 +4038,11 @@ msgstr "مسافة" msgid "Distance of travel from neutral position." msgstr "Distance of travel from neutral position." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "هل تسمح لشركة دولفين بالإبلاغ عن معلومات لمطوري دولفين؟" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "هل تريد إضافة \"%1\" إلى قائمة مسارات الألعاب؟" @@ -4056,7 +4056,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "هل تريد إيقاف المحاكاة الحالية؟" @@ -4091,8 +4091,8 @@ msgstr "CSV توقيع دولفين ملف" msgid "Dolphin Signature File" msgstr "دولفين توقيع الملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Movies (*.dtm)" @@ -4929,12 +4929,12 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5419,7 +5419,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "فشل في التهيئة الأساسية" @@ -5430,7 +5430,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "فشل في تهيئة فئات العارض" @@ -5443,7 +5443,7 @@ msgstr "%1 :فشل تثبيت الحزمة" msgid "Failed to install this title to the NAND." msgstr "NAND فشل تثبيت هذا العنوان على" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5496,12 +5496,12 @@ msgstr "فشل في تعديل Skylander" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' فشل في الفتح" @@ -5542,7 +5542,7 @@ msgstr "" msgid "Failed to open file." msgstr "فشل فتح ملف" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "فشل في فتح الخادم" @@ -6933,7 +6933,7 @@ msgstr "" msgid "Identity Generation" msgstr "إنشاء هوية " -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7057,11 +7057,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "استيراد حفظ وي" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr " NAND استيراد النسخ الاحتياطي" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7546,8 +7546,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8267,7 +8267,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9644,7 +9644,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "مشكلة" @@ -10343,7 +10343,7 @@ msgstr "حفظ الحالة الأقدم" msgid "Save Preset" msgstr "حفظ الإعداد المسبق" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "حفظ ملف التسجيل باسم" @@ -10587,7 +10587,7 @@ msgstr "حدد قرص جيم بوي أدفانس" msgid "Select GBA Saves Path" msgstr "حدد مسار الحفظ جيم بوي أدفانس" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10599,7 +10599,7 @@ msgstr "حدد الحالة الأخيرة" msgid "Select Load Path" msgstr "حدد مسار التحميل" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10701,8 +10701,8 @@ msgstr "اختر الملف" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "حدد ملف" @@ -10730,7 +10730,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "RSO حدد عنوان وحدة" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "حدد ملف التسجيل للتشغيل" @@ -10762,13 +10762,13 @@ msgstr "مؤشر ترابط محدد" msgid "Selected thread context" msgstr "سياق الموضوع المحدد" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10833,7 +10833,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -14225,7 +14225,7 @@ msgstr "مراجعة خاطئة" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 4d9521a3ef..91f9458c3b 100644 --- a/Languages/po/ca.po +++ b/Languages/po/ca.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Puniasterus , 2013-2016,2021-2024\n" "Language-Team: Catalan (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1075,7 +1075,7 @@ msgstr " " #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:268 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Desactivat en mode hardcore." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." @@ -1115,8 +1115,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Més gran que" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Ja hi ha una sessió NetPlay en curs!" @@ -1144,7 +1144,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1320,7 +1320,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adaptador" @@ -1559,8 +1559,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1588,7 +1588,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1724,7 +1724,7 @@ msgstr "Estàs segur?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Relació d'aspecte" @@ -2079,11 +2079,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2427,8 +2427,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2917,8 +2917,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" @@ -3450,11 +3450,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3952,11 +3952,11 @@ msgstr "Distància" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3970,7 +3970,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Voleu aturar l'emulació actual?" @@ -4005,8 +4005,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin Pel·lícules TAS (*.dtm)" @@ -4827,12 +4827,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5307,7 +5307,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5318,7 +5318,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5331,7 +5331,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5382,12 +5382,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5426,7 +5426,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6776,7 +6776,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6892,11 +6892,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7380,8 +7380,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8095,7 +8095,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9449,7 +9449,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pregunta" @@ -10145,7 +10145,7 @@ msgstr "Desar l'Estat Més Antic" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10384,7 +10384,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10396,7 +10396,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10498,8 +10498,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10527,7 +10527,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10559,13 +10559,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10630,7 +10630,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13909,7 +13909,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/cs.po b/Languages/po/cs.po index 9899700634..1afeac16a2 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1085,8 +1085,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1290,7 +1290,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1529,8 +1529,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2397,8 +2397,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2887,8 +2887,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3420,11 +3420,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3922,11 +3922,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3940,7 +3940,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Chcete současnou emulaci zastavit?" @@ -3975,8 +3975,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Doplhin Filmy TAS (*.dtm)" @@ -4799,12 +4799,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5278,7 +5278,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5289,7 +5289,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5302,7 +5302,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5353,12 +5353,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5397,7 +5397,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6747,7 +6747,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6863,11 +6863,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8065,7 +8065,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9420,7 +9420,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Otázka" @@ -10116,7 +10116,7 @@ msgstr "Načíst nejstarší stav" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10355,7 +10355,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10367,7 +10367,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10469,8 +10469,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10498,7 +10498,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10530,13 +10530,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10601,7 +10601,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13883,7 +13883,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/da.po b/Languages/po/da.po index c2135bae62..54391c1e0c 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1104,8 +1104,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1133,7 +1133,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1323,7 +1323,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1562,8 +1562,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle gemte tilstande (*.sav *.s##);; All Files (*)" @@ -1591,7 +1591,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1727,7 +1727,7 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2084,11 +2084,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup-fil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2432,8 +2432,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2922,8 +2922,8 @@ msgstr "Konfigurer output" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekræft" @@ -3459,11 +3459,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3961,11 +3961,11 @@ msgstr "Afstand" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3979,7 +3979,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Ønsker du at stoppe den igangværende emulation?" @@ -4014,8 +4014,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-film (*.dtm)" @@ -4841,12 +4841,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5321,7 +5321,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5332,7 +5332,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5345,7 +5345,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5396,12 +5396,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5440,7 +5440,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6790,7 +6790,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6914,11 +6914,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Importer Wii-save..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importerer NAND-backup" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7401,8 +7401,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8116,7 +8116,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9474,7 +9474,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Spørgsmål" @@ -10170,7 +10170,7 @@ msgstr "Gem ældste tilstand" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10409,7 +10409,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10421,7 +10421,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10523,8 +10523,8 @@ msgstr "Vælg en mappe" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Vælg en fil" @@ -10552,7 +10552,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10584,13 +10584,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10655,7 +10655,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13952,7 +13952,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/de.po b/Languages/po/de.po index a6cb3fb0ca..79ab88dcd4 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1132,8 +1132,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Größer als" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Eine NetPlay-Sitzung läuft bereits!" @@ -1169,7 +1169,7 @@ msgstr "" "Ein Spielstand kann nicht geladen werden, wenn kein zu startendes Spiel " "angegeben wurde." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1379,7 +1379,7 @@ msgstr "Aktive Thread-Warteschlange" msgid "Active threads" msgstr "Aktive Threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Grafikkarte" @@ -1639,8 +1639,8 @@ msgstr "Alle GC/Wii-Dateien" msgid "All Hexadecimal" msgstr "Alle Hexadezimalen" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Speicherstände (*.sav *.s##);; Alle Dateien (*)" @@ -1668,7 +1668,7 @@ msgstr "Alle Spielstände der Spieler synchronisiert." msgid "Allow Mismatched Region Settings" msgstr "Nicht übereinstimmende Regionseinstellungen zulassen" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Berichterstattung für Nutzungsdaten erlauben" @@ -1809,7 +1809,7 @@ msgstr "Bist du dir sicher?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Seitenverhältnis" @@ -2177,11 +2177,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Pausieren nach Boot" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-Sicherungsdatei (*.bin);;Alle Dateien (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii Schlüsseldatei (*.bin);;Alle Dateien (*)" @@ -2536,8 +2536,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kann Wiimote bei Verbindungs-Handle {0:02x} nicht finden" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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!" @@ -3043,8 +3043,8 @@ msgstr "Ausgabe konfigurieren" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bestätigen" @@ -3631,11 +3631,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -4161,11 +4161,11 @@ msgstr "Distanz" msgid "Distance of travel from neutral position." msgstr "Weite der Bewegung von der neutralen Position." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Dolphin autorisieren, Informationen an das Entwicklerteam zu senden?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Möchtest du \"%1\" zur Liste der Spielverzeichnisse hinzufügen?" @@ -4179,7 +4179,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Laufende Emulation stoppen?" @@ -4214,8 +4214,8 @@ msgstr "Dolphin-Signatur-CSV-Datei" msgid "Dolphin Signature File" msgstr "Dolphin-Signaturdatei" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filme (*.dtm)" @@ -5064,12 +5064,12 @@ msgstr "Geben Sie die RSO-Moduladresse ein:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5568,7 +5568,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:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Konnte Kern nicht initiieren" @@ -5579,7 +5579,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Renderer-Klassen konnten nicht initialisiert werden" @@ -5592,7 +5592,7 @@ msgstr "Konnte Paket: %1 nicht installieren" msgid "Failed to install this title to the NAND." msgstr "Konnte diesen Titel nicht in den NAND installieren." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5647,12 +5647,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Konnte '&1' nicht öffnen" @@ -5695,7 +5695,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Konnte Server nicht öffnen" @@ -7132,7 +7132,7 @@ msgstr "" msgid "Identity Generation" msgstr "Indentitätserzeugung" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7268,11 +7268,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Wii-Spielstand importieren..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "NAND-Sicherung wird importiert" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7765,8 +7765,8 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8495,7 +8495,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9883,7 +9883,7 @@ msgstr "Qualität des DPLII-Decoders. Audiolatenz steigt mit Qualität." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Frage" @@ -10590,7 +10590,7 @@ msgstr "Ältesten Spielstand überschreiben" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10835,7 +10835,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10847,7 +10847,7 @@ msgstr "Letzten Spielstand auswählen" msgid "Select Load Path" msgstr "Ladepfad auswählen" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10949,8 +10949,8 @@ msgstr "Verzeichnis auswählen" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Datei auswählen" @@ -10978,7 +10978,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "Wählen Sie die RSO-Moduladresse aus:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -11010,13 +11010,13 @@ msgstr "Ausgewählter Thread-Aufrufstapel" msgid "Selected thread context" msgstr "Ausgewählter Thread-Kontext" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -11091,7 +11091,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -14638,7 +14638,7 @@ msgstr "Falsche Revision" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index e1f9836b2e..a767104065 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1082,8 +1082,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1111,7 +1111,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1287,7 +1287,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1526,8 +1526,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1555,7 +1555,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1691,7 +1691,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2046,11 +2046,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2394,8 +2394,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2884,8 +2884,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3417,11 +3417,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3919,11 +3919,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3937,7 +3937,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3972,8 +3972,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -4792,12 +4792,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5270,7 +5270,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5281,7 +5281,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5294,7 +5294,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5345,12 +5345,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5389,7 +5389,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6739,7 +6739,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6855,11 +6855,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7342,8 +7342,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8054,7 +8054,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9408,7 +9408,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "" @@ -10104,7 +10104,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10343,7 +10343,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10355,7 +10355,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10457,8 +10457,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10486,7 +10486,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10518,13 +10518,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10589,7 +10589,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13864,7 +13864,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/el.po b/Languages/po/el.po index 710200bf40..fb91b07f77 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: e6b3518eccde9b3ba797d0e9ab3bc830_0a567e3, 2023\n" "Language-Team: Greek (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1096,8 +1096,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Περισσότερο-από" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1125,7 +1125,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1301,7 +1301,7 @@ msgstr "" msgid "Active threads" msgstr "Ενεργά νήματα" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1540,8 +1540,8 @@ msgstr "Όλα τα GC/Wii αρχεία" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1569,7 +1569,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "Να Επιτρέπονται Ασύμφωνες Ρυθμίσεις Περιοχών" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Άδεια Μετάδοσης Στατιστικών Χρήσης " @@ -1705,7 +1705,7 @@ msgstr "Είστε σίγουροι;" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Αναλογία Οθόνης" @@ -2060,11 +2060,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2408,8 +2408,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2898,8 +2898,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Επιβεβαίωση" @@ -3433,11 +3433,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3936,13 +3936,13 @@ msgstr "Απόσταση" msgid "Distance of travel from neutral position." msgstr "Απόσταση μετακίνησης από ουδέτερη θέση." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Εξουσιοδοτείτε το Dolphin να αναφέρει πληροφορίες στους προγραμματιστές του " "Dolphin;" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3956,7 +3956,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Θέλετε να σταματήσετε την τρέχουσα εξομοίωση;" @@ -3991,8 +3991,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Ταινίες (*.dtm)" @@ -4818,12 +4818,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5298,7 +5298,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5309,7 +5309,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5322,7 +5322,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5373,12 +5373,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5417,7 +5417,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6767,7 +6767,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6883,11 +6883,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7370,8 +7370,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8087,7 +8087,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9441,7 +9441,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Ερώτηση" @@ -10137,7 +10137,7 @@ msgstr "Αποθήκευση Παλαιότερου Σημείου" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10376,7 +10376,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10388,7 +10388,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10490,8 +10490,8 @@ msgstr "Επιλέξτε ένα Φάκελο" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Επιλέξτε ένα Αρχείο" @@ -10519,7 +10519,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10551,13 +10551,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10622,7 +10622,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13910,7 +13910,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/en.po b/Languages/po/en.po index 5f82dc4a44..10ea5c05f6 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -1081,8 +1081,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1286,7 +1286,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1525,8 +1525,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1554,7 +1554,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1690,7 +1690,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2045,11 +2045,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2393,8 +2393,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2883,8 +2883,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3416,11 +3416,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3918,11 +3918,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3936,7 +3936,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3971,8 +3971,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -4791,12 +4791,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5269,7 +5269,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5280,7 +5280,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5293,7 +5293,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5344,12 +5344,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5388,7 +5388,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6738,7 +6738,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6854,11 +6854,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7341,8 +7341,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8053,7 +8053,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9407,7 +9407,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "" @@ -10103,7 +10103,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10342,7 +10342,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10354,7 +10354,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10456,8 +10456,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10485,7 +10485,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10517,13 +10517,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10588,7 +10588,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13863,7 +13863,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/es.po b/Languages/po/es.po index 51e3a155da..7b5af95d8c 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1139,8 +1139,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Mayor que" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Ya hay una sesión de juego en red en marcha." @@ -1180,7 +1180,7 @@ msgstr "" "Un estado de guardado no puede ser cargado sin especificar el juego a " "ejecutar." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1393,7 +1393,7 @@ msgstr "Cola de hilos activos" msgid "Active threads" msgstr "Hilos activos" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adaptador" @@ -1686,8 +1686,8 @@ msgstr "Todos los archivos GC/Wii" msgid "All Hexadecimal" msgstr "Todos los valores hexadecimales" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos los estados guardados (*.sav *.s##);; Todos los archivos (*)" @@ -1715,7 +1715,7 @@ msgstr "Todos las partidas guardadas de los jugadores sincronizados." msgid "Allow Mismatched Region Settings" msgstr "Permitir configuración de región independiente" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permitir informes de estadísticas de uso" @@ -1838,7 +1838,7 @@ msgstr "¿Seguro que quieres borrar este paquete?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "¿Seguro que quieres cerrar sesión en RetroAchievements?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1846,7 +1846,7 @@ msgstr "¿Seguro que quieres salir del juego en red?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "¿Seguro que quieres desactivar el modo «hardcore»?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1856,7 +1856,7 @@ msgstr "¿Seguro que quieres continuar?" msgid "Area Sampling" msgstr "Muestreado de áreas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Relación de aspecto" @@ -2237,13 +2237,13 @@ msgstr "" msgid "Boot to Pause" msgstr "Arrancar pausado" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 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:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Archivo de claves BootMii (*.bin);;Todos los archivos (*)" @@ -2625,8 +2625,8 @@ msgstr "" "No se puede encontrar ningún mando de Wii con el identificador de conexión " "{0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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." @@ -3195,19 +3195,19 @@ msgstr "Configurar salida" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "Confirmar desactivación de modo «hardcore»" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "Confirmar cierre de sesión" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3817,11 +3817,11 @@ msgstr "Personalizada (estirada)" msgid "Custom Address Space" msgstr "Espacio de dirección personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Alto de la relación de aspecto personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Ancho de la relación de aspecto personalizada" @@ -4352,12 +4352,12 @@ msgstr "Distancia" msgid "Distance of travel from neutral position." msgstr "Distancia de desplazamiento desde la posición neutral." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "¿Nos permites compartir estadísticas con los desarrolladores de Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "¿Quieres añadir «%1» a la lista de carpetas de juegos?" @@ -4371,7 +4371,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "¿Quieres borrar el(los) %n archivo(s) de guardado elegido(s)?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "¿Quieres detener la emulación?" @@ -4406,8 +4406,8 @@ msgstr "Archivo de firma CSV de Dolphin" msgid "Dolphin Signature File" msgstr "Archivo de firma de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Grabación TAS de Dolphin (*.dtm)" @@ -5393,12 +5393,12 @@ msgstr "Introduce la dirección del módulo RSO:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5903,7 +5903,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:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "No se ha podido iniciar el núcleo" @@ -5917,7 +5917,7 @@ msgstr "" "Asegúrate de que tu tarjeta de vídeo soporta al menos D3D 10.0\n" "{0} " -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "No se han podido iniciar las clases de renderizado" @@ -5930,7 +5930,7 @@ msgstr "No se ha podido instalar el paquete: %1" 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:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5987,12 +5987,12 @@ msgstr "¡No se ha podido modificar el Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "No se ha podido abrir el archivo «%1» para su escritura." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "No se ha podido abrir el archivo «{0}» para su escritura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "No se ha podido abrir «%1»" @@ -6034,7 +6034,7 @@ msgstr "" msgid "Failed to open file." msgstr "No se ha podido abrir el archivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "No se ha podido contactar con el servidor" @@ -7539,7 +7539,7 @@ msgstr "" msgid "Identity Generation" msgstr "Generación de identidad" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7658,6 +7658,11 @@ msgid "" "graphical effects or gameplay-related features.

If " "unsure, leave this checked." msgstr "" +"Ignora cualquier petición de la CPU para leer o escribir el EFB." +"

Mejorará el rendimiento de algunos juegos, pero podría desactivar " +"aquellas funciones relacionadas con el juego o sus efectos gráficos." +"

Si tienes dudas, deja esta opción activada." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:93 msgid "Immediately Present XFB" @@ -7697,11 +7702,11 @@ msgstr "Importar archivo(s) de guardado" msgid "Import Wii Save..." msgstr "Importar partidas guardadas de Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importando copia de respaldo de la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -8219,8 +8224,8 @@ msgstr "" "memoria caché. Esto no debería haber pasado. Te rogamos que informes del " "fallo en el gestor de incidencias. Dolphin se cerrará." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "El modo JIT no está activo" @@ -8967,7 +8972,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10415,7 +10420,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pregunta" @@ -11173,7 +11178,7 @@ msgstr "Guardar el estado más antiguo" msgid "Save Preset" msgstr "Guardar preajuste" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Guardar archivo de grabación como" @@ -11423,7 +11428,7 @@ msgstr "Seleccionar ROM de GBA" msgid "Select GBA Saves Path" msgstr "Seleccionar ruta de archivos de guardado de GBA" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "Seleccionar archivo de claves (volcado OTP/SEEPROM)" @@ -11435,7 +11440,7 @@ msgstr "Seleccionar el último estado" msgid "Select Load Path" msgstr "Seleccionar ruta de carga" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "Seleccionar copia de respaldo de la NAND" @@ -11537,8 +11542,8 @@ msgstr "Seleccionar directorio" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Seleccionar archivo" @@ -11566,7 +11571,7 @@ msgstr "Seleccionar tarjetas e-Reader" msgid "Select the RSO module address:" msgstr "Elige la dirección del módulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Seleccionar archivo de grabación a reproducir" @@ -11598,7 +11603,7 @@ msgstr "Pila de llamadas del hilo seleccionado" msgid "Selected thread context" msgstr "Contexto del hilo seleccionado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

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

If unsure, " "select the first one." @@ -11723,16 +11728,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Selecciona la API de gráficos que se usará internamente.

El " -"renderizado por software es muy lento y solo se utiliza para tareas de " -"depuración, así que recomendamos cualquier otro renderizador. Cada juego y " -"cada tarjeta gráfica se comportarán de una manera distinta con cada motor, " -"por lo que si buscas la mejor experiencia de emulación, se recomienda que " -"pruebes todos los renderizadores y selecciones el que mejor se adapte a tus " -"necesidades.

Si tienes dudas, selecciona OpenGL. " #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15510,7 +15507,7 @@ msgstr "Revisión incorrecta" msgid "Wrote to \"%1\"." msgstr "Escrito a «%1»." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Escrito a «{0}»." diff --git a/Languages/po/fa.po b/Languages/po/fa.po index b91ed70d96..c3d3bcb820 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: H.Khakbiz , 2011\n" "Language-Team: Persian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1085,8 +1085,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1290,7 +1290,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1529,8 +1529,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2397,8 +2397,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2887,8 +2887,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3420,11 +3420,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3922,11 +3922,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3940,7 +3940,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "آیا می خواهید برابرسازی فعلی را متوقف کنید؟" @@ -3975,8 +3975,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "فیلم های تاس دلفین (*.dtm)" @@ -4797,12 +4797,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5276,7 +5276,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5287,7 +5287,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5300,7 +5300,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5351,12 +5351,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5395,7 +5395,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6745,7 +6745,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6861,11 +6861,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7348,8 +7348,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8063,7 +8063,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9417,7 +9417,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "سوال" @@ -10113,7 +10113,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10352,7 +10352,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10364,7 +10364,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10466,8 +10466,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10495,7 +10495,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10527,13 +10527,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10598,7 +10598,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13877,7 +13877,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/fi.po b/Languages/po/fi.po index 56ce7c34b7..921fad4b59 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Jaakko Saarikko , " "2022-2024\n" @@ -1113,8 +1113,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Suurempi kuin" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Nettipeli-istunto on jo käynnissä!" @@ -1150,7 +1150,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Tilantallennusta ei voi ladata määräämättä peliä, joka käynnistetään." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1364,7 +1364,7 @@ msgstr "Aktiivisten säikeiden jono" msgid "Active threads" msgstr "Aktiiviset säikeet" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Sovitin" @@ -1646,8 +1646,8 @@ msgstr "Kaikki GC-/Wii-tiedostot" msgid "All Hexadecimal" msgstr "Kaikki heksadesimaalisina" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Kaikki tilatallennukset (*.sav *.s##);; Kaikki tiedostot (*)" @@ -1675,7 +1675,7 @@ msgstr "Kaikkien pelaajien tallennustiedostot synkronoitu." msgid "Allow Mismatched Region Settings" msgstr "Salli sopimattomat alueasetukset" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Salli käyttötilastojen raportointi" @@ -1815,7 +1815,7 @@ msgstr "Oletko varma?" msgid "Area Sampling" msgstr "Alueotanta" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Kuvasuhde" @@ -2196,11 +2196,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Käynnistä keskeytettynä" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMiin NAND-varmuuskopiotiedosto (*.bin);;Kaikki tiedostot (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMiin avaintiedosto (*.bin);;Kaikki tiedostot (*)" @@ -2578,8 +2578,8 @@ msgstr "Tämän palkinnon roistoja ei voi muuttaa!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Wii Remote -ohjainta ei löydy yhteystunnisteella {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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ä!" @@ -3148,8 +3148,8 @@ msgstr "Ulostuloasetukset" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Vahvista" @@ -3765,11 +3765,11 @@ msgstr "Oma (venytä)" msgid "Custom Address Space" msgstr "Nykyinen osoiteavaruus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Muokatun kuvasuhteen korkeus" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Muokatun kuvasuhteen leveys" @@ -4303,11 +4303,11 @@ msgstr "Etäisyys" msgid "Distance of travel from neutral position." msgstr "Matkaetäisyys neutraalipaikasta." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Sallitko Dolphinin lähettävän tietoja Dolphinin kehittäjille?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Haluatko lisätä polun \"%1\" pelipolkujen listaan?" @@ -4322,7 +4322,7 @@ msgid "Do you want to delete the %n selected save file(s)?" msgstr "" "Haluatko poistaa %n valitun tallennustiedoston/valittua tallennustiedostoa?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Haluatko lopettaa nykyisen emulaation?" @@ -4357,8 +4357,8 @@ msgstr "Dolphinin allekirjoitusten CSV-tiedosto" msgid "Dolphin Signature File" msgstr "Dolphinin allekirjoitustiedosto" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-nauhoitus (*.dtm)" @@ -5316,12 +5316,12 @@ msgstr "Syötä RSO-moduulin osoite:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5822,7 +5822,7 @@ msgstr "" "(Työkalut -> Hallitse NAND-muistia -> Tarkista NAND...), ja yritä " "tallennustiedoston tuontia sitten uudelleen." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Ytimen alustus epäonnistui" @@ -5836,7 +5836,7 @@ msgstr "" "Varmista, että grafiikkasuorittimesi tukee vähintään D3D 10.0:aa\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Hahmonninluokkien alustus epäonnistui" @@ -5849,7 +5849,7 @@ msgstr "Paketin asennus epäonnistui: %1" msgid "Failed to install this title to the NAND." msgstr "Tämän julkaisun asennus NAND-muistiin epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5905,12 +5905,12 @@ msgstr "Skylanderin muokkaus epäonnistui!" msgid "Failed to open \"%1\" for writing." msgstr "Tiedoston \"%1\" avaaminen kirjoittamista varten epäonnistui." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Tiedoston \"{0}\" avaaminen kirjoittamista varten epäonnistui." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kohteen '%1' avaus epäonnistui" @@ -5951,7 +5951,7 @@ msgstr "" msgid "Failed to open file." msgstr "Tiedoston avaaminen epäonnistui." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Palvelimen avaaminen epäonnistui" @@ -7438,7 +7438,7 @@ msgstr "" msgid "Identity Generation" msgstr "Identiteetin luonti" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7597,11 +7597,11 @@ msgstr "Tuo tallennustiedosto(ja)" msgid "Import Wii Save..." msgstr "Tuo Wii-tallennustiedosto..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "NAND-varmuuskopion tuonti käynnissä" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -8112,8 +8112,8 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT ei ole aktiivinen" @@ -8864,7 +8864,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10307,7 +10307,7 @@ msgstr "DPLII-purkamisen laatu. Ääniviive kasvaa laadun myötä." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Kysymys" @@ -11025,7 +11025,7 @@ msgstr "Tallenna tila vanhimpaan" msgid "Save Preset" msgstr "Tallenna esiasetukset" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Tallenna nauhoitustiedosto nimellä" @@ -11275,7 +11275,7 @@ msgstr "Valitse GBA-ROM" msgid "Select GBA Saves Path" msgstr "Valitse GBA-tallennustiedostojen polku" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "Valitse avaintiedosto (OTP-/SEEPROM-vedos)" @@ -11287,7 +11287,7 @@ msgstr "Valitse viimeisin tilatallennus" msgid "Select Load Path" msgstr "Valitse latauspolk" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "Valitse NAND-varmuuskopio" @@ -11389,8 +11389,8 @@ msgstr "Valitse hakemisto" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Valitse tiedosto" @@ -11418,7 +11418,7 @@ msgstr "Valitse e-Reader-kortti" msgid "Select the RSO module address:" msgstr "Valitse RSO-moduulin osoite" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Valitse toistettava nauhoitustiedosto" @@ -11450,7 +11450,7 @@ msgstr "Valitun säikeen kutsupino" msgid "Selected thread context" msgstr "Valitun säikeen konteksti" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

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

If unsure, " "select the first one." @@ -11568,15 +11568,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Valitsee sisäisesti käytettävän grafiikkarajapinnan." -"

Ohjelmistohahmonnin on erittäin hidas ja soveltuu lähinnä " -"virheenjäljitykseen, joten kaikkia muita rajapintoja suositellaan. Eri pelit " -"ja eri grafiikkasuorittimet toimivat eri tavoin eri hahmontimilla, joten " -"parhaan emulointikokemuksen löytämiseksi on suositeltavaa kokeilla jokaista " -"ja valita se, joka on vähiten ongelmallinen.

Ellet " -"ole varma, valitse OpenGL." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15280,7 +15273,7 @@ msgstr "Väärä revisio" msgid "Wrote to \"%1\"." msgstr "Kirjoitettu kohteeseen \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Kirjoitettu kohteeseen \"{0}\"." diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 5de27d5800..3f9a80c814 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Pascal , 2013-2024\n" "Language-Team: French (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -57,7 +57,7 @@ msgstr "" #. of bytes (e.g. MiB), %2 is its untranslated name, and %3 is its fragmentation percentage. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:189 msgid " %1 %2 (%3% fragmented)" -msgstr "" +msgstr " %1 %2 (%3% fragmenté)" #: Source/Core/DolphinQt/GameList/GameListModel.cpp:102 msgid " (Disc %1)" @@ -401,7 +401,7 @@ msgstr "Fenêtre sans &bordures" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:498 msgid "&Branch Type" -msgstr "" +msgstr "Type de &branche" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:444 msgid "&Break on Hit" @@ -441,7 +441,7 @@ msgstr "&Code" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:500 msgid "&Condition" -msgstr "" +msgstr "&Condition" #: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" @@ -497,7 +497,7 @@ msgstr "&Émulation" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:626 msgid "&Erase Block(s)" -msgstr "" +msgstr "&Effacer le(s) bloc(s)" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" @@ -625,7 +625,7 @@ msgstr "&Mémoire" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:501 msgid "&Misc. Controls" -msgstr "" +msgstr "Contrôles &divers" #: Source/Core/DolphinQt/MenuBar.cpp:794 msgid "&Movie" @@ -654,7 +654,7 @@ msgstr "&Options" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:499 msgid "&Origin and Destination" -msgstr "" +msgstr "&Origine et destination" #: Source/Core/DolphinQt/MenuBar.cpp:1071 msgid "&Patch HLE Functions" @@ -744,7 +744,7 @@ msgstr "&Outil" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:530 msgid "&Toolbar Visibility" -msgstr "" +msgstr "&Visibilité de la barre d'outils" #: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "&Tools" @@ -1121,8 +1121,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Supérieur à" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Une session NetPlay est en cours !" @@ -1162,7 +1162,7 @@ msgstr "" "Une sauvegarde d'état ne peut être chargée sans avoir spécifié quel jeu " "démarrer." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1377,7 +1377,7 @@ msgstr "File d'attente de threads actifs" msgid "Active threads" msgstr "Threads actifs" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adaptateur" @@ -1658,8 +1658,8 @@ msgstr "Tous les fichiers GC/Wii" msgid "All Hexadecimal" msgstr "Tout Hexadécimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tous les états sauvegardés (*.sav *.s##);; Tous les fichiers (*)" @@ -1687,7 +1687,7 @@ msgstr "Les sauvegardes de tous les joueurs ont été synchronisées." msgid "Allow Mismatched Region Settings" msgstr "Autoriser des réglages pour région différente" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Autoriser l'envoi des statistiques d'utilisation" @@ -1828,7 +1828,7 @@ msgstr "Êtes-vous sûr ?" msgid "Area Sampling" msgstr "Échantillonnage de zone" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Format d'écran" @@ -2209,12 +2209,12 @@ msgstr "" msgid "Boot to Pause" msgstr "Démarrer sur Pause" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 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:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fichier de clés BootMii (*.bin);;Tous les fichiers (*)" @@ -2597,8 +2597,8 @@ msgstr "Impossible d'éditer les méchants pour ce trophée !" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossible de trouver la Wiimote par la gestion de connexion {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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 " @@ -3174,8 +3174,8 @@ msgstr "Configurer la sortie" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmer" @@ -3186,7 +3186,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "Confirmer la déconnexion" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3795,11 +3795,11 @@ msgstr "Personnalisé (étirer)" msgid "Custom Address Space" msgstr "Espace d'adresse personnalisé" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Hauteur personnalisée" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Largeur personnalisée" @@ -3822,28 +3822,28 @@ msgstr "Personnaliser" #. i18n: Cycles Percent #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:402 msgid "Cycles %" -msgstr "" +msgstr "% cycles" #. i18n: "Cycles" means instruction cycles. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:647 msgid "Cycles Average" -msgstr "" +msgstr "Moyenne de cycles" #. i18n: Cycles Average #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:400 msgid "Cycles Avg." -msgstr "" +msgstr "Moy. cycles" #. i18n: "Cycles" means instruction cycles. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:649 msgid "Cycles Percent" -msgstr "" +msgstr "Pourcentage de cycles" #. i18n: "Cycles" means instruction cycles. #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:398 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:645 msgid "Cycles Spent" -msgstr "" +msgstr "Cycles utilisés" #: Source/Core/Core/HW/GBAPadEmu.h:39 Source/Core/Core/HW/GCPadEmu.h:59 #: Source/Core/Core/HW/WiimoteEmu/Extension/Classic.h:223 @@ -4332,11 +4332,11 @@ msgstr "Distance" msgid "Distance of travel from neutral position." msgstr "Distance parcourue depuis la position neutre." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Autorisez-vous Dolphin à envoyer des informations à ses développeurs ?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Voulez-vous ajouter \"%1\" à la liste des dossiers de jeux ?" @@ -4350,7 +4350,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Voulez-vous supprimer %n fichier(s) de sauvegarde sélectionné(s) ?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Voulez-vous arrêter l'émulation en cours ?" @@ -4385,8 +4385,8 @@ msgstr "Fichier CSV de signature de Dolphin" msgid "Dolphin Signature File" msgstr "Fichier de signature de Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Films TAS Dolphin (*.dtm)" @@ -5349,12 +5349,12 @@ msgstr "Entrer l'adresse du module RSO :" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5860,7 +5860,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:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Impossible d'initialiser la base" @@ -5874,7 +5874,7 @@ msgstr "" "Vérifiez que votre carte graphique prend au minimum en charge D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Impossible d'initialiser les classes du moteur de rendu" @@ -5887,7 +5887,7 @@ msgstr "Impossible d'installer le pack %1" msgid "Failed to install this title to the NAND." msgstr "Impossible d'installer ce titre dans la NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5944,12 +5944,12 @@ msgstr "Impossible de modifier Skylander !" msgid "Failed to open \"%1\" for writing." msgstr "Impossible d'ouvrir \"%1\" en écriture." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Impossible d'ouvrir \"{0}\" en écriture." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Impossible d'ouvrir \"%1\"" @@ -5991,7 +5991,7 @@ msgstr "" msgid "Failed to open file." msgstr "Impossible d'ouvrir le fichier." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Impossible d'accéder au serveur" @@ -6622,7 +6622,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:183 msgid "Free memory:" -msgstr "" +msgstr "Mémoire libre :" #: Source/Core/Core/FreeLookManager.cpp:318 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:25 @@ -7490,7 +7490,7 @@ msgstr "" msgid "Identity Generation" msgstr "Génération d'une identité" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7651,11 +7651,11 @@ msgstr "Importer le(s) fichier(s) de sauvegarde" msgid "Import Wii Save..." msgstr "Importer une sauvegarde Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importation de la sauvegarde de la NAND..." -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -8171,8 +8171,8 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT n'est pas actif" @@ -8925,7 +8925,7 @@ msgstr "" "MemoryCard : l'écriture a été appelée avec une mauvaise adresse de " "destination ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10375,7 +10375,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Question" @@ -11093,7 +11093,7 @@ msgstr "Sauvegarder l'ancien état" msgid "Save Preset" msgstr "Enregistrer le préréglage" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Sauvegarder le fichier d'enregistrement sous" @@ -11344,7 +11344,7 @@ msgstr "Sélectionner la ROM GBA" msgid "Select GBA Saves Path" msgstr "Sélectionner le dossier des sauvegardes GBA" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "Sélectionner le fichier des clés (dump OTP/SEEPROM)" @@ -11356,7 +11356,7 @@ msgstr "Sélectionner le dernier état" msgid "Select Load Path" msgstr "Sélectionner le dossier à charger" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "Sélectionner une sauvegarde de NAND" @@ -11458,8 +11458,8 @@ msgstr "Sélectionner un dossier" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Sélectionner un fichier" @@ -11487,7 +11487,7 @@ msgstr "Sélectionner les cartes e-Reader" msgid "Select the RSO module address:" msgstr "Sélectionner l'adresse du module RSO :" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Sélectionnez le fichier d'enregistrement à lire" @@ -11519,7 +11519,7 @@ msgstr "Pile d'appels du thread sélectionné" msgid "Selected thread context" msgstr "Contexte du thread sélectionné" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

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

If unsure, " "select the first one." @@ -11639,15 +11639,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Sélectionne le moteur graphique à utiliser.

Le Rendu logiciel est " -"très lent et uniquement utilisé à des fins de débogage, donc n'importe quel " -"autre moteur est recommandé. Certains jeux et certains GPU ont un " -"comportement différent selon le moteur choisi, pour obtenir le meilleur " -"résultat il est recommandé de tester chaque moteur et de choisir celui qui " -"convient le mieux.

Dans le doute, sélectionnez " -"OpenGL." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15397,7 +15390,7 @@ msgstr "Mauvaise révision" msgid "Wrote to \"%1\"." msgstr "Écrit vers \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Écrit vers \"{0}\"." diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 37872d1ee4..24ffe4cd6a 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1085,8 +1085,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1290,7 +1290,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1529,8 +1529,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2397,8 +2397,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2887,8 +2887,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3420,11 +3420,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3922,11 +3922,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3940,7 +3940,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Želite li zaustaviti emulaciju?" @@ -3975,8 +3975,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmovi (*.dtm)" @@ -4797,12 +4797,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5276,7 +5276,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5287,7 +5287,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5300,7 +5300,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5351,12 +5351,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5395,7 +5395,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6745,7 +6745,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6861,11 +6861,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7348,8 +7348,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8063,7 +8063,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9417,7 +9417,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pitanje" @@ -10113,7 +10113,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10352,7 +10352,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10364,7 +10364,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10466,8 +10466,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10495,7 +10495,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10527,13 +10527,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10598,7 +10598,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13873,7 +13873,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/hu.po b/Languages/po/hu.po index 887dab42c7..5c6d553a4b 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -426,7 +426,7 @@ msgstr "&Kód" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:500 msgid "&Condition" -msgstr "" +msgstr "&Kondíció" #: Source/Core/DolphinQt/GBAWidget.cpp:392 msgid "&Connected" @@ -482,7 +482,7 @@ msgstr "&Emuláció" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:626 msgid "&Erase Block(s)" -msgstr "" +msgstr "&Blokk(ok) törlése" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:259 msgid "&Export" @@ -588,7 +588,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:255 msgid "&Load file to current address" -msgstr "" +msgstr "&Fájl betöltése a jelenlegi címre" #. i18n: This kind of "watch" is used for watching emulated memory. #. It's not related to timekeeping devices. @@ -610,7 +610,7 @@ msgstr "&Memória" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:501 msgid "&Misc. Controls" -msgstr "" +msgstr "&Egyéb vezérlők" #: Source/Core/DolphinQt/MenuBar.cpp:794 msgid "&Movie" @@ -729,7 +729,7 @@ msgstr "&Eszköz" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:530 msgid "&Toolbar Visibility" -msgstr "" +msgstr "&Eszköztár láthatósága" #: Source/Core/DolphinQt/MenuBar.cpp:265 msgid "&Tools" @@ -1060,7 +1060,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:268 msgid "Disabled in Hardcore Mode." -msgstr "" +msgstr "Hardcore módban le van tiltva." #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:431 msgid "If unsure, leave this unchecked." @@ -1099,8 +1099,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Egy NetPlay játékmenet már folyamatban van!" @@ -1128,7 +1128,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1306,7 +1306,7 @@ msgstr "" msgid "Active threads" msgstr "Aktív szálak" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adapter" @@ -1545,8 +1545,8 @@ msgstr "Minden GC/Wii fájl" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "All Save States (*.sav *.s##);; Minden fájl (*)" @@ -1574,7 +1574,7 @@ msgstr "Minden játékos mentései szinkronizálva." msgid "Allow Mismatched Region Settings" msgstr "Eltérő régióbeállítások engedélyezése" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Használati statisztikák jelentésének engedélyezése" @@ -1692,7 +1692,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "Biztosan kijelentkezel a RetroAchievementsből?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1700,7 +1700,7 @@ msgstr "Biztosan ki akarsz lépni a NetPlay-ből?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "Biztosan ki szeretnéd kapcsolni a hardcore módot?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1708,9 +1708,9 @@ msgstr "Biztos vagy benne?" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:142 msgid "Area Sampling" -msgstr "" +msgstr "Területi mintavételezés" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Képarány" @@ -1866,7 +1866,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/BroadbandAdapterSettingsDialog.cpp:73 msgid "BBA destination address" -msgstr "" +msgstr "BBA célcím" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:209 msgid "BIOS:" @@ -1985,15 +1985,15 @@ msgstr "BetterJoy, DS4Windows, stb." #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:134 msgid "Bicubic: B-Spline" -msgstr "" +msgstr "Bikubikus: B-Spline" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:138 msgid "Bicubic: Catmull-Rom" -msgstr "" +msgstr "Bikubikus: Catmull-Rom" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:136 msgid "Bicubic: Mitchell-Netravali" -msgstr "" +msgstr "Bikubikus: Mitchell-Netravali" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:132 msgid "Bilinear" @@ -2065,11 +2065,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup fájl(*.bin);;Minden fájl (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii keys fájl (*.bin);;Minden fájl (*)" @@ -2413,8 +2413,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Nem indítható NetPlay munkamenet, amíg egy játék fut!" @@ -2620,7 +2620,7 @@ msgstr "Válassz mappát a kitömörítéshez" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:541 msgid "Choose GCI Base Folder" -msgstr "" +msgstr "GCI Base mappa kiválasztása" #: Source/Core/DolphinQt/MenuBar.cpp:1779 msgid "Choose Priority Input File" @@ -2910,19 +2910,19 @@ msgstr "Kimenet konfigurálása" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Megerősítés" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "Hardcore kikapcsolásának megerősítése" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "Kijelentkezés megerősítése" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3449,11 +3449,11 @@ msgstr "Egyéni (nyújtott)" msgid "Custom Address Space" msgstr "Egyéni címtartomány" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Egyéni képarány magassága" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Egyéni képarány szélessége" @@ -3953,11 +3953,11 @@ msgstr "Távolság" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3971,7 +3971,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Biztos leállítod az aktuális emulációt?" @@ -4006,8 +4006,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS videók (*.dtm)" @@ -4464,7 +4464,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:103 msgid "Enable Encore Achievements" -msgstr "" +msgstr "Encore teljesítmények engedélyezése" #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:89 msgid "Enable FPRF" @@ -4830,12 +4830,12 @@ msgstr "RSO modul címének megadása:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5314,7 +5314,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5325,7 +5325,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5338,7 +5338,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5389,12 +5389,12 @@ msgstr "Nem sikerült módosítani a Skylander-t!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' megnyitása sikertelen" @@ -5433,7 +5433,7 @@ msgstr "" msgid "Failed to open file." msgstr "Nem sikerült megnyitni a fájlt." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Nem sikerült megnyitni a szervert" @@ -6002,7 +6002,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:183 msgid "Free memory:" -msgstr "" +msgstr "Szabad memória:" #: Source/Core/Core/FreeLookManager.cpp:318 #: Source/Core/DolphinQt/Config/Mapping/HotkeyGraphics.cpp:25 @@ -6805,7 +6805,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6921,11 +6921,11 @@ msgstr "Mentési fájl(ok) importálása" msgid "Import Wii Save..." msgstr "Wii mentés importálása..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7058,7 +7058,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:370 msgid "Inject" -msgstr "" +msgstr "Beszúrás" #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:438 #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:276 @@ -7308,7 +7308,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Invert &Condition" -msgstr "" +msgstr "&Kondíció invertálása" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Invert &Decrement Check" @@ -7409,8 +7409,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "A JIT nem aktív" @@ -7842,7 +7842,7 @@ msgstr "Betöltés a foglalatból %1 - %2" #: Source/Core/DolphinQt/MenuBar.cpp:1100 msgid "Load vWii System Menu %1" -msgstr "" +msgstr "Wii rendszermenü betöltése %1" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:155 msgid "Load..." @@ -7929,15 +7929,15 @@ msgstr "Sikertelen bejelentkezés" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:50 msgid "Login Failed - Invalid Username/Password" -msgstr "" +msgstr "Sikertelen bejelentkezés - Érvénytelen felhasználónév/jelszó" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "Login Failed - No Internet Connection" -msgstr "" +msgstr "Sikertelen bejelentkezés - Nincs internetkapcsolat" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Login Failed - Server Error" -msgstr "" +msgstr "Sikertelen bejelentkezés - Szerverhiba" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" @@ -8127,7 +8127,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -8279,13 +8279,15 @@ msgstr "" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:166 msgid "Mute When Disabling Speed Limit" -msgstr "" +msgstr "Némítás a sebességkorlátozás letiltásakor" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:168 msgid "" "Mutes the audio when overriding the emulation speed limit (default hotkey: " "Tab)." msgstr "" +"Elnémítja a hangot az emulációs sebességkorlátozás felülbírálásakor " +"(alapértelmezett gyorsgomb: Tab)." #: qtbase/src/gui/kernel/qplatformtheme.cpp:722 msgid "N&o to All" @@ -9493,7 +9495,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Kérdés" @@ -9561,7 +9563,7 @@ msgstr "Nyers belső felbontás" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:609 msgid "Re&place Instruction" -msgstr "" +msgstr "&Utasítás helyettesítése" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:600 msgid "Re-initialize software JIT block profiling data." @@ -9726,7 +9728,7 @@ msgstr "" #. i18n: Releases is a noun. #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:202 msgid "Releases (every few months)" -msgstr "Főbb frissítések (néhány havonta)" +msgstr "Releasek (néhány havonta)" #: Source/Core/DolphinQt/Updater.cpp:86 msgid "Remind Me Later" @@ -9786,7 +9788,7 @@ msgstr "" #. i18n: Repeat Instructions #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:392 msgid "Repeat Instr." -msgstr "" +msgstr "Utasítások ismétlése" #. i18n: This means to say it is a count of PPC instructions recompiled more than once. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:638 @@ -10193,7 +10195,7 @@ msgstr "Legrégebbi állapot mentése" msgid "Save Preset" msgstr "Előbeállítás mentése" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Rögzített fájl mentése, mint" @@ -10432,7 +10434,7 @@ msgstr "GBA ROM kiválasztása" msgid "Select GBA Saves Path" msgstr "GBA mentési útvonal kiválasztása" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10444,7 +10446,7 @@ msgstr "Legutóbbi állapot kiválasztása" msgid "Select Load Path" msgstr "Betöltési útvonal kiválasztása" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "NAND Backup kiválasztása" @@ -10546,8 +10548,8 @@ msgstr "Válassz egy könyvtárat" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Válassz egy fájlt" @@ -10575,7 +10577,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "Válaszd ki az RSO modul címét:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Válaszd ki a lejátszandó felvételt" @@ -10607,13 +10609,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10678,7 +10680,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -11610,7 +11612,7 @@ msgstr "Játék/felvétel leállítása" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:153 msgid "Stop Profiling" -msgstr "" +msgstr "Profilozás leállítása" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:412 msgid "Stopped game" @@ -12352,12 +12354,12 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:93 msgid "The type of this Skylander is unknown!" -msgstr "" +msgstr "A Skylander típusa ismeretlen!" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:100 msgid "" "The type of this Skylander is unknown, or can't be modified at this time!" -msgstr "" +msgstr "A Skylander típusa ismeretlen, vagy jelenleg nem módosítható!" #: Source/Core/DolphinQt/WiiUpdate.cpp:60 msgid "" @@ -12413,6 +12415,9 @@ msgid "" "\n" "Do you want to save before closing?" msgstr "" +"Nem mentett változások :\"%1\".\n" +"\n" +"Szeretnéd elmenteni kilépés előtt?" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:610 #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:621 @@ -12540,7 +12545,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:38 msgid "This feature is disabled in hardcore mode." -msgstr "" +msgstr "Ez a funkció nem elérhető hardcore módban." #: Source/Core/DiscIO/NANDImporter.cpp:116 msgid "This file does not contain a valid Wii filesystem." @@ -12695,7 +12700,7 @@ msgstr "Billenés" #. i18n: Time Percent #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:407 msgid "Time %" -msgstr "" +msgstr "Idő %" #. i18n: "ns" is an abbreviation of nanoseconds. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:653 @@ -12715,7 +12720,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:403 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:651 msgid "Time Spent (ns)" -msgstr "" +msgstr "Eltöltött idő (ns)" #. i18n: Refers to the "Calibration" setting of gyroscope input. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:49 @@ -12888,7 +12893,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:122 msgid "Toy code:" -msgstr "" +msgstr "Játékkód:" #: Source/Core/DiscIO/Enums.cpp:101 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:177 @@ -13212,7 +13217,7 @@ msgstr "Kurzor feloldása" #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:106 msgid "Unlocked" -msgstr "" +msgstr "Feloldva" #. i18n: %1 is a date/time. #: Source/Core/DolphinQt/Achievements/AchievementBox.cpp:101 @@ -13333,7 +13338,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:220 msgid "Use Full Resolution Per Eye" -msgstr "" +msgstr "Teljes felbontás szemenként" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:146 msgid "Use Lossless Codec (FFV1)" @@ -13559,7 +13564,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:625 msgid "View &Code" -msgstr "" +msgstr " &Kód megtekintése" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:142 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:132 @@ -13855,7 +13860,7 @@ msgstr "Wii Remote %1" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:113 msgid "Wii Remote Accelerometer" -msgstr "" +msgstr "Wii Remote gyorsulásmérő" #: Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp:271 msgid "Wii Remote Buttons" @@ -13993,7 +13998,7 @@ msgstr "Helytelen revízió" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/it.po b/Languages/po/it.po index c4cc1163ba..3fa881332b 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mewster , 2023-2024\n" "Language-Team: Italian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1114,8 +1114,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maggiore-di" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Una sessione NetPlay è già in corso!" @@ -1153,7 +1153,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Uno stato salvato non può essere caricato senza indicare quale gioco avviare." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1367,7 +1367,7 @@ msgstr "Coda thread attivo" msgid "Active threads" msgstr "Thread attivi" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adattatore" @@ -1656,8 +1656,8 @@ msgstr "Tutti i file GC/Wii" msgid "All Hexadecimal" msgstr "Tutto Esadecimale" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tutti i salvataggi di stati di gioco (*.sav *.s##);; Tutti i file (*)" @@ -1685,7 +1685,7 @@ msgstr "Tutti i salvataggi dei giocatori sono sincronizzati." msgid "Allow Mismatched Region Settings" msgstr "Permetti diverse impostazioni regione" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permetti report statistiche d'uso" @@ -1807,7 +1807,7 @@ msgstr "Sei sicuro di voler disinstallare questo pack?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "Vuoi davvero fare log out da RetroAchievements?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1815,7 +1815,7 @@ msgstr "Sei sicuro di voler chiudere NetPlay?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "Vuoi davvero spegnere la modalità hardcore?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1825,7 +1825,7 @@ msgstr "Sei sicuro?" msgid "Area Sampling" msgstr "Campionamento ad Area" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Rapporto d'aspetto" @@ -2206,11 +2206,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Avvia in pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "File di backup NAND BootMII (*.bin);;Tutti i file (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "File chiavi BootMii (*.bin);;Tutti i file (*)" @@ -2589,8 +2589,8 @@ msgstr "Impossibile modificare i cattivi per questo trofeo!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Impossibile trovare Wii Remote con handle di connessione {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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!" @@ -3157,19 +3157,19 @@ msgstr "Configura output" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Conferma" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "Conferma hardcore off" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "Conferma logout" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3774,11 +3774,11 @@ msgstr "Personalizzato (allarga)" msgid "Custom Address Space" msgstr "Spazio degli indirizzi personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Altezza rapporto d'aspetto personalizzato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Larghezza rapporto d'aspetto personalizzato" @@ -4309,11 +4309,11 @@ msgstr "Distanza" msgid "Distance of travel from neutral position." msgstr "Distanza di movimento dalla posizione neutrale." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Autorizzi Dolphin a inviare informazioni agli sviluppatori di Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Vuoi aggiungere \"%1\" alla lista dei Percorsi di Gioco?" @@ -4327,7 +4327,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Vuoi eliminare %n file di salvataggio selezionato/i?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Vuoi interrompere l'emulazione in corso?" @@ -4362,8 +4362,8 @@ msgstr "File signature CSV Dolphin" msgid "Dolphin Signature File" msgstr "File signature Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmati TAS Dolphin (*.dtm)" @@ -5331,12 +5331,12 @@ msgstr "Inserisci l'indirizzo del modulo RSO:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5840,7 +5840,7 @@ msgstr "" "ripararla (Strumenti -> Gestisci NAND -> Controlla NAND...), quindi importa " "di nuovo il salvataggio." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Inizializzazione fallita" @@ -5854,7 +5854,7 @@ msgstr "" "Accertati che la tua scheda video supporti almeno D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Impossibile inizializzare le classi del renderer" @@ -5867,7 +5867,7 @@ msgstr "Fallita installazione del pack: %1" msgid "Failed to install this title to the NAND." msgstr "Fallita installazione del titolo nella NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5924,12 +5924,12 @@ msgstr "Impossibile modificare lo Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Fallita l'apertura di \"%1\" per la scrittura." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Fallita l'apertura di \"{0}\" per la scrittura." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Fallita l'apertura di '%1'" @@ -5972,7 +5972,7 @@ msgstr "" msgid "Failed to open file." msgstr "Impossibile aprire il file." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Impossibile avviare il server" @@ -7460,7 +7460,7 @@ msgstr "" msgid "Identity Generation" msgstr "Generazione identità" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7578,6 +7578,10 @@ msgid "" "graphical effects or gameplay-related features.

If " "unsure, leave this checked." msgstr "" +"Ignora tutte le richieste da parte della CPU di leggere da o scrivere " +"sull'EFB.

Migliora le prestazioni in alcuni giochi, ma disabiliterà " +"gli effetti grafici basati sull'EFB o funzionalità di gameplay relative." +"

Nel dubbio, lascia selezionato." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:93 msgid "Immediately Present XFB" @@ -7617,11 +7621,11 @@ msgstr "Importa file di salvataggio" msgid "Import Wii Save..." msgstr "Importa salvataggio Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importazione di backup NAND in corso" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -8134,8 +8138,8 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT non è attivo" @@ -8881,7 +8885,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10326,7 +10330,7 @@ msgstr "Qualità del decoder DPLII. La latenza audio aumenta con la qualità." #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Conferma" @@ -11082,7 +11086,7 @@ msgstr "Salva sul più vecchio stato di gioco" msgid "Save Preset" msgstr "Salva preset" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Salva file registrazione come" @@ -11331,7 +11335,7 @@ msgstr "Seleziona ROM GBA" msgid "Select GBA Saves Path" msgstr "Seleziona percorso dei salvataggi GBA" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "Seleziona il file contenente le chiavi (dump OTP/SEEPROM)" @@ -11343,7 +11347,7 @@ msgstr "Seleziona ultimo stato" msgid "Select Load Path" msgstr "Seleziona percorso da caricare" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "Seleziona backup NAND" @@ -11445,8 +11449,8 @@ msgstr "Seleziona una cartella" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Seleziona un file" @@ -11474,7 +11478,7 @@ msgstr "Seleziona carte e-Reader" msgid "Select the RSO module address:" msgstr "Scegli l'indirizzo del modulo RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Seleziona la registrazione da eseguire" @@ -11506,7 +11510,7 @@ msgstr "Callstack thread selezionato" msgid "Selected thread context" msgstr "Contesto thread selezionato" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

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

If unsure, " "select the first one." @@ -11625,15 +11629,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Seleziona quale API grafica usare internamente.

Il renderer software " -"è estremamente lento, e viene utilizzato solo a scopo di debug, quindi è " -"consigliato qualsiasi altro backend. I giochi e le GPU si comporteranno in " -"modo diverso a seconda del motore utilizzato, quindi per una migliore " -"esperienza si consiglia di provarli tutti e scegliere il backend che sembra " -"più compatibile.

Nel dubbio, seleziona OpenGL." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15357,7 +15354,7 @@ msgstr "Revisione errata" msgid "Wrote to \"%1\"." msgstr "Scritto su \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Scritto su \"{0}\"." diff --git a/Languages/po/ja.po b/Languages/po/ja.po index 08749edb35..2d7df7b32d 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 難波 鷹史, 2023-2024\n" "Language-Team: Japanese (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1125,8 +1125,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Greater-than(より大きい)" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "ネットプレイのセッションは既に進行中です!" @@ -1161,7 +1161,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "起動するタイトルを指定せずにステートセーブをロードすることはできません" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1367,7 +1367,7 @@ msgstr "Active thread queue" msgid "Active threads" msgstr "Active threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "ビデオカード" @@ -1626,8 +1626,8 @@ msgstr "すべての GC/Wii ファイル" msgid "All Hexadecimal" msgstr "All Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "全てのステートセーブファイル (*.sav *.s##);; 全てのファイル (*)" @@ -1655,7 +1655,7 @@ msgstr "すべてのプレイヤーのセーブデータは同期されました msgid "Allow Mismatched Region Settings" msgstr "コンソール上の言語設定の不一致を許可する" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "利用統計レポートを許可" @@ -1796,7 +1796,7 @@ msgstr "本当によろしいですか?" msgid "Area Sampling" msgstr "エリアサンプリング" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "アスペクト比" @@ -2166,11 +2166,11 @@ msgstr "" msgid "Boot to Pause" msgstr "ブートから一時停止" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND バックアップファイル (*.bin);;すべてのファイル (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii キー ファイル (*.bin);;すべてのファイル (*)" @@ -2525,8 +2525,8 @@ msgstr "このトロフィーの悪役は編集できません!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "接続ハンドル {0:02x} でWiiリモコンが見つかりません。" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "ゲーム実行中はネットプレイセッションを開始できません!" @@ -3031,8 +3031,8 @@ msgstr "出力設定" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" @@ -3637,11 +3637,11 @@ msgstr "" msgid "Custom Address Space" msgstr "カスタムアドレス空間" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "カスタム アスペクト比の高さ" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "カスタム アスペクト比の幅" @@ -4166,11 +4166,11 @@ msgstr "距離" msgid "Distance of travel from neutral position." msgstr "振りの強さをニュートラルポジションからの距離で指定" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Dolphinの開発者への情報提供にご協力いただけますか?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" をゲームパスリストに追加しますか?" @@ -4184,7 +4184,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "選択中の %n 個のセーブファイルを削除しますか?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "動作中のゲームを停止しますか?" @@ -4219,8 +4219,8 @@ msgstr "Dolphin Signature CSV File" msgid "Dolphin Signature File" msgstr "Dolphin Signature File" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS ムービー (*.dtm)" @@ -5138,12 +5138,12 @@ msgstr "Enter the RSO module address:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5639,7 +5639,7 @@ msgstr "" "ルへのアクセスを妨げている可能性があります。NANDを修復し(ツール -> NANDの管" "理 -> NANDのチェック...)、セーブファイルを再度インポートしてみてください。" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "コアの初期化に失敗しました" @@ -5653,7 +5653,7 @@ msgstr "" "ビデオカードが少なくともD3D 10.0をサポートしていることを確認してください。\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "レンダラー・クラスの初期化に失敗しました。" @@ -5666,7 +5666,7 @@ msgstr "リソースパック %1 をインストールできませんでした" msgid "Failed to install this title to the NAND." msgstr "タイトルのインストールに失敗" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5721,12 +5721,12 @@ msgstr "Skylanderの修正に失敗しました!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' のオープンに失敗しました" @@ -5768,7 +5768,7 @@ msgstr "" msgid "Failed to open file." msgstr "ファイルのオープンに失敗しました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "サーバーを開けませんでした" @@ -7223,7 +7223,7 @@ msgstr "" msgid "Identity Generation" msgstr "IDの作成" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7372,11 +7372,11 @@ msgstr "セーブファイルのインポート" msgid "Import Wii Save..." msgstr "Wii セーブデータのインポート..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "NAND バックアップをインポート" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7880,8 +7880,8 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8623,7 +8623,7 @@ msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" "メモリーカード: 無効な宛先アドレス ({0:#x}) で Write が呼び出されました。" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10047,7 +10047,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "確認" @@ -10760,7 +10760,7 @@ msgstr "最古のステートに上書き保存" msgid "Save Preset" msgstr "プリセットの保存" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "レコーディングファイルに名前を付けて保存" @@ -11006,7 +11006,7 @@ msgstr "GBAのROMファイルを選択" msgid "Select GBA Saves Path" msgstr "GBAセーブファイルの保存先を選択" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -11018,7 +11018,7 @@ msgstr "ステートスロットの選択" msgid "Select Load Path" msgstr "ロードパスの選択" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -11120,8 +11120,8 @@ msgstr "ディレクトリを選択" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "ファイルを選択" @@ -11149,7 +11149,7 @@ msgstr "カードeファイルの選択" msgid "Select the RSO module address:" msgstr "Select the RSO module address:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "再生するレコーディングファイルを選択する" @@ -11181,7 +11181,7 @@ msgstr "Selected thread callstack" msgid "Selected thread context" msgstr "Selected thread context" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

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

If unsure, " "select the first one." @@ -11264,14 +11264,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"描画に使用する出力バックエンドAPIを選択します。\n" -"

Software Render はデバッグ用としてのみ有用で、非常に低速なため、通常" -"は選択しないでください。\n" -"各APIの動作はタイトルとビデオカードによってそれぞれ異なるため、それぞれ試して" -"うまく動作するものを選んでください。

よく分からない" -"場合は OpenGL を選択してください。" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -14887,7 +14881,7 @@ msgstr "間違ったリビジョンです" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/ko.po b/Languages/po/ko.po index e5e92e2a45..0f67032916 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Siegfried, 2013-2023\n" "Language-Team: Korean (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1109,8 +1109,8 @@ msgstr "" msgid "> Greater-than" msgstr "> 보다-큰" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "넷플레이 세션이 이미 진행 중입니다!" @@ -1146,7 +1146,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "저장 상태는 시작할 게임 명시 없이는 로드될 수 없습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1354,7 +1354,7 @@ msgstr "활성 쓰레드 큐" msgid "Active threads" msgstr "활성 쓰레드" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "어댑터" @@ -1611,8 +1611,8 @@ msgstr "모든 GC/Wii 파일들" msgid "All Hexadecimal" msgstr "모든 16진수" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "모든 저장 상태 (*.sav *.s##);; 모든 파일 (*)" @@ -1640,7 +1640,7 @@ msgstr "모든 플레이어의 저장이 동기화되었습니다." msgid "Allow Mismatched Region Settings" msgstr "맞지 않는 지역 설정 허락" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "사용 통계 보고 허용" @@ -1780,7 +1780,7 @@ msgstr "확신합니까?" msgid "Area Sampling" msgstr "Area Sampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "종횡비" @@ -2146,11 +2146,11 @@ msgstr "" msgid "Boot to Pause" msgstr "부팅하고 멈추기" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 백업 파일 (*.bin);;모든 파일 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 키 파일 (*.bin);;모든 파일 (*)" @@ -2504,8 +2504,8 @@ msgstr "이 트로피를 위해 악당들을 편집할 수 없습니다!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "{0:02x} 연결 핸들로 Wii 리모트를 찾을 수 없음" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "게임이 여전히 구동되는 동안에 넷플레이 세션을 시작할 수 없습니다!" @@ -3012,8 +3012,8 @@ msgstr "출력 설정" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "확정" @@ -3605,11 +3605,11 @@ msgstr "" msgid "Custom Address Space" msgstr "커스텀 주소 공간" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -4132,11 +4132,11 @@ msgstr "거리" msgid "Distance of travel from neutral position." msgstr "중립 위치에서 이동 거리" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "돌핀이 정보를 돌핀 개발자들에게 보고하도록 허가하시겠습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\" 를 게임 경로들의 목록에 추가하고 싶습니까?" @@ -4150,7 +4150,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "선택된 저장 파일 %n 을 삭제하고 싶습니까?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "에뮬레이션을 중단하고 싶습니까?" @@ -4185,8 +4185,8 @@ msgstr "돌핀 서명 CSV 파일" msgid "Dolphin Signature File" msgstr "돌핀 서명 파일" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "돌핀 TAS 무비 (*.dtm)" @@ -5081,12 +5081,12 @@ msgstr "RSO 모듈 주소를 입력:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5578,7 +5578,7 @@ msgstr "" "것이 그 안에 파일들에 액세스를 막고 있습니다. NAND (도구 -> NAND 관리 -> " "NAND 체크...) 를 고쳐 보세요, 그런 후 저장을 다시 가져오세요." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "코어 인식에 실패했습니다" @@ -5592,7 +5592,7 @@ msgstr "" "비디오 카드가 적어도 D3D 10.0 지원하는지 확인하세요\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "렌더러 클래스 초기화에 실패했습니다" @@ -5605,7 +5605,7 @@ msgstr "팩 설치에 실패했습니다: %1" msgid "Failed to install this title to the NAND." msgstr "NAND 에 이 타이틀 설치에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5660,12 +5660,12 @@ msgstr "스카이랜더 수정에 실패했습니다!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "'%1' 를 열기에 실패했습니다" @@ -5706,7 +5706,7 @@ msgstr "" msgid "Failed to open file." msgstr "파일 열기에 실패했습니다." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "서버 열기에 실패했습니다" @@ -7144,7 +7144,7 @@ msgstr "" msgid "Identity Generation" msgstr "식별자 생성" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7289,11 +7289,11 @@ msgstr "저장 파일(들)을 가져오기" msgid "Import Wii Save..." msgstr "Wii 저장 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "NAND 백업 가져오기" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7794,8 +7794,8 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8529,7 +8529,7 @@ msgstr "메모리카드: 부적합 소스 주소로 호출된 읽기 ({0:#x})" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "메모리카드: 부적합 목적지 주소로 호출된 쓰기 ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9944,7 +9944,7 @@ msgstr "DPLII 디코더의 품질. 오디오 지연이 품질로 증가합니다 #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "질문" @@ -10655,7 +10655,7 @@ msgstr "가장 오래된 상태 저장" msgid "Save Preset" msgstr "프리셋 저장" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "녹화 파일을 다른 이름으로 저장" @@ -10899,7 +10899,7 @@ msgstr "GBA 롬 선택" msgid "Select GBA Saves Path" msgstr "GBA 저장 경로 선택" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10911,7 +10911,7 @@ msgstr "마지막 상태 선택" msgid "Select Load Path" msgstr "로드 경로 선택" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -11013,8 +11013,8 @@ msgstr "디렉토리 선택" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "파일 선택" @@ -11042,7 +11042,7 @@ msgstr "e-Reader 카드 선택" msgid "Select the RSO module address:" msgstr "RSO 모듈 주소 선택:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "플레이할 녹화 파일 선택" @@ -11074,7 +11074,7 @@ msgstr "선택된 쓰레드 콜스택" msgid "Selected thread context" msgstr "선택된 쓰레드 맥락" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11082,7 +11082,7 @@ msgstr "" "사용할 하드웨어 어댑터를 선택하세요.

%1 는 이 기능" "을 지원하지 않습니다." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11156,14 +11156,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"내부적으로 어느 그래픽 API를 사용할지 선택합니다.

소프트웨어 렌더러는 " -"극히 느리고 디버깅에만 유용합니다, 그래서 다른 백엔드들중 아무거나 추천됩니" -"다. 다른 게임과 다른 GPU는 각각의 백엔드에서 다르게 행동할 것입니다, 그러니 " -"최고의 에뮬레이션 경험을 위해서 각각 시도해보기를 권장합니다 그리고나서 문제" -"가 가장 적은 것을 고르세요.

잘 모르겠으면, OpenGL을 " -"선택하세요." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -14749,7 +14743,7 @@ msgstr "잘못된 개정" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/ms.po b/Languages/po/ms.po index bc5c9832bd..212115993d 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: abuyop , 2018\n" "Language-Team: Malay (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1092,8 +1092,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Satu Sesi NetPlay sedang berlangsung!" @@ -1121,7 +1121,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1299,7 +1299,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1548,8 +1548,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Semua Keadaan Simpan (*.sav *.s##);; Semua Fail (*)" @@ -1577,7 +1577,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1713,7 +1713,7 @@ msgstr "Anda pasti?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2070,11 +2070,11 @@ msgstr "" msgid "Boot to Pause" msgstr "But untuk Dijeda" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Fail sandar NAND BootMii (*.bin);;Semua Fail (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Fail kunci BootMii (*.bin);;Semua Fail (*)" @@ -2418,8 +2418,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Tidak dapat memulakan Sesi NetPlay ketika permainan masih berlangsung!" @@ -2911,8 +2911,8 @@ msgstr "Konfigur Output" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Sahkan" @@ -3452,11 +3452,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3954,12 +3954,12 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Adakah anda izinkan Dolphin melaporkan maklumat kepada pembangun Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Anda mahu tambah \"%1\" ke dalam senarai Laluan Permainan?" @@ -3973,7 +3973,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Anda hendak hentikan emulasi semasa?" @@ -4008,8 +4008,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Cereka TAS Dolphin (*.dtm)" @@ -4836,12 +4836,12 @@ msgstr "Masukkan alamat modul RSO:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5318,7 +5318,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Gagal ke teras init" @@ -5329,7 +5329,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5342,7 +5342,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "Gagal memasang tajuk ini ke NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5395,12 +5395,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Gagal membuka '%1'" @@ -5439,7 +5439,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Gagal membuka pelayan" @@ -6791,7 +6791,7 @@ msgstr "" msgid "Identity Generation" msgstr "Penjanaan Identiti" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6917,11 +6917,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Import Simpan Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Mengimport sandar NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7406,8 +7406,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8121,7 +8121,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9487,7 +9487,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Soalan" @@ -10183,7 +10183,7 @@ msgstr "Simpan Keadaan Terlama" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10424,7 +10424,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10436,7 +10436,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10538,8 +10538,8 @@ msgstr "Pilih satu Direktori" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Pilih satu Fail" @@ -10567,7 +10567,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10599,13 +10599,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10670,7 +10670,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13984,7 +13984,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/nb.po b/Languages/po/nb.po index da28e1f4f2..61d2188a1c 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -1110,8 +1110,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Større enn" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "En NetPlay-økt finnes allerede!" @@ -1139,7 +1139,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1328,7 +1328,7 @@ msgstr "" msgid "Active threads" msgstr "Aktive tråder" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1576,8 +1576,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle lagringsstadier (*.sav *.s##);; Alle filer (*)" @@ -1605,7 +1605,7 @@ msgstr "Alle spilleres lagringsfiler er synkronisert." msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Tillat rapportering av brukerstatistikk" @@ -1741,7 +1741,7 @@ msgstr "Er du sikker?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2102,11 +2102,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Start opp i pausemodus" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND sikkerhetskopifil (*.bin);;Alle filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii nøkkelfil (*.bin);;Alle filer (*)" @@ -2450,8 +2450,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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!" @@ -2944,8 +2944,8 @@ msgstr "Sett opp utdata" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekreft" @@ -3491,11 +3491,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3993,11 +3993,11 @@ msgstr "Avstand" msgid "Distance of travel from neutral position." msgstr "Reiseavstand fra nøytral posisjon." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Tillater du at Dolphin samler inn informasjon til Dolphins utviklere?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Vil du legge til «%1» i listen over spillfilbaner?" @@ -4011,7 +4011,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Vil du stoppe pågående emulering?" @@ -4046,8 +4046,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS-Filmer (*.dtm)" @@ -4876,12 +4876,12 @@ msgstr "Skriv inn RSO-moduladresse:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5361,7 +5361,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Klarte ikke å igangsette kjerne" @@ -5372,7 +5372,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5385,7 +5385,7 @@ msgstr "Kunne ikke installere pakke: %1" msgid "Failed to install this title to the NAND." msgstr "Klarte ikke å installere denne tittelen til NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5438,12 +5438,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Klarte ikke å åpne \"%1\"" @@ -5484,7 +5484,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Klarte ikke å åpne tjener" @@ -6842,7 +6842,7 @@ msgstr "" msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6967,11 +6967,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Importer Wii-lagringsfil …" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importing NAND sikkerhetskopi" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7456,8 +7456,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8175,7 +8175,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9552,7 +9552,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Spørsmål" @@ -10248,7 +10248,7 @@ msgstr "Lagre eldste hurtiglagring" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10492,7 +10492,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10504,7 +10504,7 @@ msgstr "Velg nyeste hurtiglagring" msgid "Select Load Path" msgstr "Velg innlastingsfilbane" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10606,8 +10606,8 @@ msgstr "Velg mappe" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Velg en fil" @@ -10635,7 +10635,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "Velg RSO-moduladressen:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10667,13 +10667,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10738,7 +10738,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -14097,7 +14097,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/nl.po b/Languages/po/nl.po index 3a438ef2ee..7163e57d2f 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1132,8 +1132,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Meer dan" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Er is al een NetPlay sesie bezig!" @@ -1170,7 +1170,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Een save state kan niet worden gebruikt zonder een spel te specificeren. " -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1382,7 +1382,7 @@ msgstr "Actieve thread wachtrij" msgid "Active threads" msgstr "Actieve threads" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adapter" @@ -1640,8 +1640,8 @@ msgstr "Alle GC/Wii bestanden" msgid "All Hexadecimal" msgstr "Alle Hexadecimaal" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alle Save States (*.sav *.s##);; Alle Bestanden (*)" @@ -1669,7 +1669,7 @@ msgstr "Saves van alle spelers gesynchroniseerd." msgid "Allow Mismatched Region Settings" msgstr "Niet-overeenkomende regio-instellingen toestaan" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Rapportage van gebruiksstatistieken toestaan" @@ -1809,7 +1809,7 @@ msgstr "Weet u het zeker?" msgid "Area Sampling" msgstr "Gebiedssampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Beeldverhouding" @@ -2177,11 +2177,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Opstarten naar Pauze" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND backup bestanden (*.bin);;Alle bestanden (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii sleutelbestand (*.bin);;Alle Bestanden (*)" @@ -2537,8 +2537,8 @@ msgstr "Kan de schurken voor deze trofee niet aanpassen" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan Wii-afstandsbediening niet vinden via verbindingshendel {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Kan geen NetPlay-sessie starten als spel nog draait!" @@ -3055,8 +3055,8 @@ msgstr "Configureer Output" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bevestigen" @@ -3654,11 +3654,11 @@ msgstr "Aangepast (Strech)" msgid "Custom Address Space" msgstr "Aangepaste Adresruimte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Aangepaste Beeldverhouding Hoogte" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Aangepaste Beeldverhouding Breedte" @@ -4185,13 +4185,13 @@ msgstr "Afstand" msgid "Distance of travel from neutral position." msgstr "Reisafstand vanaf neutrale positie." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Machtigt u Dolphin om informatie te rapporteren aan de ontwikkelaars van " "Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Wilt u \"%1\" toevoegen aan de lijst met Spelpaden?" @@ -4205,7 +4205,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Wilt u de %n geselecteerde save bestand(en) verwijderen?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Wilt u de emulatie stoppen?" @@ -4240,8 +4240,8 @@ msgstr "Dolphin CSV Signatuurbestand" msgid "Dolphin Signature File" msgstr "Dolphin Signatuurbestand" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Opname (*.dtm)" @@ -5128,12 +5128,12 @@ msgstr "Voer adres van de RSO-module in:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5635,7 +5635,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:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Kon core niet initiëren" @@ -5649,7 +5649,7 @@ msgstr "" "Zorg ervoor dat uw videokaart ten minste D3D 10.0 ondersteunt.\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Initialiseren renderer classes mislukt" @@ -5662,7 +5662,7 @@ msgstr "Het is niet gelukt om het pakket te installeren: %1" msgid "Failed to install this title to the NAND." msgstr "Kon deze titel niet installeren op de NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5719,12 +5719,12 @@ msgstr "Mislukt om Skylander te wijzigen!" msgid "Failed to open \"%1\" for writing." msgstr "Mislukt om \"%1\" te openen voor schrijven." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Mislukt om \"{0}\" te openen voor schrijven." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Kon '%1' niet openen" @@ -5765,7 +5765,7 @@ msgstr "" msgid "Failed to open file." msgstr "Openen bestand mislukt." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Kon server niet openen" @@ -7225,7 +7225,7 @@ msgstr "" msgid "Identity Generation" msgstr "Identiteitsgeneratie" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7375,11 +7375,11 @@ msgstr "Save-bestand(en) importeren" msgid "Import Wii Save..." msgstr "Wii-save importeren…" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "NAND-back-up importeren" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7885,8 +7885,8 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT is niet actief" @@ -8619,7 +8619,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10042,7 +10042,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Vraag" @@ -10756,7 +10756,7 @@ msgstr "Sla Oudste State op" msgid "Save Preset" msgstr "Voorinstelling opslaan" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Sla Opnamebestand op Als" @@ -11002,7 +11002,7 @@ msgstr "Selecteer GBA ROM" msgid "Select GBA Saves Path" msgstr "Selecteer GBA Saves Pad" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -11014,7 +11014,7 @@ msgstr "Selecteer Laatste State" msgid "Select Load Path" msgstr "Selecteer Laad Pad" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -11116,8 +11116,8 @@ msgstr "Selecteer een Map" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Selecteer een Bestand" @@ -11145,7 +11145,7 @@ msgstr "Selecteer e-Reader Kaarten" msgid "Select the RSO module address:" msgstr "Selecteer het RSO module adres:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Selecteer Opnamebestand om Af te Spelen" @@ -11177,7 +11177,7 @@ msgstr "Geselecteerde thread callstack" msgid "Selected thread context" msgstr "Geselecteerde thread context" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11185,7 +11185,7 @@ msgstr "" "Selecteert een hardware-adapter om te gebruiken.

" "%1 ondersteunt deze functie niet.
" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11260,15 +11260,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Selecteert welke grafische API intern moet worden gebruikt.

De " -"software-renderer is extreem traag en alleen nuttig voor foutopsporing, dus " -"alleen de andere backends worden aangeraden. Verschillende spellen en " -"verschillende GPU's gedragen zich anders op elke backend, dus voor de beste " -"emulatie-ervaring wordt aangeraden om elk spel te proberen en de backend te " -"selecteren die het minst problematisch is.

In geval " -"van twijfel OpenGL selecteren." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -14913,7 +14906,7 @@ msgstr "Verkeerde revisie" msgid "Wrote to \"%1\"." msgstr "Schreef naar \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Schreef naar \"{0}\"." diff --git a/Languages/po/pl.po b/Languages/po/pl.po index 1b8747e4ec..a669df118a 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: FlexBy, 2021,2023\n" "Language-Team: Polish (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1119,8 +1119,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Sesja NetPlay jest już rozpoczęta!" @@ -1149,7 +1149,7 @@ msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" "Stan zapisu nie może zostać wczytany bez określenia gry do uruchomienia." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1327,7 +1327,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1577,8 +1577,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Wszystkie stany zapisu (*.sav *.s##);; wszystkie pliki (*)" @@ -1606,7 +1606,7 @@ msgstr "Zapisy wszystkich graczy zsynchronizowane." msgid "Allow Mismatched Region Settings" msgstr "Zezwalaj na niedopasowane ustawienia regionalne" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1742,7 +1742,7 @@ msgstr "Czy jesteś pewien?" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2097,11 +2097,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2445,8 +2445,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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!" @@ -2938,8 +2938,8 @@ msgstr "Skonfiguruj wyjście" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Potwierdź" @@ -3475,11 +3475,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3977,12 +3977,12 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Czy zezwalasz programowi Dolphin na wysyłanie informacji do jego producentów?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3996,7 +3996,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Zatrzymać aktualną emulację?" @@ -4031,8 +4031,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Filmy TAS (*.dtm)" @@ -4859,12 +4859,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5342,7 +5342,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5353,7 +5353,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5366,7 +5366,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5419,12 +5419,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Nie udało się otworzyć '%1'" @@ -5463,7 +5463,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6813,7 +6813,7 @@ msgstr "" msgid "Identity Generation" msgstr "Generacja tożsamości" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6938,11 +6938,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Importuj zapis Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7427,8 +7427,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8142,7 +8142,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9500,7 +9500,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pytanie" @@ -10196,7 +10196,7 @@ msgstr "Zapisz najstarszy stan" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10435,7 +10435,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10447,7 +10447,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10549,8 +10549,8 @@ msgstr "Wybierz ścieżkę" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Wybierz plik" @@ -10578,7 +10578,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10610,13 +10610,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10681,7 +10681,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13974,7 +13974,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/pt.po b/Languages/po/pt.po index f07f2631e4..e87683ff84 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zilaan , 2011\n" "Language-Team: Portuguese (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1086,8 +1086,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1115,7 +1115,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1291,7 +1291,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1530,8 +1530,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1559,7 +1559,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1695,7 +1695,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2050,11 +2050,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2398,8 +2398,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2888,8 +2888,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3421,11 +3421,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3923,11 +3923,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3941,7 +3941,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação actual?" @@ -3976,8 +3976,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS filmes (*.dtm)" @@ -4798,12 +4798,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5278,7 +5278,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5289,7 +5289,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5302,7 +5302,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5353,12 +5353,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5397,7 +5397,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6747,7 +6747,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6863,11 +6863,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8065,7 +8065,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9419,7 +9419,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Questão" @@ -10115,7 +10115,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10354,7 +10354,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10366,7 +10366,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10468,8 +10468,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10497,7 +10497,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10529,13 +10529,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10600,7 +10600,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13879,7 +13879,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index 78ee52c046..a426e00ee3 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mateus B. Cassiano , 2017,2021-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/dolphinemu/" @@ -1150,8 +1150,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Maior que" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Uma sessão do NetPlay já está em progresso!" @@ -1190,7 +1190,7 @@ msgstr "" "Não é possível carregar um estado salvo sem especificar um jogo para " "executar." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1403,7 +1403,7 @@ msgstr "Fila do thread ativo" msgid "Active threads" msgstr "Threads ativas" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adaptador" @@ -1690,8 +1690,8 @@ msgstr "Todos os arquivos do GC/Wii" msgid "All Hexadecimal" msgstr "Tudo Hexadecimal" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Todos os Estados Salvos (*.sav *.s##);;Todos os arquivos (*)" @@ -1719,7 +1719,7 @@ msgstr "Todos os saves dos jogadores sincronizados." msgid "Allow Mismatched Region Settings" msgstr "Permitir Configurações de Região Incompatíveis" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Permitir Envio de Estatísticas de Uso" @@ -1841,7 +1841,7 @@ msgstr "Tem certeza de que deseja excluir esse pacote?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "Tem certeza de que deseja sair do RetroAchievements?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1849,7 +1849,7 @@ msgstr "Você tem certeza que você quer sair do NetPlay?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "Tem certeza de que deseja desativar o Modo Hardcore?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1859,7 +1859,7 @@ msgstr "Tem certeza?" msgid "Area Sampling" msgstr "Amostragem da Área" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Proporção de Tela" @@ -2243,11 +2243,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Do Início até a Pausa" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 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:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Arquivo de chaves do BootMii (*.bin);;Todos os arquivos (*)" @@ -2625,8 +2625,8 @@ msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" "Não foi possível encontrar o Wii Remote pelo identificador de conexão {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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 " @@ -3196,19 +3196,19 @@ 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:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Confirmar" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "Confirmar Desativação" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "Confirmar Saída" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3820,11 +3820,11 @@ msgstr "Personalizada (Esticada)" msgid "Custom Address Space" msgstr "Espaço do Endereço Personalizado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Altura da proporção de tela personalizada" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Largura da proporção de tela personalizada" @@ -4355,13 +4355,13 @@ msgstr "Distância" msgid "Distance of travel from neutral position." msgstr "Distância de viagem da posição neutra." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Você autoriza o Dolphin a enviar estatísticas de uso para a equipe de " "desenvolvimento?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Você quer adicionar '%1' a lista de caminhos dos jogos?" @@ -4375,7 +4375,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Deseja excluir %n arquivo(s) de jogo salvo selecionado(s)?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Deseja parar a emulação atual?" @@ -4410,8 +4410,8 @@ msgstr "Arquivo CSV de Assinatura do Dolphin" msgid "Dolphin Signature File" msgstr "Arquivo de Assinatura do Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Gravações TAS do Dolphin (*.dtm)" @@ -5384,12 +5384,12 @@ msgstr "Insira o endereço do módulo do RSO:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5892,7 +5892,7 @@ msgstr "" "NAND (Ferramentas -> Gerenciar NAND -> Verificar NAND...) , então importe os " "dados salvos novamente." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Falha ao inicializar o núcleo" @@ -5906,7 +5906,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:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Falha ao inicializar as classes do renderizador" @@ -5919,7 +5919,7 @@ msgstr "Falha ao instalar pacote: %1" msgid "Failed to install this title to the NAND." msgstr "Falha ao instalar esse software na NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5976,12 +5976,12 @@ msgstr "Falha ao modificar o Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Falha ao abrir \"%1\" para escrita." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Falha ao abrir \"{0}\" para escrita." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Falha ao abrir '%1'" @@ -6023,7 +6023,7 @@ msgstr "" msgid "Failed to open file." msgstr "Falha ao abrir o arquivo." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Falha ao abrir o servidor" @@ -7524,7 +7524,7 @@ msgstr "" msgid "Identity Generation" msgstr "ID de Estatísticas" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7648,6 +7648,10 @@ msgid "" "graphical effects or gameplay-related features.

If " "unsure, leave this checked." msgstr "" +"Ignora quaisquer pedidos da CPU para ler ou escrever no EFB.

Melhora " +"o desempenho em alguns jogos, mas pode desabilitar alguns efeitos gráficos " +"ou algumas funções relacionadas à jogabilidade.

Na " +"dúvida, mantenha essa opção ativada." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:93 msgid "Immediately Present XFB" @@ -7687,11 +7691,11 @@ msgstr "Importar Arquivo(s) de Jogo Salvo" msgid "Import Wii Save..." msgstr "Importar Dados Salvos do Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importando backup da NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -8202,8 +8206,8 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT não está ativo" @@ -8950,7 +8954,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10399,7 +10403,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pergunta" @@ -11157,7 +11161,7 @@ msgstr "Salvar Estado Mais Antigo" msgid "Save Preset" msgstr "Salvar Predefinição" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Salvar o Arquivo da Gravação Como" @@ -11407,7 +11411,7 @@ msgstr "Selecionar a ROM do GBA" msgid "Select GBA Saves Path" msgstr "Selecione o Caminho dos Saves do GBA" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "Selecione Arquivo de Chaves (Backup da OTP/SEEPROM)" @@ -11419,7 +11423,7 @@ msgstr "Selecionar" msgid "Select Load Path" msgstr "Selecione o Caminho Pra Carregar" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "Selecione Backup da NAND" @@ -11521,8 +11525,8 @@ msgstr "Selecione um Diretório" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Selecione um Arquivo" @@ -11550,7 +11554,7 @@ msgstr "Selecione os Cartões do e-Reader" msgid "Select the RSO module address:" msgstr "Selecione o endereço do módulo do RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Selecione o Arquivo da Gravação a Executar" @@ -11582,7 +11586,7 @@ msgstr "Thread do callstack selecionado" msgid "Selected thread context" msgstr "Contexto do thread selecionado" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11590,7 +11594,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:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11702,14 +11706,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Seleciona qual API gráfica usar internamente.

O renderizador por " -"software é extremamente lento e só deve ser utilizado para depuração, então " -"qualquer um dos outros backends são recomendados. Jogos e GPUs diferentes se " -"comportarão diferentemente em cada backend, então para a melhor experiência " -"é recomendado testar cada um e selecionar o backend menos problemático." -"

Na dúvida, selecione \"OpenGL\"." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15454,7 +15452,7 @@ msgstr "Revisão incorreta" msgid "Wrote to \"%1\"." msgstr "Escrito em \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Escrito em \"{0}\"." diff --git a/Languages/po/ro.po b/Languages/po/ro.po index cd64783966..537504000b 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-emu/" @@ -1085,8 +1085,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1290,7 +1290,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1529,8 +1529,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2397,8 +2397,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2887,8 +2887,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3420,11 +3420,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3922,11 +3922,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3940,7 +3940,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Vrei să oprești emularea curentă?" @@ -3975,8 +3975,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr " Filme TAS Dolphin (*.dtm)" @@ -4797,12 +4797,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5277,7 +5277,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5288,7 +5288,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5301,7 +5301,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5352,12 +5352,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5396,7 +5396,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6746,7 +6746,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6862,11 +6862,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7351,8 +7351,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8066,7 +8066,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9420,7 +9420,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Întrebare" @@ -10116,7 +10116,7 @@ msgstr "Salvează cel mai Vechi Status" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10355,7 +10355,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10367,7 +10367,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10469,8 +10469,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10498,7 +10498,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10530,13 +10530,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10601,7 +10601,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13880,7 +13880,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/ru.po b/Languages/po/ru.po index 2f4437fbd4..08a45bdb50 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Daniil Huz, 2024\n" "Language-Team: Russian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1130,8 +1130,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Больше чем" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Сессия сетевой игры уже создана!" @@ -1167,7 +1167,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Чтобы загрузить быстрое сохранение, нужно указать игру." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1374,7 +1374,7 @@ msgstr "Активная очередь потоков" msgid "Active threads" msgstr "Активные потоки" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Адаптер" @@ -1655,8 +1655,8 @@ msgstr "Все файлы GC/Wii" msgid "All Hexadecimal" msgstr "Все шестнадцатеричные" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Файлы быстрых сохранений (*.sav, *.s##);; Все файлы (*)" @@ -1684,7 +1684,7 @@ msgstr "Сохранения всех игроков синхронизиров msgid "Allow Mismatched Region Settings" msgstr "Разрешить несовпадение настроек региона" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Разрешить отправку статистики об использовании" @@ -1824,7 +1824,7 @@ msgstr "Вы уверены?" msgid "Area Sampling" msgstr "Выборка по площади" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Соотношение сторон" @@ -2197,11 +2197,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Пауза после запуска" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "Файл бэкапа NAND BootMii (*.bin);;Все файлы (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "Файл с ключами BootMii (*.bin);;Все файлы (*)" @@ -2576,8 +2576,8 @@ msgstr "Не удалось изменить злодеев для этого т msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Не удаётся найти Wii Remote по дескриптору {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Невозможно создать сессию сетевой игры, пока игра всё ещё запущена!" @@ -3090,8 +3090,8 @@ msgstr "Настройка вывода" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Подтвердить" @@ -3700,11 +3700,11 @@ msgstr "Другое (растягивание)" msgid "Custom Address Space" msgstr "Другое адресное пространство" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Высота другого соотношения сторон" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Ширина другого соотношения сторон" @@ -4234,11 +4234,11 @@ msgstr "Расстояние" msgid "Distance of travel from neutral position." msgstr "Проходимое расстояние из исходной позиции." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "Вы разрешаете отправку данной информации разработчикам Dolphin?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Вы хотите добавить \"%1\" в список путей к играм?" @@ -4252,7 +4252,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Вы хотите удалить выбранные файлы сохранений (%n шт.)?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Вы хотите остановить текущую эмуляцию?" @@ -4287,8 +4287,8 @@ msgstr "CSV-файл с сигнатурами Dolphin" msgid "Dolphin Signature File" msgstr "Файл с сигнатурами Dolphin" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "TAS-ролики (*.dtm)" @@ -5216,12 +5216,12 @@ msgstr "Введите адрес модуля RSO:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5722,7 +5722,7 @@ msgstr "" "ваш NAND (Инструменты -> Управлять NAND -> Проверить NAND...), затем " "импортируйте файл сохранения ещё раз." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Не удалось инициализировать ядро" @@ -5736,7 +5736,7 @@ msgstr "" "Убедитесь, что ваша видеокарта поддерживает хотя бы D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Не удалось инициализировать классы рендеринга" @@ -5749,7 +5749,7 @@ msgstr "Не удалось установить набор: %1" msgid "Failed to install this title to the NAND." msgstr "Не удалось установить этот продукт в NAND." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5806,12 +5806,12 @@ msgstr "Не удалось изменить Skylander." msgid "Failed to open \"%1\" for writing." msgstr "Не удалось открыть «%1» для записи." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Не удалось открыть «{0}» для записи." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Не удалось открыть '%1'" @@ -5854,7 +5854,7 @@ msgstr "" msgid "Failed to open file." msgstr "Не удалось открыть файл." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Не удалось открыть сервер" @@ -7336,7 +7336,7 @@ msgstr "" msgid "Identity Generation" msgstr "Генерация ID" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7485,11 +7485,11 @@ msgstr "Импорт файлов сохранений" msgid "Import Wii Save..." msgstr "Импортировать сохранение Wii..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Импортирование бэкапа NAND" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7995,8 +7995,8 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT не активирован" @@ -8734,7 +8734,7 @@ msgstr "MemoryCard: вызвано чтение некорректного уч msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: вызвана запись в некорректный участок памяти ({0:#x})" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10173,7 +10173,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Вопрос" @@ -10888,7 +10888,7 @@ msgstr "Сохранить самое старое сохранение" msgid "Save Preset" msgstr "Сохранить предустановку" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Сохранить файл записи как" @@ -11137,7 +11137,7 @@ msgstr "Выбрать образ игры GBA" msgid "Select GBA Saves Path" msgstr "Выберите путь к файлам сохранений GBA" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -11149,7 +11149,7 @@ msgstr "Выбрать последнее сохранение" msgid "Select Load Path" msgstr "Выберите путь к загрузке" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -11251,8 +11251,8 @@ msgstr "Выберите папку" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Выберите файл" @@ -11280,7 +11280,7 @@ msgstr "Выбрать e-карточки" msgid "Select the RSO module address:" msgstr "Выберите адрес модуля RSO:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Выберите файл записи, который следует воспроизвести" @@ -11312,7 +11312,7 @@ msgstr "Выбранный стэк вызовов потока" msgid "Selected thread context" msgstr "Выбранный контекст потока" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11320,7 +11320,7 @@ msgstr "" "Выбирает используемый аппаратный адаптер.

%1 не " "поддерживает эту возможность." -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11432,15 +11432,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Выбирает, какой графический API будет задействован.

Программный " -"рендеринг невероятно медленный и полезен только для отладки, поэтому " -"рекомендуется использовать любой другой бэкенд. Различные игры на разных ГП " -"ведут себя по-разному на каждом бэкенде, поэтому для наилучшей эмуляции " -"рекомендуется попробовать все и выбрать тот, с которым меньше проблем." -"

Если не уверены – выберите OpenGL." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -15081,7 +15074,7 @@ msgstr "Неверная версия" msgid "Wrote to \"%1\"." msgstr "Записано в «%1»." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Записано в «{0}»." diff --git a/Languages/po/sr.po b/Languages/po/sr.po index dd16f27789..96688fecbf 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: nikolassj, 2011\n" "Language-Team: Serbian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1085,8 +1085,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1290,7 +1290,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1529,8 +1529,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1558,7 +1558,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2397,8 +2397,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2887,8 +2887,8 @@ msgstr "" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "" @@ -3420,11 +3420,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3922,11 +3922,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3940,7 +3940,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "" @@ -3975,8 +3975,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "" @@ -4795,12 +4795,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5273,7 +5273,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5284,7 +5284,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5297,7 +5297,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5348,12 +5348,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5392,7 +5392,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6742,7 +6742,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6858,11 +6858,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7345,8 +7345,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8057,7 +8057,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9411,7 +9411,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Pitanje " @@ -10107,7 +10107,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10346,7 +10346,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10358,7 +10358,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10460,8 +10460,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10489,7 +10489,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10521,13 +10521,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10592,7 +10592,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13867,7 +13867,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/sv.po b/Languages/po/sv.po index 4729ce6bd4..9f71b90b27 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Arve Eriksson <031299870@telia.com>, 2017,2019-2022,2024\n" "Language-Team: Swedish (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1116,8 +1116,8 @@ msgstr "" msgid "> Greater-than" msgstr "> Större än" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "En nätspelssession pågår redan!" @@ -1154,7 +1154,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "En snabbsparning kan inte laddas utan att ange ett spel att starta." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1364,7 +1364,7 @@ msgstr "Aktiv trådkö" msgid "Active threads" msgstr "Aktiva trådar" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "Adapter" @@ -1622,8 +1622,8 @@ msgstr "Alla GC/Wii-filer" msgid "All Hexadecimal" msgstr "Alla hexadecimala" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Alla snabbsparningar (*.sav *.s##);; Alla filer (*)" @@ -1651,7 +1651,7 @@ msgstr "Alla spelares sparfiler har synkroniserats." msgid "Allow Mismatched Region Settings" msgstr "Tillåt regionsinställningar som inte matchar" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Tillåt rapportering av användningsstatistik" @@ -1791,7 +1791,7 @@ msgstr "Är du säker?" msgid "Area Sampling" msgstr "Områdessampling" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "Bildförhållande" @@ -2163,11 +2163,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Pausa vid start" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii-NAND-kopia (*bin);;Alla filer (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii-nyckelfil (*bin);;Alla filer (*)" @@ -2523,8 +2523,8 @@ msgstr "Det går inte att redigera skurkar för den här trofén!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Kan inte hitta Wii-fjärrkontrollen med anslutnings-handle {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 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!" @@ -3086,8 +3086,8 @@ msgstr "Konfigurera utmatning" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Bekräfta" @@ -3684,11 +3684,11 @@ msgstr "Anpassad (utsträckt)" msgid "Custom Address Space" msgstr "Anpassat adressutrymme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Höjd för anpassat bildförhållande" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Bredd för anpassat bildförhållande" @@ -4215,12 +4215,12 @@ msgstr "Avstånd" msgid "Distance of travel from neutral position." msgstr "Förflyttningsavstånd från neutral position." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Godkänner du att Dolphin rapporterar information till Dolphins utvecklare?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "Vill du lägga till \"%1\" i listan av spelsökvägar?" @@ -4234,7 +4234,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "Vill du radera denna/dessa %n markerade sparfil(er)?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Vill du stoppa den aktuella emuleringen?" @@ -4269,8 +4269,8 @@ msgstr "Dolphin-signatur-CSV-fil" msgid "Dolphin Signature File" msgstr "Dolphin-signaturfil" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin-TAS-filmer (*.dtm)" @@ -5177,12 +5177,12 @@ msgstr "Ange RSO-moduladressen:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5680,7 +5680,7 @@ msgstr "" "minnet (Verktyg -> Hantera NAND -> Kontrollera NAND-minne...) och importera " "sedan sparfilen igen." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Misslyckades att initialisera kärnan" @@ -5694,7 +5694,7 @@ msgstr "" "Kontrollera att ditt grafikkort stödjer minst D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Misslyckades att initialisera renderarklasser" @@ -5707,7 +5707,7 @@ msgstr "Misslyckades att installera paket: %1" msgid "Failed to install this title to the NAND." msgstr "Misslyckades att installera denna titel till NAND-minnet." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5760,12 +5760,12 @@ msgstr "Misslyckades att modifiera Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Misslyckades att öppna \"%1\" för att skriva." -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "Misslyckades att öppna \"{0}\" för att skriva." #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "Misslyckades att öppna '%1'" @@ -5806,7 +5806,7 @@ msgstr "" msgid "Failed to open file." msgstr "Kunde inte öppna fil." -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "Misslyckades att öppna servern" @@ -7255,7 +7255,7 @@ msgstr "" msgid "Identity Generation" msgstr "Identitetsgenerering" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7407,11 +7407,11 @@ msgstr "Importera sparfil(er)" msgid "Import Wii Save..." msgstr "Importera Wii-sparning…" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "Importerar NAND-kopia" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7917,8 +7917,8 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT är inte aktivt" @@ -8655,7 +8655,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:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10074,7 +10074,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Fråga" @@ -10786,7 +10786,7 @@ msgstr "Spara äldsta snabbsparning" msgid "Save Preset" msgstr "Spara förinställningar" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "Spara inspelning som" @@ -11032,7 +11032,7 @@ msgstr "Välj GBA-ROM" msgid "Select GBA Saves Path" msgstr "Välj GBA-sparfilssökväg" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -11044,7 +11044,7 @@ msgstr "Välj senaste snabbsparning" msgid "Select Load Path" msgstr "Välj laddningssökväg" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -11146,8 +11146,8 @@ msgstr "Välj en mapp" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Välj en fil" @@ -11175,7 +11175,7 @@ msgstr "Välj e-Readerkort" msgid "Select the RSO module address:" msgstr "Välj RSO-modulens adress:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "Välj inspelning att spela upp" @@ -11207,7 +11207,7 @@ msgstr "Markerad tråds anropsstack" msgid "Selected thread context" msgstr "Markerad tråds kontext" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11215,7 +11215,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:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11289,16 +11289,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"Väljer vilket grafik-API som ska användas internt." -"

Programvarurenderaren är extremt långsam och är därför bara " -"användbar för att felsöka, så det rekommenderas att du väljer en annan " -"backend. Beroende på spel och grafikprocessor kan varje backend bete sig " -"lite annorlunda, så för att få den bästa upplevelsen rekommenderas det att " -"prova var och en och välja den backend som har minst problem." -"

Om du är osäker kan du välja OpenGL." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -14927,7 +14919,7 @@ msgstr "Fel revision" msgid "Wrote to \"%1\"." msgstr "Skrev till \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "Skrev till \"{0}\"." diff --git a/Languages/po/tr.po b/Languages/po/tr.po index 1be0a994fe..23385a5b03 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ahmet Emin, 2024\n" "Language-Team: Turkish (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1124,8 +1124,8 @@ msgstr "" msgid "> Greater-than" msgstr "> -dan/-den büyük" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "Bir NetPlay Oturumu halihazırda devam ediyor!" @@ -1162,7 +1162,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "Başlatılacak oyun belirtilmeden 'kaydetme durumu' yüklenemez." -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1369,7 +1369,7 @@ msgstr "Etkin iş parçacığı sırası" msgid "Active threads" msgstr "Etkin iş parçacıkları" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "GPU" @@ -1626,8 +1626,8 @@ msgstr "Tüm GC/Wii dosyaları" msgid "All Hexadecimal" msgstr "Tüm Onaltılık" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "Tüm Kayıt Durumları (*.sav *.s##);; Tüm Dosyalar (*)" @@ -1655,7 +1655,7 @@ msgstr "Tüm oyuncuların kayıtları senkronize edildi." msgid "Allow Mismatched Region Settings" msgstr "Uyumsuz Bölge Ayarlarına İzin Ver" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "Kullanım İstatistikleri Raporlamasına İzin Ver" @@ -1796,7 +1796,7 @@ msgstr "Emin misiniz?" msgid "Area Sampling" msgstr "Alan Örnekleme" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "En-Boy Oranı" @@ -2163,11 +2163,11 @@ msgstr "" msgid "Boot to Pause" msgstr "Önyüklendiğinde Duraklat" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND yedekleme dosyası (*.bin);;Tüm Dosyalar (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii anahtarları dosyası (*.bin);;Tüm Dosyalar (*)" @@ -2523,8 +2523,8 @@ msgstr "Bu kupa için kötü karakterler düzenlenemez!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "Bağlantı tutamacına göre Wii Remote bulunamıyor {0:02x}" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "Bir oyun hâlâ çalışırken bir NetPlay Oturumu başlatılamaz!" @@ -3034,8 +3034,8 @@ msgstr "Çıktıları Yapılandır" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "Onayla" @@ -3646,11 +3646,11 @@ msgstr "" msgid "Custom Address Space" msgstr "Özel Adres Alanı" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "Özel En Boy Oranı Yüksekliği" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "Özel En Boy Oranı Genişliği" @@ -4178,13 +4178,13 @@ msgstr "Mesafe" msgid "Distance of travel from neutral position." msgstr "Nötr pozisyondan seyahat mesafesi." -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" "Dolphin'in geliştiricilerine bilgi bildirmesi için Dolphin'e yetki veriyor " "musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "\"%1\"yi Oyun Dizinleri listesine eklemek istiyor musun?" @@ -4198,7 +4198,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "%n seçili kayıt dosyasını silmek istiyor musun?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "Mevcut öykünmeyi durdurmak istiyor musun?" @@ -4233,8 +4233,8 @@ msgstr "Dolphin İmza CSV Dosyası" msgid "Dolphin Signature File" msgstr "Dolphin İmza Dosyası" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS Filmleri (*.dtm)" @@ -5157,12 +5157,12 @@ msgstr "RSO modül adresini girin:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5654,7 +5654,7 @@ msgstr "" "dosyalara erişimi engelliyor olabilir. NAND'ınızı onarmayı deneyin (Araçlar -" "> NAND'ı Yönet -> NAND'ı Kontrol Et...), ardından kaydı tekrar içe aktarın." -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "Çekirdek başlatılamadı" @@ -5668,7 +5668,7 @@ msgstr "" "Ekran kartınızın en az D3D 10.0 desteklediğinden emin olun\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "Görüntü işleyici sınıfları başlatılamadı" @@ -5681,7 +5681,7 @@ msgstr "Paket kurulamadı: %1" msgid "Failed to install this title to the NAND." msgstr "Bu başlık NAND'a kurulamadı." -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5736,12 +5736,12 @@ msgstr "Skylander modifiye edilemedi!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5780,7 +5780,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7246,11 +7246,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "Wii Kayıtlarını Al..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7733,8 +7733,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8448,7 +8448,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9804,7 +9804,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "Soru" @@ -10500,7 +10500,7 @@ msgstr "En Eski Durumu kaydet" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10741,7 +10741,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10753,7 +10753,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10855,8 +10855,8 @@ msgstr "Bir Dizin Seç" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "Bir Dosya Seç" @@ -10884,7 +10884,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10916,13 +10916,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10987,7 +10987,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -14285,7 +14285,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index 79b8b39732..2a200e9f39 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 天绝星 , 2015-2024\n" "Language-Team: Chinese (China) (http://app.transifex.com/dolphinemu/dolphin-" @@ -1116,8 +1116,8 @@ msgstr "警告无效的基地址,默认 msgid "> Greater-than" msgstr "> 大于" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "已经有一个联机会话正在进行!" @@ -1151,7 +1151,7 @@ msgstr "一些使颜色更准确的功能,使其与 Wii 和 GC 游戏的色彩 msgid "A save state cannot be loaded without specifying a game to launch." msgstr "载入保存状态必须指定要启动的游戏" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1353,7 +1353,7 @@ msgstr "活动线程队列" msgid "Active threads" msgstr "活动线程" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "适配器" @@ -1625,8 +1625,8 @@ msgstr "所有 GC/Wii 文件" msgid "All Hexadecimal" msgstr "全十六进制" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "所有状态存档 (*.sav *.s##);; 所有文件 (*)" @@ -1654,7 +1654,7 @@ msgstr "所有玩家存档已同步。" msgid "Allow Mismatched Region Settings" msgstr "允许不匹配的区域设置" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "允许使用情况统计报告" @@ -1776,7 +1776,7 @@ msgstr "确定要删除这个包吗?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "确定要退出 RetroAchievements 吗?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1784,7 +1784,7 @@ msgstr "确定要退出联机吗?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "确定要关闭硬核模式吗?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -1794,7 +1794,7 @@ msgstr "确定?" msgid "Area Sampling" msgstr "区域取样" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "宽高比" @@ -2165,11 +2165,11 @@ msgstr "" msgid "Boot to Pause" msgstr "引导后暂停" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "BootMii NAND 备份文件 (*.bin);; 所有文件 (*)" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "BootMii 密钥文件 (*.bin);; 所有文件 (*)" @@ -2533,8 +2533,8 @@ msgstr "无法对此奖杯编辑反派角色!" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "不能按照连接句柄 {0:02x} 找到 Wii 遥控器" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "游戏运行时无法启动联机会话!" @@ -3081,19 +3081,19 @@ msgstr "配置输出" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "确定" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "关闭硬核模式时确认" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" -msgstr "" +msgstr "退出时确认" #: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:202 msgid "Confirm backend change" @@ -3666,11 +3666,11 @@ msgstr "自定义(拉伸)" msgid "Custom Address Space" msgstr "自定义地址空间" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "自定义宽高比高度" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "自定义宽高比宽度" @@ -4186,11 +4186,11 @@ msgstr "距离" msgid "Distance of travel from neutral position." msgstr "从中间位置移动的距离。" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "是否授权 Dolphin 向开发者报告信息?" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "是否要添加 \"%1\" 到游戏路径列表?" @@ -4204,7 +4204,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "是否要删除 %n 已选定的存档文件?" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "您确定是否停止当前模拟?" @@ -4239,8 +4239,8 @@ msgstr "Dolphin 签名 CSV 文件" msgid "Dolphin Signature File" msgstr "Dolphin 签名文件" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 电影 (*.dtm)" @@ -5149,12 +5149,12 @@ msgstr "请输入 RSO 模块地址:" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5644,7 +5644,7 @@ msgstr "" "导入存档文件失败。您的 NAND 可能已损坏,或某些因素阻止访问里面的文件。请尝试" "修复 NAND(工具 -> 管理 NAND -> 校验 NAND...),然后再次导入存档。" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "初始化核心失败" @@ -5658,7 +5658,7 @@ msgstr "" "请确保你的显卡至少支持 D3D 10.0\n" "{0}" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "初始化渲染器类失败" @@ -5671,7 +5671,7 @@ msgstr "安装包失败: %1" msgid "Failed to install this title to the NAND." msgstr "无法将该游戏安装到 NAND。" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5724,12 +5724,12 @@ msgstr "修改 Skylander 失败!" msgid "Failed to open \"%1\" for writing." msgstr "打开 “%1” 进行写入失败。" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "打开 “{0}” 进行写入失败。" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "无法打开 '%1'" @@ -5770,7 +5770,7 @@ msgstr "" msgid "Failed to open file." msgstr "打开文件失败。" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "打开服务器失败" @@ -7222,7 +7222,7 @@ msgstr "" msgid "Identity Generation" msgstr "身份标识生成" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -7330,6 +7330,9 @@ msgid "" "graphical effects or gameplay-related features.

If " "unsure, leave this checked." msgstr "" +"忽略 CPU 对 EFB 的任何读写请求。

在一些游戏中可提高性能,但会禁用所有" +"基于 EFB 的图形效果或与游戏相关的特性。

如无法确定," +"请选中此项。" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:93 msgid "Immediately Present XFB" @@ -7367,11 +7370,11 @@ msgstr "导入存档文件" msgid "Import Wii Save..." msgstr "导入 Wii 存档..." -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "正在导入 NAND 备份" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7872,8 +7875,8 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "JIT 未激活" @@ -8609,7 +8612,7 @@ msgstr "MemoryCard: 在无效源地址 ({0:#x}) 中读取调用" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "MemoryCard: 在无效目标地址 ({0:#x}) 中写入调用" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -10012,7 +10015,7 @@ msgstr "DPLII 解码器的质量。质量越高音频延迟越大。" #: Source/Core/Common/MsgHandler.cpp:60 #: Source/Core/DolphinQt/ConvertDialog.cpp:454 #: Source/Core/DolphinQt/GCMemcardManager.cpp:661 -#: Source/Core/DolphinQt/MainWindow.cpp:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "询问" @@ -10745,7 +10748,7 @@ msgstr "保存到最早状态存档" msgid "Save Preset" msgstr "保存预设" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "录制文件另存为" @@ -10986,7 +10989,7 @@ msgstr "选择 GBA ROM" msgid "Select GBA Saves Path" msgstr "选择 GBA 存档路径" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "选择密钥文件 (OTP/SEEPROM 转储)" @@ -10998,7 +11001,7 @@ msgstr "选择最近状态" msgid "Select Load Path" msgstr "选择加载路径" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "选择 NAND 备份" @@ -11100,8 +11103,8 @@ msgstr "选择目录" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "选择文件" @@ -11129,7 +11132,7 @@ msgstr "选择 e-Reader 卡" msgid "Select the RSO module address:" msgstr "选择 RSO 模块地址:" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "选择要播放的录制文件" @@ -11161,7 +11164,7 @@ msgstr "选定的线程调用栈" msgid "Selected thread context" msgstr "选定的线程上下文" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

%1 doesn't " "support this feature." @@ -11169,7 +11172,7 @@ msgstr "" "选择要使用的硬件适配器。

%1 不支持此功能。" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:367 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:369 msgid "" "Selects a hardware adapter to use.

If unsure, " "select the first one." @@ -11262,12 +11265,8 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" -"选择在内部使用的图形接口。

软件渲染器非常慢,仅用于调试,所以推荐其他" -"任一后端。各后端具体表现因游戏与 GPU 而异,因此建议逐个尝试一下并选择问题最少" -"的一个以达到最好的模拟效果。

如无法确定,请选" -"择“OpenGL”。" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -14813,7 +14812,7 @@ msgstr "错误修订版" msgid "Wrote to \"%1\"." msgstr "已写入 “%1”。" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "已写入 “{0}”。" diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index edf9fe302c..a418292b30 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-11-01 15:00+0100\n" +"POT-Creation-Date: 2024-11-10 12:23+0100\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/dolphinemu/dolphin-" @@ -1090,8 +1090,8 @@ msgstr "" msgid "> Greater-than" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1563 -#: Source/Core/DolphinQt/MainWindow.cpp:1630 +#: Source/Core/DolphinQt/MainWindow.cpp:1559 +#: Source/Core/DolphinQt/MainWindow.cpp:1626 msgid "A NetPlay Session is already in progress!" msgstr "" @@ -1119,7 +1119,7 @@ msgstr "" msgid "A save state cannot be loaded without specifying a game to launch." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:967 +#: Source/Core/DolphinQt/MainWindow.cpp:965 msgid "" "A shutdown is already in progress. Unsaved data may be lost if you stop the " "current emulation before it completes. Force stop?" @@ -1295,7 +1295,7 @@ msgstr "" msgid "Active threads" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:316 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 msgid "Adapter" msgstr "" @@ -1534,8 +1534,8 @@ msgstr "" msgid "All Hexadecimal" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "All Save States (*.sav *.s##);; All Files (*)" msgstr "" @@ -1563,7 +1563,7 @@ msgstr "" msgid "Allow Mismatched Region Settings" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:261 +#: Source/Core/DolphinQt/Main.cpp:262 msgid "Allow Usage Statistics Reporting" msgstr "" @@ -1699,7 +1699,7 @@ msgstr "" msgid "Area Sampling" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:318 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:320 msgid "Aspect Ratio" msgstr "" @@ -2054,11 +2054,11 @@ msgstr "" msgid "Boot to Pause" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1790 +#: Source/Core/DolphinQt/MainWindow.cpp:1786 msgid "BootMii NAND backup file (*.bin);;All Files (*)" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1816 +#: Source/Core/DolphinQt/MainWindow.cpp:1812 msgid "BootMii keys file (*.bin);;All Files (*)" msgstr "" @@ -2402,8 +2402,8 @@ msgstr "" msgid "Can't find Wii Remote by connection handle {0:02x}" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1556 -#: Source/Core/DolphinQt/MainWindow.cpp:1623 +#: Source/Core/DolphinQt/MainWindow.cpp:1552 +#: Source/Core/DolphinQt/MainWindow.cpp:1619 msgid "Can't start a NetPlay Session while a game is still running!" msgstr "" @@ -2892,8 +2892,8 @@ msgstr "設定輸出" #: Source/Core/DolphinQt/ConvertDialog.cpp:407 #: Source/Core/DolphinQt/GameList/GameList.cpp:647 #: Source/Core/DolphinQt/GameList/GameList.cpp:829 -#: Source/Core/DolphinQt/MainWindow.cpp:966 -#: Source/Core/DolphinQt/MainWindow.cpp:1756 +#: Source/Core/DolphinQt/MainWindow.cpp:964 +#: Source/Core/DolphinQt/MainWindow.cpp:1752 #: Source/Core/DolphinQt/WiiUpdate.cpp:142 msgid "Confirm" msgstr "確認" @@ -3425,11 +3425,11 @@ msgstr "" msgid "Custom Address Space" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:322 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:324 msgid "Custom Aspect Ratio Height" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:321 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:323 msgid "Custom Aspect Ratio Width" msgstr "" @@ -3927,11 +3927,11 @@ msgstr "" msgid "Distance of travel from neutral position." msgstr "" -#: Source/Core/DolphinQt/Main.cpp:263 +#: Source/Core/DolphinQt/Main.cpp:264 msgid "Do you authorize Dolphin to report information to Dolphin's developers?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1757 +#: Source/Core/DolphinQt/MainWindow.cpp:1753 msgid "Do you want to add \"%1\" to the list of Game Paths?" msgstr "" @@ -3945,7 +3945,7 @@ msgctxt "" msgid "Do you want to delete the %n selected save file(s)?" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:970 +#: Source/Core/DolphinQt/MainWindow.cpp:968 msgid "Do you want to stop the current emulation?" msgstr "您要停止目前的模擬嗎?" @@ -3980,8 +3980,8 @@ msgstr "" msgid "Dolphin Signature File" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Dolphin TAS Movies (*.dtm)" msgstr "Dolphin TAS 影片 (*.dtm)" @@ -4800,12 +4800,12 @@ msgstr "" #: Source/Core/DolphinQt/Main.cpp:212 Source/Core/DolphinQt/Main.cpp:228 #: Source/Core/DolphinQt/Main.cpp:235 Source/Core/DolphinQt/MainWindow.cpp:315 #: Source/Core/DolphinQt/MainWindow.cpp:323 -#: Source/Core/DolphinQt/MainWindow.cpp:1146 -#: Source/Core/DolphinQt/MainWindow.cpp:1555 -#: Source/Core/DolphinQt/MainWindow.cpp:1562 -#: Source/Core/DolphinQt/MainWindow.cpp:1622 -#: Source/Core/DolphinQt/MainWindow.cpp:1629 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 +#: Source/Core/DolphinQt/MainWindow.cpp:1551 +#: Source/Core/DolphinQt/MainWindow.cpp:1558 +#: Source/Core/DolphinQt/MainWindow.cpp:1618 +#: Source/Core/DolphinQt/MainWindow.cpp:1625 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/MenuBar.cpp:222 Source/Core/DolphinQt/MenuBar.cpp:1275 #: Source/Core/DolphinQt/MenuBar.cpp:1365 #: Source/Core/DolphinQt/MenuBar.cpp:1388 @@ -5278,7 +5278,7 @@ msgid "" "Manage NAND -> Check NAND...), then import the save again." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1146 +#: Source/Core/DolphinQt/MainWindow.cpp:1143 msgid "Failed to init core" msgstr "" @@ -5289,7 +5289,7 @@ msgid "" "{0}" msgstr "" -#: Source/Core/VideoCommon/VideoBackendBase.cpp:372 +#: Source/Core/VideoCommon/VideoBackendBase.cpp:378 msgid "Failed to initialize renderer classes" msgstr "" @@ -5302,7 +5302,7 @@ msgstr "" msgid "Failed to install this title to the NAND." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1657 +#: Source/Core/DolphinQt/MainWindow.cpp:1653 msgid "" "Failed to listen on port %1. Is another instance of the NetPlay server " "running?" @@ -5353,12 +5353,12 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:457 +#: Source/Android/jni/MainAndroid.cpp:458 msgid "Failed to open \"{0}\" for writing." msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:583 -#: Source/Core/DolphinQt/MainWindow.cpp:1735 +#: Source/Core/DolphinQt/MainWindow.cpp:1731 #: Source/Core/DolphinQt/RenderWidget.cpp:125 msgid "Failed to open '%1'" msgstr "" @@ -5397,7 +5397,7 @@ msgstr "" msgid "Failed to open file." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1656 +#: Source/Core/DolphinQt/MainWindow.cpp:1652 msgid "Failed to open server" msgstr "" @@ -6747,7 +6747,7 @@ msgstr "" msgid "Identity Generation" msgstr "" -#: Source/Core/DolphinQt/Main.cpp:265 +#: Source/Core/DolphinQt/Main.cpp:266 msgid "" "If authorized, Dolphin can collect data on its performance, feature usage, " "and configuration, as well as data on your system's hardware and operating " @@ -6863,11 +6863,11 @@ msgstr "" msgid "Import Wii Save..." msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1799 +#: Source/Core/DolphinQt/MainWindow.cpp:1795 msgid "Importing NAND backup" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1809 +#: Source/Core/DolphinQt/MainWindow.cpp:1805 #, c-format msgid "" "Importing NAND backup\n" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:431 -#: Source/Android/jni/MainAndroid.cpp:447 +#: Source/Android/jni/MainAndroid.cpp:432 +#: Source/Android/jni/MainAndroid.cpp:448 msgid "JIT is not active" msgstr "" @@ -8065,7 +8065,7 @@ msgstr "" msgid "MemoryCard: Write called with invalid destination address ({0:#x})" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1780 +#: Source/Core/DolphinQt/MainWindow.cpp:1776 msgid "" "Merging a new NAND over your currently selected NAND will overwrite any " "channels and savegames that already exist. This process is not reversible, " @@ -9419,7 +9419,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:1779 +#: Source/Core/DolphinQt/MainWindow.cpp:1775 msgid "Question" msgstr "問題" @@ -10115,7 +10115,7 @@ msgstr "" msgid "Save Preset" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1918 +#: Source/Core/DolphinQt/MainWindow.cpp:1912 msgid "Save Recording File As" msgstr "" @@ -10354,7 +10354,7 @@ msgstr "" msgid "Select GBA Saves Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1815 +#: Source/Core/DolphinQt/MainWindow.cpp:1811 msgid "Select Keys File (OTP/SEEPROM Dump)" msgstr "" @@ -10366,7 +10366,7 @@ msgstr "" msgid "Select Load Path" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1789 +#: Source/Core/DolphinQt/MainWindow.cpp:1785 msgid "Select NAND Backup" msgstr "" @@ -10468,8 +10468,8 @@ msgstr "" #: Source/Core/DolphinQt/GBAWidget.cpp:217 #: Source/Core/DolphinQt/GBAWidget.cpp:249 #: Source/Core/DolphinQt/MainWindow.cpp:788 -#: Source/Core/DolphinQt/MainWindow.cpp:1426 -#: Source/Core/DolphinQt/MainWindow.cpp:1438 +#: Source/Core/DolphinQt/MainWindow.cpp:1422 +#: Source/Core/DolphinQt/MainWindow.cpp:1434 msgid "Select a File" msgstr "" @@ -10497,7 +10497,7 @@ msgstr "" msgid "Select the RSO module address:" msgstr "" -#: Source/Core/DolphinQt/MainWindow.cpp:1838 +#: Source/Core/DolphinQt/MainWindow.cpp:1834 msgid "Select the Recording File to Play" msgstr "" @@ -10529,13 +10529,13 @@ msgstr "" msgid "Selected thread context" msgstr "" -#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:370 +#: Source/Core/DolphinQt/Config/Graphics/GeneralWidget.cpp:372 msgid "" "Selects a hardware adapter to use.

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

If unsure, " "select the first one." @@ -10600,7 +10600,7 @@ msgid "" "backends are recommended. Different games and different GPUs will behave " "differently on each backend, so for the best emulation experience it is " "recommended to try each and select the backend that is least problematic." -"

If unsure, select OpenGL." +"

If unsure, select %1." msgstr "" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 @@ -13877,7 +13877,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:463 +#: Source/Android/jni/MainAndroid.cpp:464 msgid "Wrote to \"{0}\"." msgstr "" From ef71c7545873f757db700d0cc6db0c52005e1e06 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 7 Nov 2024 21:11:58 -0500 Subject: [PATCH 13/40] Add Config Changed Callback for Hardcore Mode --- Source/Core/Core/AchievementManager.cpp | 2 ++ .../Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index c724476ad7..73ace1af34 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -16,6 +16,7 @@ #include "Common/Assert.h" #include "Common/BitUtils.h" #include "Common/CommonPaths.h" +#include "Common/Config/Config.h" #include "Common/FileUtil.h" #include "Common/IOFile.h" #include "Common/Image.h" @@ -64,6 +65,7 @@ void AchievementManager::Init() [](const char* message, const rc_client_t* client) { INFO_LOG_FMT(ACHIEVEMENTS, "{}", message); }); + Config::AddConfigChangedCallback([this] { SetHardcoreMode(); }); SetHardcoreMode(); m_queue.Reset("AchievementManagerQueue", [](const std::function& func) { func(); }); m_image_queue.Reset("AchievementManagerImageQueue", diff --git a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp index 93b9f35af3..75152c09ff 100644 --- a/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp +++ b/Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp @@ -329,7 +329,6 @@ void AchievementSettingsWidget::ToggleProgress() void AchievementSettingsWidget::UpdateHardcoreMode() { - AchievementManager::GetInstance().SetHardcoreMode(); if (Config::Get(Config::RA_HARDCORE_ENABLED)) { Settings::Instance().SetDebugModeEnabled(false); From 1c7d9ad300b47e7dcedb23c5c698adb2ef607d3b Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 10 Nov 2024 14:52:30 +0100 Subject: [PATCH 14/40] docs: Clarify wia_except_list_t padding in uncompressed groups https://bugs.dolphin-emu.org/issues/13671 --- docs/WiaAndRvz.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/WiaAndRvz.md b/docs/WiaAndRvz.md index a80136418c..1328d83be6 100644 --- a/docs/WiaAndRvz.md +++ b/docs/WiaAndRvz.md @@ -126,7 +126,7 @@ A `wia_group_t` normally contains `chunk_size` bytes of decompressed data (or `c |Type and name|Description| |--|--| |`u32 data_off4`|The offset in the file where the compressed data is stored, divided by 4.| -|`u32 data_size`|The size of the compressed data, including any `wia_except_list_t` structs. 0 is a special case meaning that every byte of the decompressed data is `0x00` and the `wia_except_list_t` structs (if there are supposed to be any) contain 0 exceptions.| +|`u32 data_size`|The size of the compressed data, including any `wia_except_list_t` structs, and including any padding that is required after the `wia_except_list_t` structs when using the compression method NONE or PURGE. 0 is a special case meaning that every byte of the decompressed data is `0x00` and the `wia_except_list_t` structs (if there are supposed to be any) contain 0 exceptions.| ## `wia_exception_t` @@ -152,7 +152,7 @@ For memory management reasons, programs which read WIA files might place a limit |`u16 n_exceptions`|The number of `wia_exception_t` structs.| |`wia_exception_t exception[n_exceptions]`|Each `wia_exception_t` describes one difference between the hashes obtained by hashing the partition data and the original hashes.| -Somewhat ironically, there are exceptions to how `wia_except_list_t` structs are handled: +Somewhat ironically, there are exceptions to how `wia_except_list_t` structs are handled depending on what compression method is used for the group's data: - For the compression method PURGE, the `wia_except_list_t` structs are stored uncompressed (in other words, before the first `wia_segment_t`). For BZIP2, LZMA and LZMA2, they are compressed along with the rest of the data. - For the compression methods NONE and PURGE, if the end offset of the last ``wia_except_list_t`` is not evenly divisible by 4, padding is inserted after it so that the data afterwards will start at a 4 byte boundary. This padding is not inserted for the other compression methods. @@ -185,12 +185,12 @@ RVZ is a file format which is closely based on WIA. The differences are as follo Compared to `wia_group_t`, `rvz_group_t` changes the meaning of the most significant bit of `data_size` and adds one additional attribute. -"Compressed data" below means the data as it is stored in the file. When compression is disabled, this "compressed data" is actually not compressed. +"Compressed data" below means the data as it is stored in the file. When the compression method is NONE, this "compressed data" is actually not compressed. |Type and name|Description| |--|--| |`u32 data_off4`|The offset in the file where the compressed data is stored, divided by 4.| -|`u32 data_size`|The most significant bit is 1 if the data is compressed using the compression method indicated in `wia_disc_t`, and 0 if it is not compressed. The lower 31 bits are the size of the compressed data, including any `wia_except_list_t` structs. The lower 31 bits being 0 is a special case meaning that every byte of the decompressed and unpacked data is `0x00` and the `wia_except_list_t` structs (if there are supposed to be any) contain 0 exceptions.| +|`u32 data_size`|The most significant bit is 1 if the data is stored using the compression method indicated in `wia_disc_t`, and 0 if it is stored using the compression method NONE. The lower 31 bits are the size of the compressed data, including any `wia_except_list_t` structs, and including any padding that is required after the `wia_except_list_t` structs when using the compression method NONE. The lower 31 bits being 0 is a special case meaning that every byte of the decompressed and unpacked data is `0x00` and the `wia_except_list_t` structs (if there are supposed to be any) contain 0 exceptions.| |`u32 rvz_packed_size`|The size after decompressing but before decoding the RVZ packing. If this is 0, RVZ packing is not used for this group.| ## RVZ packing From 9b6555c49c954be6286fd1b84cf7c4b7c922a58c Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sat, 26 Oct 2024 23:04:53 -0400 Subject: [PATCH 15/40] Force NetPlay Clients to Host Hardcore Status If the host is in hardcore mode, all joining players will be set to hardcore mode; if not, all joining players will be set to softcore. This ensures all players have the same settings and remain synchroized. --- Source/Core/Core/ConfigLoaders/NetPlayConfigLoader.cpp | 4 ++++ Source/Core/Core/NetPlayClient.cpp | 1 + Source/Core/Core/NetPlayProto.h | 1 + Source/Core/Core/NetPlayServer.cpp | 3 +++ 4 files changed, 9 insertions(+) diff --git a/Source/Core/Core/ConfigLoaders/NetPlayConfigLoader.cpp b/Source/Core/Core/ConfigLoaders/NetPlayConfigLoader.cpp index 75b1bda454..5f772fd0e3 100644 --- a/Source/Core/Core/ConfigLoaders/NetPlayConfigLoader.cpp +++ b/Source/Core/Core/ConfigLoaders/NetPlayConfigLoader.cpp @@ -11,6 +11,7 @@ #include "Common/Config/Config.h" #include "Common/FileUtil.h" +#include "Core/Config/AchievementSettings.h" #include "Core/Config/GraphicsSettings.h" #include "Core/Config/MainSettings.h" #include "Core/Config/SYSCONFSettings.h" @@ -33,6 +34,9 @@ public: layer->Set(Config::MAIN_CPU_THREAD, m_settings.cpu_thread); layer->Set(Config::MAIN_CPU_CORE, m_settings.cpu_core); layer->Set(Config::MAIN_ENABLE_CHEATS, m_settings.enable_cheats); +#ifdef USE_RETRO_ACHIEVEMENTS + layer->Set(Config::RA_HARDCORE_ENABLED, m_settings.enable_hardcore); +#endif // USE_RETRO_ACHIEVEMENTS layer->Set(Config::MAIN_GC_LANGUAGE, m_settings.selected_language); layer->Set(Config::MAIN_OVERRIDE_REGION_SETTINGS, m_settings.override_region_settings); layer->Set(Config::MAIN_DSP_HLE, m_settings.dsp_hle); diff --git a/Source/Core/Core/NetPlayClient.cpp b/Source/Core/Core/NetPlayClient.cpp index 43701c75ef..82c594dff6 100644 --- a/Source/Core/Core/NetPlayClient.cpp +++ b/Source/Core/Core/NetPlayClient.cpp @@ -848,6 +848,7 @@ void NetPlayClient::OnStartGame(sf::Packet& packet) packet >> m_net_settings.cpu_thread; packet >> m_net_settings.cpu_core; packet >> m_net_settings.enable_cheats; + packet >> m_net_settings.enable_hardcore; packet >> m_net_settings.selected_language; packet >> m_net_settings.override_region_settings; packet >> m_net_settings.dsp_enable_jit; diff --git a/Source/Core/Core/NetPlayProto.h b/Source/Core/Core/NetPlayProto.h index a20aee39ce..86f54d458d 100644 --- a/Source/Core/Core/NetPlayProto.h +++ b/Source/Core/Core/NetPlayProto.h @@ -35,6 +35,7 @@ struct NetSettings bool cpu_thread = false; PowerPC::CPUCore cpu_core{}; bool enable_cheats = false; + bool enable_hardcore = false; int selected_language = 0; bool override_region_settings = false; bool dsp_hle = false; diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index 0044ce903e..d4a55cf83e 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -31,6 +31,7 @@ #include "Common/UPnP.h" #include "Common/Version.h" +#include "Core/AchievementManager.h" #include "Core/ActionReplay.h" #include "Core/Boot/Boot.h" #include "Core/Config/GraphicsSettings.h" @@ -1358,6 +1359,7 @@ bool NetPlayServer::SetupNetSettings() settings.cpu_thread = Config::Get(Config::MAIN_CPU_THREAD); settings.cpu_core = Config::Get(Config::MAIN_CPU_CORE); settings.enable_cheats = Config::AreCheatsEnabled(); + settings.enable_hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); settings.selected_language = Config::Get(Config::MAIN_GC_LANGUAGE); settings.override_region_settings = Config::Get(Config::MAIN_OVERRIDE_REGION_SETTINGS); settings.dsp_hle = Config::Get(Config::MAIN_DSP_HLE); @@ -1586,6 +1588,7 @@ bool NetPlayServer::StartGame() spac << m_settings.cpu_thread; spac << m_settings.cpu_core; spac << m_settings.enable_cheats; + spac << m_settings.enable_hardcore; spac << m_settings.selected_language; spac << m_settings.override_region_settings; spac << m_settings.dsp_enable_jit; From 704c75a2f59bb42f173476a0b0cc7b87bd6ec623 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Mon, 11 Nov 2024 12:17:53 -0500 Subject: [PATCH 16/40] gitignore: Ignore flatpak-builder's cache directory --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index be0d2845b6..a69afd7cc5 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,5 @@ CMakeLists.txt.user .idea/ # Ignore Visual Studio Code's working dir /.vscode/ +# Ignore flatpak-builder's cache dir +.flatpak-builder From 1c4bfc35d980856033714a84a8425e71576623eb Mon Sep 17 00:00:00 2001 From: Amber Brault Date: Sat, 2 Nov 2024 16:48:11 -0400 Subject: [PATCH 17/40] Core: Store object name separately for symbols --- Source/Core/Common/SymbolDB.h | 1 + Source/Core/Core/Boot/Boot.cpp | 4 ++- Source/Core/Core/Boot/Boot.h | 3 +- Source/Core/Core/Boot/DolReader.h | 3 +- Source/Core/Core/Boot/ElfReader.cpp | 5 +-- Source/Core/Core/Boot/ElfReader.h | 3 +- Source/Core/Core/Debugger/RSO.cpp | 7 ++-- Source/Core/Core/PowerPC/PPCSymbolDB.cpp | 32 +++++++++++++++---- Source/Core/Core/PowerPC/PPCSymbolDB.h | 2 +- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 32 ++++++++++++++++--- 10 files changed, 73 insertions(+), 19 deletions(-) diff --git a/Source/Core/Common/SymbolDB.h b/Source/Core/Common/SymbolDB.h index 024255ef18..255994b3c2 100644 --- a/Source/Core/Common/SymbolDB.h +++ b/Source/Core/Common/SymbolDB.h @@ -44,6 +44,7 @@ struct Symbol std::string name; std::string function_name; // stripped function name + std::string object_name; // name of object/source file symbol belongs to std::vector callers; // addresses of functions that call this function std::vector calls; // addresses of functions that are called by this function u32 hash = 0; // use for HLE function finding diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index 322a4f5be2..208c4d34bd 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -605,7 +605,9 @@ bool CBoot::BootUp(Core::System& system, const Core::CPUThreadGuard& guard, ppc_state.pc = executable.reader->GetEntryPoint(); - if (executable.reader->LoadSymbols(guard, system.GetPPCSymbolDB())) + const std::string filename = PathToFileName(executable.path); + + if (executable.reader->LoadSymbols(guard, system.GetPPCSymbolDB(), filename)) { Host_PPCSymbolsChanged(); HLE::PatchFunctions(system); diff --git a/Source/Core/Core/Boot/Boot.h b/Source/Core/Core/Boot/Boot.h index ca27e46963..100f1cfdfd 100644 --- a/Source/Core/Core/Boot/Boot.h +++ b/Source/Core/Core/Boot/Boot.h @@ -215,7 +215,8 @@ public: 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, PPCSymbolDB& ppc_symbol_db) const = 0; + virtual bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db, + const std::string& filename) const = 0; protected: std::vector m_bytes; diff --git a/Source/Core/Core/Boot/DolReader.h b/Source/Core/Core/Boot/DolReader.h index 0c04d67b5d..1ff37e352e 100644 --- a/Source/Core/Core/Boot/DolReader.h +++ b/Source/Core/Core/Boot/DolReader.h @@ -27,7 +27,8 @@ public: bool IsAncast() const { return m_is_ancast; } u32 GetEntryPoint() const override { return m_dolheader.entryPoint; } bool LoadIntoMemory(Core::System& system, bool only_in_mem1 = false) const override; - bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const override + bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db, + const std::string& filename) const override { return false; } diff --git a/Source/Core/Core/Boot/ElfReader.cpp b/Source/Core/Core/Boot/ElfReader.cpp index 2fc428399a..f667387ab3 100644 --- a/Source/Core/Core/Boot/ElfReader.cpp +++ b/Source/Core/Core/Boot/ElfReader.cpp @@ -180,7 +180,8 @@ SectionID ElfReader::GetSectionByName(const char* name, int firstSection) const return -1; } -bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db) const +bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db, + const std::string& filename) const { bool hasSymbols = false; SectionID sec = GetSectionByName(".symtab"); @@ -218,7 +219,7 @@ bool ElfReader::LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_ default: continue; } - ppc_symbol_db.AddKnownSymbol(guard, value, size, name, symtype); + ppc_symbol_db.AddKnownSymbol(guard, value, size, name, filename, symtype); hasSymbols = true; } } diff --git a/Source/Core/Core/Boot/ElfReader.h b/Source/Core/Core/Boot/ElfReader.h index 4213bd1090..8ca84b54bb 100644 --- a/Source/Core/Core/Boot/ElfReader.h +++ b/Source/Core/Core/Boot/ElfReader.h @@ -36,7 +36,8 @@ public: 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, PPCSymbolDB& ppc_symbol_db) const override; + bool LoadSymbols(const Core::CPUThreadGuard& guard, PPCSymbolDB& ppc_symbol_db, + const std::string& filename) const override; // TODO: actually check for validity. bool IsValid() const override { return true; } bool IsWii() const override; diff --git a/Source/Core/Core/Debugger/RSO.cpp b/Source/Core/Core/Debugger/RSO.cpp index 71070f21a9..f793096967 100644 --- a/Source/Core/Core/Debugger/RSO.cpp +++ b/Source/Core/Core/Debugger/RSO.cpp @@ -375,6 +375,7 @@ void RSOView::LoadAll(const Core::CPUThreadGuard& guard, u32 address) void RSOView::Apply(const Core::CPUThreadGuard& guard, PPCSymbolDB* symbol_db) const { + const std::string rso_name = GetName(); for (const RSOExport& rso_export : GetExports()) { u32 address = GetExportAddress(rso_export); @@ -389,15 +390,17 @@ void RSOView::Apply(const Core::CPUThreadGuard& guard, PPCSymbolDB* symbol_db) c { // Function symbol symbol->Rename(export_name); + symbol->object_name = rso_name; } else { // Data symbol - symbol_db->AddKnownSymbol(guard, address, 0, export_name, Common::Symbol::Type::Data); + symbol_db->AddKnownSymbol(guard, address, 0, export_name, rso_name, + Common::Symbol::Type::Data); } } } - DEBUG_LOG_FMT(SYMBOLS, "RSO({}): {} symbols applied", GetName(), GetExportsCount()); + DEBUG_LOG_FMT(SYMBOLS, "RSO({}): {} symbols applied", rso_name, GetExportsCount()); } u32 RSOView::GetNextEntry() const diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp index cccf98a629..95102fa179 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp @@ -49,7 +49,8 @@ Common::Symbol* PPCSymbolDB::AddFunction(const Core::CPUThreadGuard& guard, u32 } void PPCSymbolDB::AddKnownSymbol(const Core::CPUThreadGuard& guard, u32 startAddr, u32 size, - const std::string& name, Common::Symbol::Type type) + const std::string& name, const std::string& object_name, + Common::Symbol::Type type) { auto iter = m_functions.find(startAddr); if (iter != m_functions.end()) @@ -57,6 +58,7 @@ void PPCSymbolDB::AddKnownSymbol(const Core::CPUThreadGuard& guard, u32 startAdd // already got it, let's just update name, checksum & size to be sure. Common::Symbol* tempfunc = &iter->second; tempfunc->Rename(name); + tempfunc->object_name = object_name; tempfunc->hash = HashSignatureDB::ComputeCodeChecksum(guard, startAddr, startAddr + size - 4); tempfunc->type = type; tempfunc->size = size; @@ -65,6 +67,7 @@ void PPCSymbolDB::AddKnownSymbol(const Core::CPUThreadGuard& guard, u32 startAdd { // new symbol. run analyze. auto& new_symbol = m_functions.emplace(startAddr, name).first->second; + new_symbol.object_name = object_name; new_symbol.type = type; new_symbol.address = startAddr; @@ -399,6 +402,13 @@ bool PPCSymbolDB::LoadMap(const Core::CPUThreadGuard& guard, const std::string& if (name[strlen(name) - 1] == '\r') name[strlen(name) - 1] = 0; + // Split the current name string into separate parts, and get the object name + // if it exists. + const std::vector parts = SplitString(name, '\t'); + const std::string name_string(StripWhitespace(parts[0])); + const std::string object_filename_string = + parts.size() > 1 ? std::string(StripWhitespace(parts[1])) : ""; + // Check if this is a valid entry. if (strlen(name) > 0) { @@ -435,7 +445,7 @@ bool PPCSymbolDB::LoadMap(const Core::CPUThreadGuard& guard, const std::string& if (good) { ++good_count; - AddKnownSymbol(guard, vaddress, size, name, type); + AddKnownSymbol(guard, vaddress, size, name_string, object_filename_string, type); } else { @@ -473,8 +483,13 @@ bool PPCSymbolDB::SaveSymbolMap(const std::string& filename) const for (const auto& symbol : function_symbols) { // Write symbol address, size, virtual address, alignment, name - f.WriteString(fmt::format("{0:08x} {1:08x} {2:08x} {3} {4}\n", symbol->address, symbol->size, - symbol->address, 0, symbol->name)); + std::string line = fmt::format("{0:08x} {1:06x} {2:08x} {3} {4}", symbol->address, symbol->size, + symbol->address, 0, symbol->name); + // Also write the object name if it exists + if (!symbol->object_name.empty()) + line += fmt::format(" \t{0}", symbol->object_name); + line += "\n"; + f.WriteString(line); } // Write .data section @@ -482,8 +497,13 @@ bool PPCSymbolDB::SaveSymbolMap(const std::string& filename) const for (const auto& symbol : data_symbols) { // Write symbol address, size, virtual address, alignment, name - f.WriteString(fmt::format("{0:08x} {1:08x} {2:08x} {3} {4}\n", symbol->address, symbol->size, - symbol->address, 0, symbol->name)); + std::string line = fmt::format("{0:08x} {1:06x} {2:08x} {3} {4}", symbol->address, symbol->size, + symbol->address, 0, symbol->name); + // Also write the object name if it exists + if (!symbol->object_name.empty()) + line += fmt::format(" \t{0}", symbol->object_name); + line += "\n"; + f.WriteString(line); } return true; diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.h b/Source/Core/Core/PowerPC/PPCSymbolDB.h index 13abc4489e..de3e210327 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.h +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.h @@ -23,7 +23,7 @@ public: Common::Symbol* AddFunction(const Core::CPUThreadGuard& guard, u32 start_addr) override; void AddKnownSymbol(const Core::CPUThreadGuard& guard, u32 startAddr, u32 size, - const std::string& name, + const std::string& name, const std::string& object_name, Common::Symbol::Type type = Common::Symbol::Type::Function); Common::Symbol* GetSymbolFromAddr(u32 addr) override; diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index c36f8c31d7..af8315f179 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -379,6 +379,12 @@ void CodeWidget::UpdateSymbols() { QString name = QString::fromStdString(symbol.second.name); + // If the symbol has an object name, add it to the entry name. + if (!symbol.second.object_name.empty()) + { + name += QString::fromStdString(fmt::format(" ({})", symbol.second.object_name)); + } + auto* item = new QListWidgetItem(name); if (name == selection) item->setSelected(true); @@ -408,8 +414,17 @@ void CodeWidget::UpdateFunctionCalls(const Common::Symbol* symbol) if (call_symbol) { - const QString name = - QString::fromStdString(fmt::format("> {} ({:08x})", call_symbol->name, addr)); + QString name; + + if (!call_symbol->object_name.empty()) + { + name = QString::fromStdString( + fmt::format("< {} ({}, {:08x})", call_symbol->name, call_symbol->object_name, addr)); + } + else + { + name = QString::fromStdString(fmt::format("< {} ({:08x})", call_symbol->name, addr)); + } if (!name.contains(filter, Qt::CaseInsensitive)) continue; @@ -433,8 +448,17 @@ void CodeWidget::UpdateFunctionCallers(const Common::Symbol* symbol) if (caller_symbol) { - const QString name = - QString::fromStdString(fmt::format("< {} ({:08x})", caller_symbol->name, addr)); + QString name; + + if (!caller_symbol->object_name.empty()) + { + name = QString::fromStdString(fmt::format("< {} ({}, {:08x})", caller_symbol->name, + caller_symbol->object_name, addr)); + } + else + { + name = QString::fromStdString(fmt::format("< {} ({:08x})", caller_symbol->name, addr)); + } if (!name.contains(filter, Qt::CaseInsensitive)) continue; From 691a1eb94ca13855c8e9032c2598975f906a7399 Mon Sep 17 00:00:00 2001 From: dreamsyntax Date: Thu, 14 Nov 2024 13:05:38 -0700 Subject: [PATCH 18/40] Sys: Sync wiitdb files with GameTDB --- Data/Sys/wiitdb-de.txt | 29 +- Data/Sys/wiitdb-en.txt | 304 +++++++---- Data/Sys/wiitdb-es.txt | 70 +-- Data/Sys/wiitdb-fr.txt | 36 +- Data/Sys/wiitdb-it.txt | 34 +- Data/Sys/wiitdb-ja.txt | 26 +- Data/Sys/wiitdb-ko.txt | 195 +++---- Data/Sys/wiitdb-nl.txt | 37 +- Data/Sys/wiitdb-pt.txt | 15 +- Data/Sys/wiitdb-ru.txt | 11 +- Data/Sys/wiitdb-zh_CN.txt | 1009 ++++++++++++++++++++----------------- Data/Sys/wiitdb-zh_TW.txt | 828 ++++++++++++++++-------------- 12 files changed, 1398 insertions(+), 1196 deletions(-) diff --git a/Data/Sys/wiitdb-de.txt b/Data/Sys/wiitdb-de.txt index c8e8cdc8b7..17cb31142c 100644 --- a/Data/Sys/wiitdb-de.txt +++ b/Data/Sys/wiitdb-de.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: DE_unique version: 20230727194133) +TITLES = https://www.gametdb.com (type: Wii language: DE_unique version: 20241114210104) R22J01 = FlingSmash R23P52 = Barbie und Die Drei Musketiere R25PWR = LEGO Harry Potter: Die Jahre 1-4 @@ -56,7 +56,6 @@ R9EPNP = Brico Party: Werde Heimwerker-König R9GPWR = Die Legende der Wächter R9LP41 = Girls Life: Pyjama-Party R9RPNG = Dance Party - Pop Hits -RAAE01 = Disco de Startup Wii RB7P54 = Bully: Die Ehrenrunde RBEP52 = Bee Movie: Das Game RBEX52 = Bee Movie: Das Game @@ -419,7 +418,7 @@ SVQPVZ = Barbie und ihre Schwestern: Die Rettung der Welpen SVVPAF = Die Croods: Steinzeit Party! SW3PKM = Eurosport Winter Stars CS4P00 = SingItStar NRJ Music Tour -RMCPCA = Mario Kart Wii (Katalanische Übersetzung) +RZDPCA = The Legend of Zelda: Twilight Princess (Katalanische Übersetzung) SDNP01 = New SUPER DODO BROS wii SIS1OH = SingItStar Custom: Volume 1 SISACD = SingItStar AC/DC @@ -428,14 +427,11 @@ W2CP = Gehirntraining W2FP = Physiofun - Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GP = Phoenix Wright Ace Attorney: Justice for All -W2MP = Blaster Master: Overdrive W2PP = Physiofun - Beckenboden Training W3GD = Phoenix Wright Ace Attorney 3: Trials And Tribulations -W3KP = ThruSpace: High Velocity 3D Puzzle W3MP = Die Drei Musketiere Einer für alle! W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W6BP = Eco-Shooter: Plant 530 -W72P = Successfully Learning German Year 3 W73P = Lernerfolg Grundschule Deutsch Klasse 4 W74P = Lernerfolg Grundschule Deutsch Klasse 5 W7IP = Lernerfolg Grundschule Deutsch Klasse 2 @@ -444,12 +440,8 @@ W8WP = Happy Holidays Halloween W9BP = Big Town Shoot W9RP = Happy Holidays Christmas WA4P = WarioWare: Do It Yourself - Showcase -WA7P = Toribash Violence Perfected WA8P = Art Style: Penta Tentacles WAEP = Around the world -WAFP = Airport Mania: First Flight -WAHP = Trenches: Generals -WALP = Art Style: light trax WAOP = The Very Hungry Caterpillar´s ABC WB2P = Strong Bad Episode 4: Dangeresque 3 WB3P = Strong Bad Episode 5: 8-bit is Enough @@ -487,7 +479,6 @@ WGGP = Gabrielle's Ghostly Groove: Monster Mix WGPP = Zenquaria Virtuelles Aquarium WGSD = Phoenix Wright: Ace Attorney (Deutsche Version) WGSF = Phoenix Wright: Ace Attorney (French Version) -WGSP = Phoenix Wright: Ace Attorney WHEE = Heracles: Chariot Racing WHEP = Heracles: Chariot Racing WHFP = Heavy Fire: Special Operations @@ -562,6 +553,7 @@ WWIP = Where's Wally? Fantastic Journey 1 WWRP = Excitebike: World Challenge WWXP = Paper Wars Cannon Fodder WXBP = Ben 10: Alien Force - The Rise of Hex +WXIP = Lernerfolg Grundschule Englisch Klasse 1 WYIP = escapeVektor: Chapter 1 WYSP = Yard Sale Hidden Treasures Sunnyville WZIP = Rubik's Puzzle Galaxy: RUSH @@ -623,20 +615,13 @@ JDJP = Super Star Wars: The Empire Strikes Back JDLP = Super Star Wars: Return of the Jedi JDWP = Aero The Acrobat JDZD = Mystic Quest Legend​ -NACE = The Legend of Zelda: Ocarina of Time -NACP = The Legend of Zelda: Ocarina of Time NADE = Lylat wars NAJN = Sin and Punishment -NAKS = Pokémon Snap NAME = Kirby 64: The Crystal Shards -NAMP = Kirby 64: The Crystal Shards -NAND = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOP = 1080°: TenEighty Snowboarding NARE = The Legend of Zelda: Majora's Mask -NARP = The Legend of Zelda: Majora's Mask NAYE = Ogre Battle 64: Person of Lordly Caliber -NAYM = Ogre Battle 64: Person of Lordly Caliber LALP = Fantasy Zone II LANP = Alex Kidd: The Lost Stars LAPP = Wonder Boy III: The Dragon's Trap @@ -686,7 +671,6 @@ EAIP = Top Hunter EBDP = Magical Drop 3 EBFP = Spin master EBSP = The Path of the Warrior: Art of Fighting 3 -ECAP = Real Bout Fatal Fury 2: The Newcomers ECGP = Shock Troopers: 2nd Squad E54P = GHOSTS'N GOBLINS E55P = Commando @@ -703,21 +687,24 @@ HADE = Internet Kanal HADP = Internet-Kanal HAFP = Wetterkanal HAGA = Nachrichtenkanal -HAGE = Nachrichtenkanal HAGJ = Nachrichtenkanal HAGP = Nachrichtenkanal HAJP = Meinungskanal +HAKP = Vertrag/Kontakt HAPP = Mii-Wettbewerbskanal HATP = Nintendo-Kanal HAVP = Glückstagskanal HAWP = Metroid Prime 3 Preview HAYA = Fotokanal -HCAP = Jam with the Band Live +HCAP = Jam with the Band Live-Kanal +HCCJ = Adresseinstellungen HCFE = Wii Speak-Kanal HCFP = Wii Speak-Kanal +HCGP = Wii & Internet HCMP = Kirby TV-Kanal HCRE = The Legend of Zelda: Skyward Sword - Speicherdaten-Update-Kanal für HCRP = The Legend of Zelda: Skyward Sword - Speicherdaten-Update-Kanal für +RFPP = Wii Fit Plus-Kanal RMCP = Mario Kart-Kanal OHBC = Homebrew-Kanal G2FD78 = Tak 2: Der Stab der Träume diff --git a/Data/Sys/wiitdb-en.txt b/Data/Sys/wiitdb-en.txt index 219c924bb8..f899b2397c 100644 --- a/Data/Sys/wiitdb-en.txt +++ b/Data/Sys/wiitdb-en.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: EN version: 20230727193249) +TITLES = https://www.gametdb.com (type: Wii language: EN version: 20241114204653) 007E01 = Wii Auto Erase Disc 091E00 = Movie-Ch Install Disc Ver. A 410E01 = Wii Backup Disc v1.31 @@ -20,6 +20,7 @@ DCHJAF = We Cheer: O wa Star Produce! Gentei Collabo Game Disc DD2P41 = Just Dance 2 (Demo) DDWE18 = Lost in Shadow - Press Disc (Demo) DDWX18 = Lost In Shadow - Best Buy (Demo) +DFNJ01 = Wii Fit (Taikenban) DHHJ8J = Hirano Aya Premium Movie Disc from Suzumiya Haruhi no Gekidou DHKE18 = Help Wanted: 50 Wacky Jobs (Demo) DK6E18 = Marble Saga: Kororinpa (Demo) @@ -145,8 +146,8 @@ R3OP01 = Metroid: Other M R3PEWR = Speed Racer: The Videogame R3PJ52 = Speed Racer R3PPWR = Speed Racer: The Videogame -R3RE8P = Sonic & SEGA All-Stars Racing -R3RP8P = Sonic & SEGA All-Stars Racing +R3RE8P = Sonic & Sega All-Stars Racing +R3RP8P = Sonic & Sega All-Stars Racing R3SE52 = Spider-Man: Web of Shadows R3SP52 = Spider-Man: Web of Shadows R3TE54 = Top Spin 3 @@ -934,7 +935,7 @@ RHAE01 = Wii Play RHAJ01 = Hajimete no Wii RHAK01 = Cheoeum Mannaneun Wii RHAP01 = Wii Play -RHAW01 = Wii Play +RHAW01 = Hajimete no Wii RHCE52 = The History Channel: Battle for the Pacific RHCP52 = The History Channel: Battle for the Pacific RHDE8P = The House of the Dead 2 & 3 Return @@ -997,7 +998,7 @@ RI8E41 = Brothers In Arms: Road to Hill 30 RI8P41 = Brothers in Arms: Road to Hill 30 RI9EGT = Diva Girls: Divas on Ice RI9PGT = Diva Girls: Princess on Ice -RIAE52 = Ice Age: Dawn of the Dinosaurs +RIAE52 = Ice Age 3: Dawn of the Dinosaurs RIAI52 = Ice Age 3: Dawn of the Dinosaurs RIAP52 = Ice Age 3: Dawn of the Dinosaurs RIBES5 = Igor the Game @@ -1268,9 +1269,8 @@ RMBE01 = Mario Super Sluggers RMBJ01 = Super Mario Stadium: Family Baseball RMCE01 = Mario Kart Wii RMCJ01 = Mario Kart Wii -RMCJ50 = Wiimms MKW-Textures 2022-12.jap +RMCJ51 = Wiimms MKW-Fun 2023-09.jap RMCK01 = Mario Kart Wii -RMCK50 = Wiimms MKW-Textures 2022-12.kor RMCKBR = Mario Kart Brown RMCP01 = Mario Kart Wii RMDE69 = Madden NFL 07 @@ -1683,7 +1683,7 @@ RS3P52 = Spider-Man 3 RS3X52 = Spider-Man 3 RS4EXS = Castle of Shikigami III RS4JJF = Shikigami no Shiro III -RS4PXS = Castle of Shikigami III +RS4PH3 = Castle of Shikigami III RS5EC8 = Samurai Warriors: Katana RS5JC8 = Sengoku Musou KATANA RS5PC8 = Samurai Warriors: Katana @@ -1697,6 +1697,7 @@ RSAP78 = SpongeBob's Atlantis SquarePantis RSBE01 = Super Smash Bros. Brawl RSBJ01 = Dairantou Smash Brothers X RSBK01 = Daenantu Smash Brothers X +RSBM64 = M64 Project M RSBP01 = Super Smash Bros. Brawl RSCD7D = Scarface: The World Is Yours RSCE7D = Scarface: The World Is Yours @@ -1775,8 +1776,8 @@ RT3P54 = Rockstar Games Presents: Table Tennis RT4EAF = Tales of Symphonia: Dawn of the New World RT4JAF = Tales of Symphonia: Ratatosk no Kishi RT4PAF = Tales of Symphonia: Dawn of the New World -RT5E8P = SEGA Superstars Tennis -RT5P8P = SEGA Superstars Tennis +RT5E8P = Sega Superstars Tennis +RT5P8P = Sega Superstars Tennis RT6FKM = Magic Roundabout RT6PKM = The Magic Roundabout RT7E69 = Tiger Woods PGA Tour 07 @@ -1806,7 +1807,7 @@ RTFK52 = Transformers: The Game RTFP52 = Transformers: The Game RTFX52 = Transformers: The Game RTFY52 = Transformers: The Game -RTGJ18 = Gensen Table Game Wii +RTGJ18 = Wi-Fi Taiou - Gensen Table Game Wii RTHE52 = Tony Hawk's Downhill Jam RTHP52 = Tony Hawk's Downhill Jam RTIE8P = Wacky World of Sports @@ -1890,6 +1891,7 @@ RUHZ52 = Bakugan Battle Brawlers RUIE4Q = Disney: Sing It RUIP4Q = Disney: Sing It RUIX4Q = Disney: Sing It +RUIY4Q = Disney Sing It RUKEGT = Rolling Stone: Drum King RUKPGT = We Rock: Drum King RULE4Q = Ultimate Band @@ -1944,7 +1946,6 @@ RVEFMR = Bienvenue Chez Les Ch'tis RVFE20 = Bigfoot: Collision Course RVFP7J = Bigfoot: Collision Course RVGE78 = Merv Griffin's Crosswords -RVGP78 = Margot's Word Brain RVHP41 = Scrabble Interactive: 2009 Edition RVIE4F = Bionicle Heroes RVIP4F = Bionicle Heroes @@ -2732,7 +2733,7 @@ SGTPUG = My Personal Golf Trainer with IMG Academies and David Leadbetter SGUE4Q = Disney Guilty Party SGVEAF = Go Vacation SGVJAF = Go Vacation -SGVPAF = Go Vacation +SGVPAF = GO VACATION SGWD7K = Bibi Blocksberg SGXE41 = Battle of Giants: Dinosaurs Strike SGXP41 = Combat of Giants: Dinosaurs Strike @@ -2788,8 +2789,8 @@ SHZENR = Harley Davidson: Road Trip SI3E69 = FIFA Soccer 12 SI3P69 = FIFA 12 SI3X69 = FIFA 12 -SIAE52 = Ice Age: Continental Drift - Arctic Games -SIAI52 = Ice Age: Continental Drift: Arctic Games +SIAE52 = Ice Age 4: Continental Drift - Arctic Games +SIAI52 = Ice Age 4: Continental Drift: Arctic Games SIAP52 = Ice Age 4: Continental Drift - Artic Games SIDE54 = Sid Meier's Pirates! SIDP54 = Sid Meier's Pirates! @@ -3670,7 +3671,7 @@ CTFP00 = StarSing : Rock Ballads v2.0 CTGP00 = StarSing : Take That v2.0 CTHP00 = StarSing : Summer Party v2.0 CTIP00 = StarSing : Rocks! Part. I v2.0 -CTJBO1 = CT Jam Best Of +CTJBO1 = CT Jam Best Of CTJP00 = StarSing : Rocks! Part. II v2.0 CTKP00 = StarSing : Pop Hits v2.0 CTLP00 = StarSing : Britney Spears v2.0 @@ -3745,6 +3746,7 @@ GCDK08 = Biohazard Code: Veronica Complete GCREBM = Xeno Crisis GCRJBM = Xeno Crisis GCRPBM = Xeno Crisis +GDPEAF = Mr. Driller: Drill Land GDXE8P = Sonic Riders DX GEAK8P = Eternal Arcadia Legends GFEK01 = Fire Emblem: Souen no Kiseki @@ -3753,12 +3755,18 @@ GGPE01 = Mario Kart Arcade GP GGPE02 = Mario Kart Arcade GP 2 GGPJ02 = Mario Kart Arcade GP 2 GH2E41 = Just Dance GH2 +GKQE01 = Kururin Squash GLME02 = Luigi's Mansion: First-Person Optimized +GLME09 = Luigi's Mansion: Open World GLMERP = Luigi's Mansion Repainted GLMK01 = Luigi's Mansion +GLMLFG = Luigi's Final Ghosthunt +GLMN64 = Project Reality Demo GLSE01 = Super Luigi Sunshine GM2EBJ = Monkeyed Ball 2: Witty Subtitle GM2EDX = Super Monkey Ball Deluxe +GM4E05 = Mario Kart: Double Dash!! Plus +GM4E64 = M64 MKDD EXTENDED v2.0 GM8K01 = Metroid Prime GMPE02 = Mario Party 4 Widescreen GMSE02 = Super Mario Sunshine Multiplayer @@ -3772,7 +3780,11 @@ GP5E04 = Mario Party 5+ Widescreen Patch GP6E02 = Mario Party 6 Widescreen GP7E02 = Mario Party 7 CPU Only GP7E03 = Mario Party 7 Widescreen +GPZE01 = Nintendo Puzzle Collection +GSME01 = Super Mario 128 +GTDE01 = Super Smash Bros. Melee: TurboDX GTME01 = Super Smash Bros. Melee Training Mode +GUPR8P = Shadow the Hedgehog: Reloaded GVS32E = Virtua Striker 3 Ver. 2002 GVS32J = Virtua Striker 3 Ver.2002 (Triforce) GVS45J = Virtua Striker 4 @@ -3782,12 +3794,16 @@ GVSJ9P = Virtua Striker 4 Ver.2006 GX2E01 = Pokémon XG: Next Gen GXSRTE = Sonic Riders Tournament Edition GXTE8P = Sonic Riders Tournament Edition +GY3E01 = Donkey Konga 3 GZ2K01 = Zelda no Densetsu: Twilight Princess GZBEB2 = Zatch Bell! Go! Go! Mamodo Fight!! GZLK01 = Zelda no Densetsu: Kaze no Takuto HBWE01 = New Super Mario Bros. Wii: Hellboy Edition HSMP01 = Harder Super Mario Bros. Wii +J4EE41 = Just Dance 2024 Edition +J5EE41 = Just Dance 2025 Edition JF3E41 = Just Dance Focus 3 +JONE52 = Angry Birds Trilogy but with more Levels! JOUE01 = New Super Mario Bros. Wii 10 The Journey KHPE01 = Kirby Air Ride Hack Pack KLSEXJ = The Last Story (NTSC-U, Japanese Audio) @@ -3819,6 +3835,7 @@ MKTE01 = Mario Kart Wii Teknik MKWP01 = Super Mario Kart for Wii MMRE01 = D.U. Super Mario Bros 2.1 Madness Returns MP1E16 = New Super Mario Bros. Wii - Mod Pack 1 +MP3E41 = Just Dance MP3 MRRE01 = New Super Mario Bros. Wii Retro Remix MRRP01 = New Super Mario Bros. Wii Retro Remix MSDEZ4 = Mini Super Mario Bros Wii Deluxe @@ -3840,9 +3857,12 @@ OMGD01 = Outer Mario Galaxy ONKELZ = SingItStar Böhse Onkelz PAL OTFPSI = Sing IT: Operación triunfo PC5P01 = Wii Points Card +PCLE01 = Pikmin 2 Caveless Edition PDUE01 = Another Super Mario Bros. Wii PIKE25 = Pikmin 251 +PKWE01 = Pikmin Wars PMNEO1 = New Old Super Mario Bros. Wii +POKE42 = Pikmin 216 POPPSI = SingItStar Pop PPNE01 = New Super Mario Bros. Wii 2: The Next Levels PPNP01 = New Super Mario Bros. Wii 2: The Next Levels @@ -3923,6 +3943,7 @@ RGHN52 = Guitar Hero III Custom: Guitar Hero Brasil RGHO52 = Guitar Hero III Custom: Animes Brasil RGHPOH = SingItStar Italian Greatest Hits RGHPS2 = Guitar Hero III Custom : J-Music +RGHQ52 = Guitar Hero III Custom: Guitar Hero Brasil Vol. 2 RGHX52 = Guitar Hero III Custom: Anime's Alex Chan RGKE52 = Guitar Hero III Custom : KoRn RGRM52 = Guitar Hero III Custom: Rock & Metal @@ -4012,6 +4033,7 @@ RMCE49 = Wiimms MKW-Fun 2022-11.usa RMCE4D = 4DR Yoshi1998's Texture And Music Pack RMCE4P = Potatoman44's CTs Stretched RMCE50 = Wiimms MKW-Textures 2022-12.usa +RMCE51 = Wiimms MKW-Fun 2023-09.usa RMCE54 = MARIO KART CRIS DELUXE 2 RMCE5C = 5cc Pack RMCE60 = Mario Kart Wii Faraphel @@ -4079,7 +4101,7 @@ RMCED3 = DryBowser Kart Wii RMCED8 = DryBowser's Unused CT Pack RMCEDC = Mario Kart Wii but You Can Only Drive on the Road RMCEDK = Darky Kart Wii -RMCEDT = Drift Rebalance with CT +RMCEDT = Drift Rebalance with CT RMCEDX = Dxrk X Hari's Pack RMCEEX = MKW Exploration Pack RMCEF1 = Fancy's CT Pack @@ -4095,6 +4117,7 @@ RMCEG2 = Mario Kart Wii CTGP Revolution RMCEG4 = Diddz' Gang Custom Track Pack RMCEG5 = New Mario Kart Wii 64 RMCEGB = Hide and Seek GBA Pack +RMCEGC = CTGP Revolution Legacy RMCEGN = Giant Objects Mode: Complete Edition RMCEGP = Mario Kart Wii CTGP Revolution RMCEGT = Neptune777 Xtreme Race GTX @@ -4117,11 +4140,14 @@ RMCEKK = Krash Kart Wii RMCEKW = Kiwi's Hide and Seek Pack RMCEL1 = Luma's CT Pack RMCEL9 = Mario Kart Legacii +RMCELF = Flounder's Megamix RMCELG = Legacy Kart Wii +RMCELI = Evil Pack RMCEM4 = Mario Kart Super Circuit Wii RMCEM6 = New Mario Kart Seven RMCEM9 = New Mario Kart: Double Dash!! RMCEMN = Mario Kart Midnight +RMCEMP = Bowser498's MK8 HNS Pack RMCEMX = Maxed Kart Wii RMCEMZ = Mizy's Texture Pack RMCEN2 = Nintendo Remasters @@ -4132,6 +4158,8 @@ RMCENH = Navi's HNS CT Pack RMCENL = Neptune777 Forza MAX Next Layer RMCENQ = Nevesqq's Texture n' Music Pack RMCEO4 = OptPack CT Pack +RMCEOA = Chaotic Kart Wii +RMCEOR = Bored Kart Wii RMCEP4 = Potatoman44's Transformed Tracks RMCEPG = Penguin Kart Wii RMCEPH = MKW Hack Pack vX CTDN Version @@ -4150,6 +4178,7 @@ RMCESH = Shortcut Practice Pack RMCESR = S☆Ris CT Pack RMCEST = Skipper's 200Kmh Distribution RMCESU = SnorgUp's Textures and Music Pack +RMCESV = Mario Kart Archive RMCESY = Spyro's Texture Pack RMCET0 = TomB's CT Pack RMCET1 = Wiimms Intermezzo @@ -4158,6 +4187,8 @@ RMCET6 = Man - O - Wii's Least Favorites Pack RMCET7 = Cam, Tom And Troy's CT Pack RMCETD = AlmostTWD's Favourites RMCETH = Mario Kart Wii Theob78's Pack +RMCETM = Mario Kart Time Warp +RMCETO = Retro Rewind RMCETP = Tan in the Snow Pack RMCETW = Trent Kart Wii RMCETX = Toxic's Hide and Seek Pack @@ -4206,6 +4237,7 @@ RMCJ45 = Wiimms MKW-Fun 2020-12.jap RMCJ46 = Wiimms MKW-Fun 2021-09.jap RMCJ48 = Wiimms MKW-Fun 2022-05.jap RMCJ49 = Wiimms MKW-Fun 2022-11.jap +RMCJ50 = Wiimms MKW-Textures 2022-12.jap RMCJ60 = Mario Kart Wii Faraphel RMCJ64 = Peach Kart 8 RMCJ76 = Pro CT Pack @@ -4229,6 +4261,8 @@ RMCK46 = Wiimms MKW-Fun 2021-09.kor RMCK47 = Wiimms MKW-History 2021-12.kor RMCK48 = Wiimms MKW-Fun 2022-05.kor RMCK49 = Wiimms MKW-Fun 2022-11.kor +RMCK50 = Wiimms MKW-Textures 2022-12.kor +RMCK51 = Wiimms MKW-Fun 2023-09.kor RMCK60 = Mario Kart Wii Faraphel RMCK86 = Mario Kart Cris 4 RMCK91 = Wiimms Mario Kart Fun 2021-09 Reserved @@ -4283,6 +4317,7 @@ RMCP47 = Wiimms MKW-History 2021-12.pal RMCP48 = Wiimms MKW-Fun 2022-05.pal RMCP49 = Wiimms MKW-Fun 2022-11.pal RMCP50 = Wiimms MKW-Textures 2022-12.pal +RMCP51 = Wiimms MKW-Fun 2023-09.pal RMCP60 = Mario Kart Wii Faraphel RMCP64 = Peach Kart 8 RMCP76 = Pro CT Pack @@ -4295,7 +4330,7 @@ RMCP96 = Super Mario Kart Wii RMCPA1 = Mario Kart Adventures RMCPA2 = Mario Kart Wii Deluxe RMCPBR = Mario Kart Brown -RMCPCA = Mario Kart Wii (Catalan Translation) +RMCPCA = Mario Kart Wii [CAT] RMCPG2 = Mario Kart Wii CTGP Revolution RMCPGP = Mario Kart CTGP Revolution RMCPL1 = Luma's CT Pack @@ -4325,6 +4360,7 @@ ROMESD = Monster Hunter G (English Patched) ROSE01 = Takt of Magic [ENG] RPJEUD = Arc Rise Fantasia Undub RQQE52 = Guitar Hero III Custom : Queen +RS4PXS = Castle of Shikigami III RSBE02 = Super Smash Bros. Project M Red Version RSBE03 = Super Smash Bros. Brawl DX RSBE04 = Super Smash Bros. Project M+ @@ -4406,6 +4442,7 @@ RSPE02 = Checkered Sports RSPE03 = Wii Sports: Storm City RSPE04 = Dii Sports RSPE05 = Luna's Wii Sports +RSPPCA = Wii Sports [CAT] RSXX78 = Guitar Hero RadioHead RSYP06 = Super Smash Bros. Brawl : YF06's Mod RT4EUD = Tales of Symphonia: Dawn of the New World Undub @@ -4419,12 +4456,15 @@ RWWE52 = Guitar Hero III Custom : WWE The Hits RXGC15 = Guitar Hero III Custom - A7X (Avenged Sevenfold) RYAJSC = Yatterman Wii (Simplified Chinese Translation) RZDC01 = The Legend of Zelda: Twilight Princess +RZDPCA = The Legend of Zelda: Twilight Princess (Catalan Translation) RZNE01 = Zangeki no Reginleiv [Eng] RZTE02 = Wii Sports Resort - Storm Island RZTE03 = Wii Are Resorting To Violence S02PES = Sing It Star 90's S12E41 = Just Dance Best Of 2 S18E41 = Just Dance Fitted 2018 +S24E41 = Just Dance 2024: Wii Edition +S25E41 = Just Dance 2025 Wii: FurryTrash23 Edition S2PE41 = Just Dance 2020 Plus S3EE41 = Just Dance 2023 S3UE41 = Just Dance Spotlight @@ -4483,10 +4523,11 @@ SDUEO1 = DU Super Mario Bros. : DU Edition SDUPO1 = DU Super Mario Bros. : DU Edition SE1E41 = Just Dance East SEHE41 = Just Dance Epic Hits -SEKE99 = Ikenie no Yoru [ENG] +SEKE99 = Ikenie no Yoru SEOP01 = New Super Mario Bros. Wii 8 Omega SEOP4Q = Sing It: Edad de Oro del Pop Español SFDE01 = New Super Mario Bros. Wii 9 Virtue: This Fall Darkness +SFGE01 = Star Fox 64 GameCube SFRE01 = Super Mario Bros. Frozen Edition SFRJ01 = Super Mario Bros. Frozen Edition SFRP01 = Super Mario Bros. Frozen Edition @@ -4556,6 +4597,7 @@ SLFE01 = New Super Mario Bros. 3 The Final Levels SLFP01 = New Super Mario Bros. 3: The Final Levels SLNE01 = Super Luigi Land Wii SM3E01 = Super Mario Bros. 3+ +SM6E01 = Super Mario 64 GameCube SMBWMM = New Super Mario Bros. Wii Master Mode SMD3OH = SingItStar e La Magia Disney SMGS01 = Secret Mario Galaxy @@ -4638,13 +4680,17 @@ SMNE87 = Random Super Mario Bros. Wii 2 SMNE88 = DU Super Mario Bros. Wii: RoyalSuperMario Edition SMNE89 = Easy Super Mario Bros. Wii SMNE90 = Legend Of Custom Levels +SMNEAD = Newer Alpine Dream SMNEAM = Adventure Super Mario Bros. Wii SMNEAR = Newer Super Mario All-Stars Revived SMNEAU = Newer Super Mario Bros. Wii Autumn Adventure SMNEC7 = New Super Mario Bros. Wii Chaos Edition SMNECB = Super Classic Mario Bros. Wii +SMNECC = Super Mario and the Cliffs of Spring SMNECZ = New Super Coinless Kaizo Wii +SMNED3 = Newer Super Mario Bros. Wii SMNEEA = Extra Super Mario Bros. Wii All Stars +SMNEES = Super Luigi Wii: The Emissary SMNEFW = Mario's New Adventure: 1st World SMNEG4 = New Super Ganondorf Bros. Wii SMNEH3 = New Super Mario Bros. 3 Halloween Wii @@ -4652,8 +4698,10 @@ SMNEHS = Custom Super Mario Bros. Wii Halloween Special SMNEI3 = New Super Mario Bros. Wii Isabelle Edition SMNEJS = Super Mario Jungle Jam SMNEKE = A New Kaizo Era +SMNEKM = Mario Goes to the Store to Buy a Gallon of Milk SMNEL0 = New Super Mario Land Wii SMNEL8 = New Super Larry Wii +SMNELC = Clue4u's Super Epic Mod SMNELE = New Super Mario Bros. Legacy SMNELL = Newer Super Luigi Wii SMNELM = Newer Super Luigi Wii: Dark Moon @@ -4661,6 +4709,7 @@ SMNEM5 = Newer Mayro Bros. Wii SMNEMB = New Super Minecraft Bros. Wii SMNEMC = New Super Mario Bros. Wii Minecraft SMNEMF = Mario's Final Adventure Wii +SMNEMG = Mario's Midnight Adventure SMNEMI = Midi's Super Mario Bros. Wii Just a Little Adventure SMNEMR = Newer Super Luigi Wii: Dark Moon Reverse SMNEMS = Mini Super Mario Bros. Wii @@ -4668,6 +4717,7 @@ SMNEN2 = Normal Super Mario Bros. Wii SMNEN5 = Newer Super Mario 54 SMNENL = Newest Super Luigi Wii SMNENT = Newest Super Mario Bros. Wii +SMNEOY = Super Mario Snowy Season SMNEPE = New Super Mario Bros. Wii: The Pro Edition SMNERE = Retro Mario Bros. SMNERV = RVLution Wii @@ -4854,12 +4904,14 @@ SMVP01 = Super Mario Vacation SMWE01 = Newer Super Mario World U SMWJ01 = Newer Super Mario World U SMWP01 = Newer Super Mario World U +SMXE41 = Just Dance Maximum SNBE66 = Lava Super Mario Bros. Wii Apocalypse SNLE01 = New Super Mario Bros. Wii 0-2 Next Generation Levels SO3EUD = Rune Factory: Tides of Destiny Undub +SOLE41 = Just Dance Solo SOLO41 = Just Dance Solo SOME02 = Rhythm Heaven Fever Repainted -SOMR01 = The rhythm of heaven +SOMR01 = Beat the Beat: Rhythm Paradise SOUE41 = Just Dance Ocean SP9P4Q = SingIt Star POP 2009 SPRE01 = New Super Mario Bros. Wii 14 Project Mario @@ -4876,6 +4928,7 @@ SSQE03 = Mario Party Project Hudson SSQE04 = Tanooki Mr. L Mail Shy Guy Mod SSQE05 = Mario Party 9 Repainted SSQE06 = Yoshi Party +SSQE07 = Quiet Party 9 SSSE01 = New Super Mario Bros. Wii: Summer Sun ST8P75 = SingItStar 80's STAP75 = SingItStar Apres Ski Hits @@ -4899,6 +4952,7 @@ SX3PUD = Pandora's Tower Undub SXEF52 = Guitar Hero III Custom : Megadeth SXFF52 = Guitar Hero III Custom : My Chemical Romance SZEE01 = New Super Mario Bros Wii 13 Shadow Zero Escape +T13E41 = Just Dance Luna TGSE01 = Super Mario Galaxy: The Green Stars TKG1ES = Super Mario Galaxy: The Kaizo Green Stars TKGS03 = Super Mario Galaxy 2: The Kaizo Green Stars @@ -4915,13 +4969,23 @@ WARE01 = DU Super Wario Bros. WFFF4I = Fatal Frame 4: Mask of the Lunar Eclipse WMXE01 = A Very Merry Wii Music Christmas WMXK01 = A Very Merry Wii Music Christmas +WSAE64 = Pikmin 2 New Year (US) +WSAP64 = Pikmin 2 New Year (PAL) XBKE52 = Guitar Hero III Custom : Bullet For Kamelot XNWE52 = Guitar Hero III Custom: Nightwish XXXX02 = Mario Kart Teknik Y1PE41 = Just Dance 2023 Wii Edition Extras +YELEDT = Pikmin 2 Yellow Edition ZM7E52 = Call of Duty - Modern Warfare - Reflex Edition - Zombie Mode ZXFP52 = Guitar Hero 3 Encore DC8A = Line Attack Heroes +HDMD = Dr. Mario & Bazillenjagd (Beta) +HDME = Dr. Mario Online Rx (Beta) +HDMF = Dr. Mario & Bactericide (Beta) +HDMI = Dr. Mario & Sterminavirus (Beta) +HDMJ = Dr. Mario & Saikin Bokumetsu (Beta) +HDMP = Dr. Mario & Germ Buster (Beta) +HDMS = Dr. Mario & Bactericida (Beta) W22E = Planet Fish W24E = 2 Fast 4 Gnomz W24P = 2 Fast 4 Gnomz @@ -4929,14 +4993,14 @@ W2AE = Big Bass Arcade W2CE = Brain Challenge W2CJ = Brain Challenge W2CP = Brain Challenge -W2FP = Physio Fun - Balance Training -W2GD = Phoenix Wright - Ace Attorney Justice for All +W2FP = Physio Fun: Balance Training +W2GD = Phoenix Wright: Ace Attorney Justice for All W2GE = Phoenix Wright - Ace Attorney Justice for All -W2GF = Phoenix Wright - Ace Attorney Justice for All -W2GI = Phoenix Wright - Ace Attorney - Justice for All +W2GF = Phoenix Wright: Ace Attorney Justice for All +W2GI = Phoenix Wright: Ace Attorney Justice for All W2GJ = Gyakuten Saiban 2 -W2GP = Phoenix Wright - Ace Attorney Justice for All -W2GS = Phoenix Wright - Ace Attorney - Justice for All +W2GP = Phoenix Wright: Ace Attorney Justice for All +W2GS = Phoenix Wright: Ace Attorney Justice for All W2IE = Fishie Fishie W2IP = Fishie Fishie W2JE = Just JAM @@ -4946,11 +5010,11 @@ W2KP = Let's Catch W2LE = Bloons W2LP = Bloons W2ME = Blaster Master - Overdrive -W2MP = Blaster Master - Overdrive +W2MP = Blaster Master: Overdrive W2OE = My Aquarium 2 -W2OJ = Blue Oasis - Michinaru Shingai +W2OJ = Blue Oasis - Michinaru Shinkai W2OP = My Aquarium 2 -W2PP = Physio Fun - Pelvic Floor Training +W2PP = Physio Fun: Pelvic Floor Training W2TE = Drill Sergeant Mindstrong W2TJ = Onitore - Kyoukan wa Onigunsou W2TP = Brain Cadets @@ -4963,33 +5027,33 @@ W3BP = Soccer Bashi W3DJ = 3 Degrees Celcius W3FE = 3D Pixel Racing W3FP = 3D Pixel Racing -W3GD = Phoenix Wright - Ace Attorney Trials and Tribulations +W3GD = Phoenix Wright: Ace Attorney Trials and Tribulations W3GE = Phoenix Wright - Ace Attorney Trials and Tribulations -W3GF = Phoenix Wright - Ace Attorney Trials and Tribulations -W3GI = Phoenix Wright - Ace Attorney - Trials and Tribulations +W3GF = Phoenix Wright: Ace Attorney Trials and Tribulations +W3GI = Phoenix Wright: Ace Attorney Trials and Tribulations W3GJ = Gyakuten Saiban 3 -W3GP = Phoenix Wright - Ace Attorney Trials and Tribulations -W3GS = Phoenix Wright - Ace Attorney - Trials and Tribulations +W3GP = Phoenix Wright: Ace Attorney Trials and Tribulations +W3GS = Phoenix Wright: Ace Attorney Trials and Tribulations W3JE = Triple Jumping Sports W3KE = ThruSpace W3KJ = Surinuke Anatousu -W3KP = ThruSpace - High Velocity 3D Puzzle +W3KP = ThruSpace: High Velocity 3D Puzzle W3LE = Carmen Sandiego Adventures in Math - The Lady Liberty Larceny W3ME = The Three Musketeers - One For All -W3MP = The Three Musketeers - One For All +W3MP = The Three Musketeers: One For All W3PE = Triple Throwing Sports W3RE = Triple Running Sports W3SE = Triple Shot Sports W3TE = Pearl Harbor - Episode 1 - Red Sun Rising W42J = F-O-R-T-U-N-E - Hoshi no Furi Sosogu Oka W44E = Stop Stress - A Day of Fury -W44P = Stop Stress - A Day of Fury +W44P = Stop Stress: A Day of Fury W48E = ShadowPlay W4AE = Arcade Sports -W4AP = Arcade Sports +W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W4KE = Deer Captor W4KJ = Shika Gari -W4OJ = Shikakui Atama wo Maru Kusuru - Mainichi Minna no Challenge Hen +W4OJ = Shikakui Atama wo Maru Kusuru - Mainichi Minna de Challenge Hen W4TE = Spaceball Revolution W4TP = Spaceball Revolution W54E = 5 Spots Party @@ -4999,12 +5063,12 @@ W5AP = 5 Arcade Gems W5IE = 5-in-1 Solitaire W6BE = Eco Shooter - Plant 530 W6BJ = 530 Eco Shooter -W6BP = Eco Shooter - Plant 530 -W72P = Successfully Learning German - Year 3 -W73P = Successfully Learning German - Year 4 -W74P = Successfully Learning German - Year 5 -W7IP = Successfully Learning German - Year 2 -W82J = Jintori Action! Taikoukenchi - Karakuri Shiro no Nazo +W6BP = Eco Shooter: Plant 530 +W72P = Successfully Learning German Year 3 +W73P = Successfully Learning German Year 4 +W74P = Successfully Learning German Year 5 +W7IP = Successfully Learning German Year 2 +W82J = Jintori Action! Taikoukenchi - Karakuri Jo no Nazo W8BP = Babel Rising W8CE = Bit. Trip Core W8CJ = Bit. Trip Core - Rhythm Seijin no Gyakushou @@ -5014,7 +5078,7 @@ W8IJ = 81diver Wii W8LE = Balloon Pop Festival W8PJ = Ouchide Mugen Puti Puti W8WE = Happy Holidays - Halloween -W8WP = Happy Holidays - Halloween +W8WP = Happy Holidays: Halloween W8XE = Battle Poker W9BE = Big Town Shoot Out W9BP = Big Town Shoot Out @@ -5033,10 +5097,10 @@ WA4J = WarioWare - D.I.Y. Showcase WA4P = WarioWare D.I.Y. Showcase WA5E = Carmen Sandiego Adventures in Math - The Island of Diamonds WA7E = Toribash -WA7P = Toribash - Violence Perfected +WA7P = Toribash Violence Perfected WA8E = Art Style - ROTOZOA WA8J = Art Style Series - PENTA TENTACLES -WA8P = Art Style - PENTA TENTACLES +WA8P = Art Style: PENTA TENTACLES WAAE = Aya and the Cubes of Light WAAP = Aya and the Cubes of Light WABE = Art of Balance @@ -5046,10 +5110,10 @@ WACP = Arcade Essentials WAEE = Around the World WAEP = Around the World WAFE = Airport Mania - First Flight -WAFP = Airport Mania - First Flight +WAFP = Airport Mania: First Flight WAGE = Pinocchio's Puzzle WAHE = Trenches Generals -WAHP = Trenches Generals +WAHP = Trenches: Generals WAIE = 101-in-1 Explosive Megamix WAIP = 101-in-1 Explosive Megamix WAJE = MotoHeroz @@ -5057,7 +5121,7 @@ WAJP = MotoHeroz WAKE = Carmen Sandiego Adventures in Math - The Case of the Crumbling Cathedral WALE = Art Style - light trax WALJ = Art Style Series - Lightstream -WALP = Art Style - light trax +WALP = Art Style: light trax WAME = Carmen Sandiego Adventures in Math - The Great Gateway Grab WANE = Ant Nation WANP = Ant Nation @@ -5308,14 +5372,14 @@ WGOJ = Goo no Wakusei WGOP = World of Goo WGPE = AquaSpace WGPJ = Aqua Living - Terebi de Nagameru Sakanatachi -WGPP = Zenquaria - Virtual Aquarium -WGSD = Phoenix Wright - Ace Attorney +WGPP = Zenquaria: Virtual Aquarium +WGSD = Phoenix Wright: Ace Attorney WGSE = Phoenix Wright - Ace Attorney -WGSF = Phoenix Wright - Ace Attorney -WGSI = Phoenix Wright - Ace Attorney +WGSF = Phoenix Wright: Ace Attorney +WGSI = Phoenix Wright: Ace Attorney WGSJ = Gyakuten Saiban - Yomigaeru Gyakuten -WGSP = Phoenix Wright - Ace Attorney -WGSS = Phoenix Wright - Ace Attorney +WGSP = Phoenix Wright: Ace Attorney +WGSS = Phoenix Wright: Ace Attorney WGTJ = Sekai no Omoshiro Party Game WGUJ = Aero Guitar WGVE = Groovin' Blocks @@ -5501,7 +5565,7 @@ WMSP = Enjoy Your Massage! WMWP = Miffy's World WMWX = Miffy's World WMXE = Max & the Magic Marker -WMXJ = Rakugaki Hero +WMXJ = Max & the Magic Marker WMXP = Max & the Magic Marker WMZP = Mahjong WN9E = Military Madness - Nectaris @@ -5568,7 +5632,7 @@ WPCE = Doc Louis's Punch-Out!! WPDJ = Chindouchuu!! Paul no Daibouken WPFJ = Pokémon Fushigi no Dungeon - Susume! Honou no Boukendan WPGE = Snowpack Park -WPGJ = Penguin Seikatsu +WPGJ = Penguin Life WPHJ = Pokémon Fushigi no Dungeon - Mezase! Hikari no Boukendan WPIE = Pit Crew Panic! WPIJ = Pit Crew Panic! @@ -5671,11 +5735,11 @@ WSJP = Spot the Differences! WSLE = The Magic Obelisk WSLJ = Shadow Walker - Kage no Shounen to Hikari no Yousei WSME = Eat! Fat! FIGHT! -WSMJ = Tsuppari Oozumou Wii Heya +WSMJ = Tsuppari Oozumou Wii Beya WSMP = Eat! Fat! FIGHT! WSNE = Sonic the Hedgehog 4 - Episode I WSNJ = Sonic the Hedgehog 4 - Episode I -WSNP = Sonic the Hedgehog 4 - Episode I +WSNP = Sonic the Hedgehog 4 Episode I WSRE = Space Trek WSSP = Solitaire WSTJ = Tenshi no Solitaire @@ -5781,7 +5845,7 @@ WXRE = Reel Fishing - Ocean Challenge WXRP = Reel Fishing Ocean Challenge WYIE = escapeVektor - Chapter 1 WYIP = escapeVektor - Chapter 1 -WYKJ = Yomi Kiku Asobi Wii +WYKJ = Yomi Kikase Asobi Wii WYME = Yummy Yummy Cooking Jam WYMP = Yummy Yummy Cooking Jam WYSE = Yard Sale Hidden Treasures - Sunnyville @@ -6132,6 +6196,7 @@ FCWP = Super Mario Bros. 3 FCWQ = Super Mario Bros. 3 FCYE = Yoshi's Cookie FCYJ = Yoshi no Cookie +FCYK = Yoshi's Cookie FCYP = Yoshi's Cookie FCYT = Yoshi's Cookie FCZE = King's Knight @@ -6257,7 +6322,7 @@ FFNJ = Rockman 4 - Arata Naru Yabou!! FFNP = Mega Man 4 FFOJ = Moero! TwinBee - Cinnamon Hakushi wo Sukue! FFPB = Ufouria - The Saga -FFPJ = Hebereke +FFPJ = Furu Furu Park FFPP = Ufouria - The Saga FFQE = Shadow of the Ninja FFQM = Shadow of the Ninja @@ -6395,7 +6460,7 @@ JBNJ = Darius Twin JBOJ = Panel de Pon JBOQ = Panel de Pon JBPE = Donkey Kong Country 3 - Dixie Kong's Double Trouble! -JBPJ = Super Donkey Kong 3 - Nazo no Krems Shima +JBPJ = Super Donkey Kong 3 - Nazo no Krems Tou JBPP = Donkey Kong Country 3 - Dixie Kong's Double Trouble! JBQE = Kirby's Avalanche JBQJ = Kirby's Avalanche @@ -6411,7 +6476,7 @@ JBTJ = Super Turrican JBTP = Super Turrican JBUE = Super Turrican 2 JBUJ = Super Turrican Two -JBVJ = Langrisser, Der +JBVJ = Der Langrisser JBWE = Cybernator JBWJ = Jusou Kihei Valken JBWP = Cybernator @@ -6476,7 +6541,7 @@ JCWE = Super Mario Kart JCWJ = Super Mario Kart JCWP = Super Mario Kart JCXE = Nobunaga's Ambition -JCXJ = Super Nobunaga no Yabou - Zengoku Han +JCXJ = Super Nobunaga no Yabou - Zenkoku Ban JCYE = Uncharted Waters - New Horizons JCYJ = Daikoukai Jidai II JCZE = Genghis Khan II - Clan of the Gray Wolf @@ -6586,9 +6651,9 @@ NABE = Mario Kart 64 NABJ = Mario Kart 64 NABP = Mario Kart 64 NABT = Mario Kart 64 -NACE = The Legend of Zelda - Ocarina of Time +NACE = The Legend of Zelda: Ocarina of Time NACJ = Zelda no Densetsu - Toki no Okarina -NACP = The Legend of Zelda - Ocarina of Time +NACP = The Legend of Zelda: Ocarina of Time NADE = Star Fox 64 NADJ = Star Fox 64 NADP = Lylat Wars @@ -6616,15 +6681,15 @@ NAKF = Pokémon Snap NAKI = Pokémon Snap NAKJ = Pokémon Snap NAKP = Pokémon Snap -NAKS = Pokemon Snap +NAKS = Pokémon Snap NALE = Super Smash Bros. NALJ = Nintendo All-Star! Dairantou Smash Brothers NALP = Super Smash Bros. NAME = Kirby 64 - The Crystal Shards NAMJ = Hoshi no Kirby 64 -NAMP = Kirby 64 - The Crystal Shards +NAMP = Kirby 64: The Crystal Shards NAMT = Kirby 64 - The Crystal Shards -NAND = Poke╠ümon Puzzle League +NAND = Pokémon Puzzle League NANE = Pokémon Puzzle League NANF = Pokémon Puzzle League NANJ = Pokémon Puzzle League @@ -6636,7 +6701,7 @@ NAOT = 1080 Snowboarding NAPJ = Custom Robo V2 NARE = The Legend of Zelda - Majora's Mask NARJ = Zelda no Densetsu - Mujura no Kamen -NARP = The Legend of Zelda - Majora's Mask +NARP = The Legend of Zelda: Majora's Mask NASE = Cruis'n USA NASJ = Cruis'n USA NASP = Cruis'n USA @@ -6648,13 +6713,13 @@ NAUJ = Mario Golf 64 NAUP = Mario Golf NAYE = Ogre Battle 64 - Person of Lordly Caliber NAYJ = Ogre Battle 64 - Person of Lordly Caliber -NAYM = Ogre Battle 64 - Person of Lordly Caliber +NAYM = Ogre Battle 64: Person of Lordly Caliber NAZE = Mario Party 2 NAZJ = Mario Party 2 NAZP = Mario Party 2 NEEA = The Legend of Zelda: Ocarina of Time Master Quest +NMRE = SM64 Randomizer NTLC = Super Mario 64 Multiplayer -NZXM = Super Mario 64 Multiplayer LAAJ = Hokuto no Ken LABE = Fantasy Zone LABJ = Fantasy Zone @@ -6709,7 +6774,7 @@ MA3L = Puyo Puyo 2 MA4J = Bahamut Senki MA5J = Rent A Hero MA6E = Streets of Rage 2 -MA6J = Bare Knuckle II - Shitou he no Chinkon Uta +MA6J = Bare Knuckle II - Shitou he no Chinkonka MA6P = Streets of Rage 2 MA7E = Shining in the Darkness MA7J = Shining Darkness @@ -6770,7 +6835,7 @@ MAQE = Streets of Rage MAQJ = Bare Knuckle - Ikari no Tekken MAQP = Streets of Rage MARE = Beyond Oasis -MARJ = The Story of Thor - Hikari o Tsugu Mono +MARJ = The Story of Thor - Hikari wo Tsugu Mono MARP = The Story of Thor MASE = Vectorman MASJ = Vectorman @@ -6851,7 +6916,7 @@ MBPE = Super Thunder Blade MBPJ = Super Thunder Blade MBPP = Super Thunder Blade MBQE = Streets of Rage 3 -MBQJ = Bare Knuckle III - Tekken Seiten +MBQJ = Bare Knuckle III MBQP = Streets of Rage 3 MBRE = Rolling Thunder 2 MBRJ = Rolling Thunder 2 @@ -6939,7 +7004,7 @@ MCVP = Pitfall - The Mayan Adventure MCWE = Galaxy Force II MCWJ = Galaxy Force II MCWP = Galaxy Force II -MCXJ = Dragon Slayer: The Legend of Heroes +MCXJ = Dragon Slayer: The Legend of Heroes II MCYE = The Revenge of Shinobi MCYJ = The Super Shinobi MCYP = The Revenge of Shinobi @@ -7045,10 +7110,10 @@ PBEJ = Moto Roader PBEP = Moto Roader PBFJ = Fire ProWrestling - Combination Tag PBHE = Bonk's Revenge -PBHJ = PC Denjin 2 +PBHJ = PC Genjin 2 PBHP = Bonk's Revenge PBIE = Bonk 3 - Bonk's Big Adventure -PBIJ = PC Denjin 3 +PBIJ = PC Genjin 3 PBIP = Bonk 3 - Bonk's Big Adventure PBJE = Samurai Ghost PBJJ = Genpei Toumaden - Kan no Ni @@ -7103,6 +7168,7 @@ PCHJ = Drop Rock Hora Hora PCHP = Drop Off PCJJ = Override PCKJ = Gai Flame +PCMC = Gokuraku! Chuuka Taisen PCMJ = Mr. Heli no Daibouken PCNJ = Winning Shot PCOE = Psychosis @@ -7156,7 +7222,7 @@ QACN = Cho Aniki QADJ = Gradius II - Gofer no Yabou QADL = Gradius II - Gofer no Yabou QADN = Gradius II - Gofer no Yabou -QAEJ = The Path of the Warrior - Art of Fighting 3 +QAEJ = A.III.: A-Ressha de Ikou III QAFE = The Dynastic Hero QAFJ = Chou Eiyuu Densetsu - Dynastic Hero QAFP = The Dynastic Hero @@ -7205,7 +7271,7 @@ EA4J = Samurai Spirits - Zankuro Musouken EA4P = Samurai Shodown III EA5E = Fatal Fury 3 - Road to the Final Victory EA5J = Garou Densetsu 3 - Road to the Final Victory -EA5P = Fatal Fury 3 - Road to the Final Victory +EA5P = Fatal Fury 3: Road to the Final Victory EA6E = The King of Fighters '96 EA6J = The King of Fighters '96 EA6P = The King of Fighters '96 @@ -7344,14 +7410,14 @@ EBWE = Sengoku EBWJ = Sengoku Denshou EBWP = Sengoku EBXE = Sengoku 2 -EBXJ = Sengoku 2 +EBXJ = Sengoku Denshou 2 EBXP = Sengoku 2 EBZE = Real Bout Fatal Fury EBZJ = Real Bout Garou Densetsu EBZP = Real Bout Fatal Fury ECAE = Real Bout Fatal Fury 2 - The Newcomers ECAJ = Real Bout Garou Densetsu 2 - The Newcomers -ECAP = Real Bout Fatal Fury 2 - The Newcomers +ECAP = Real Bout Fatal Fury 2: The Newcomers ECCE = Metal Slug X ECCJ = Metal Slug X ECCP = Metal Slug X @@ -7549,8 +7615,8 @@ XAQJ = Salamander 5NEA = NWC24Editor HAAA = Photo Channel HABA = Wii Shop Channel -HABC = Wii Shop Channel -HABK = Wii Shop Channel +HABC = Wii Gòuwù Píndào +HABK = Wii Shopping Channel HACA = Mii Channel HACC = Mii Channel HACK = Mii Channel @@ -7559,19 +7625,20 @@ HADJ = Internet Channel HADP = Internet Channel HAFA = Forecast Channel HAFE = Forecast Channel -HAFJ = Forecast Channel +HAFJ = Otenki Channel HAFP = Forecast Channel HAGA = News Channel HAGE = News Channel HAGJ = News Channel HAGP = News Channel HAJE = Everybody Votes Channel -HAJJ = Everybody Votes Channel +HAJJ = Minna de Touhyou Channel HAJP = Everybody Votes Channel -HAKE = EULA -HAKJ = EULA -HAKK = EULA -HAKP = EULA +HAKC = Shǐyòng Xiéyì +HAKE = User Agreements +HAKJ = Riyou Kiyaku +HAKK = Iyong Yaggwan +HAKP = Agreement/Contact HALE = Region Select HALJ = Region Select HALK = Region Select @@ -7588,18 +7655,18 @@ HAVP = Today & Tomorrow Channel HAWE = Metroid Prime 3 Preview Channel HAWP = Metroid Prime 3 Preview Channel HAYA = Photo Channel -HAYC = Photo Channel +HAYC = Zhàopiàn Píndào HAYK = Photo Channel HBNJ = TV no Tomo Channel G Guide for Wii HC2D = Watchever HC3J = USB Flash Optimization HC4E = Crunchyroll HC4P = Crunchyroll -HCAJ = Daigasso Band Brothers DX Speaker Channel Shop -HCAP = Jam with the Band! Live +HCAJ = Daigassou! Brand Brothers DX Senyou Speaker Channel +HCAP = Jam with the Band Live Channel HCBJ = Photo Channel 1.0 Restore Program -HCCJ = Address Information -HCDJ = Digicam Print Channel +HCCJ = Address Settings +HCDJ = Digital Camera Print Channel HCFE = Wii Speak Channel HCFJ = Wii Speak Channel HCFK = Wii Speak Channel @@ -7611,15 +7678,15 @@ HCGX = Wii & the Internet HCHJ = Demae Channel HCIJ = Wii no Ma HCJP = BBC iPlayer -HCLE = Netflix +HCLE = Netflix instant streaming for Wii HCLP = Netflix HCMP = Kirby TV Channel HCQE = Hulu Plus HCQJ = Hulu -HCRE = The Legend of Zelda - Skyward Sword - Save Data Update Channel +HCRE = The Legend of Zelda: Skyward Sword - Save Data Update Channel HCRJ = Zelda Data Restoration Channel HCRK = Data Boggu Channel -HCRP = The Legend of Zelda - Skyward Sword - Save Data Update Channel +HCRP = The Legend of Zelda: Skyward Sword - Save Data Update Channel HCSE = Wii U Transfer Tool HCSJ = Wii U Transfer Tool HCSP = Wii U Transfer Tool @@ -7637,8 +7704,9 @@ HCXJ = YouTube HCXP = YouTube HCYE = Wii Menu Electronic Manual (Wii Mini) HCYJ = Wii U Main Unit Update Repair Program -HCYP = Wii Menu Manual (Mini Wii) -HFNJ = Wii Fit Body Check Channel +HCYP = Wii Menu Electronic Manual (Wii Mini) +HFNJ = Wii Fit Karada Check Channel +OSCW = Open Shop Channel RFNE = Wii Fit Channel RFNJ = Wii Fit Channel RFNK = Wii Fit Channel @@ -7646,8 +7714,9 @@ RFNP = Wii Fit Channel RFNW = Wii Fit Channel RFPE = Wii Fit Plus Channel RFPJ = Wii Fit Plus Channel +RFPK = Wii Fit Plus Channel RFPP = Wii Fit Plus Channel -RFPW = Wii Fit Plus Channel +RFPW = Wii Fit Plus Píndào RGWE = Rabbids Channel RGWJ = Rabbids Channel RGWP = Rabbids Channel @@ -7657,6 +7726,7 @@ RMCJ = Mario Kart Channel RMCK = Mario Kart Channel RMCP = Mario Kart Channel 9XGX = SNES9xGX +BA01 = Bad Apple!! PART 1 D01A = Wiimmfi Patcher D02A = Engine02 D03A = BrainSlug Wii @@ -8084,6 +8154,7 @@ DNRA = Newo Runner DNSA = Newo Shooter DNTA = NeoTanks DNUA = Wii Donut +DNUT = Wii Donut DNWA = Nowell DO2A = O2EM DO3A = Three Point O @@ -8333,16 +8404,18 @@ DZXA = FBZX Wii DZYA = Snake Two DZZA = OpenJazz FCEU = FCE Ultra GX +HACS = Mii Channel Symbols HWFL = HackWiiFlow JODI = Homebrew Channel LULZ = Homebrew Channel MAUI = Backup Homebrew Channel NK2O = Neek2o +NZXM = Super Mario 64 Multiplayer OHBC = Homebrew Channel PLUS = WiiMC+ PXWE = Project X: Love Potion Disaster RIIV = Riivolution -RMCX = Mario Kart Wii CTGP Revolution Channel +RMCX = CTGP Revolution Channel SEGA = Genesis Plus GX SMGX = SaveGame Manager GX SNTX = Snes9x TX @@ -8355,7 +8428,7 @@ WMH1 = Mother 1+2+3 WN64 = Wii64 WPSX = WiiSX 301E01 = GameCube Service Disc -D23J01 = Game Taikai Yuushou Kinen: Tokusei SmaBro DX Movie Disc +D23J01 = Game Taikai Nyuushou Kinen: Tokusei SmaBro DX Movie Disc D24J01 = SmaBro DX Event-you Disc D28J01 = Interactive Multi-Game Demo Disk - April 2002 D29J01 = Gekkan Nintendo Tentou Demo 2002.5.1 @@ -8612,6 +8685,7 @@ G6TE5G = Teen Titans G6TP78 = Teen Titans G6WE69 = Tiger Woods PGA Tour 06 G6WP69 = Tiger Woods PGA Tour 06 +G7FE69 = FIFA Soccer 07 G7ME69 = Madden NFL 07 G89EAF = Pac-Man World Rally G8FE8P = Virtua Quest @@ -8758,6 +8832,7 @@ GC3D78 = Scooby-Doo! Mystery Mayhem GC3E78 = Scooby-Doo!: Mystery Mayhem GC3F78 = Scooby-Doo! Mystery Mayhem GC3P78 = Scooby-Doo!: Mystery Mayhem +GC4EBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC4JBN = Shinseiki GPX Cyber Formula Road To The EVOLUTION GC5PNK = Cocoto: Kart Racer GC6E01 = Pokémon Colosseum @@ -8968,6 +9043,7 @@ GFGPA4 = Frogger Beyond GFHP6V = Neighbours from Hell GFIE69 = 2002 FIFA World Cup GFIJ13 = 2002 FIFA World Cup +GFJE69 = FIFA Soccer 06 GFKE69 = Freekstyle GFKP69 = Freekstyle GFMJAF = Family Stadium 2003 @@ -9021,10 +9097,10 @@ GGSPA4 = Metal Gear Solid: The Twin Snakes GGTE01 = Chibi-Robo! GGTJ01 = Chibi-Robo! GGTP01 = Chibi-Robo! -GGVD78 = Spongebob Squarepants: The Movie +GGVD78 = SpongeBob SquarePants: The Movie GGVE78 = SpongeBob SquarePants: The Movie -GGVP78 = Spongebob Squarepants: The Movie -GGVX78 = Spongebob Squarepants: The Movie +GGVP78 = SpongeBob SquarePants: The Movie +GGVX78 = SpongeBob SquarePants: The Movie GGYE41 = Tom Clancy's Ghost Recon 2 GGYP41 = Tom Clancy's Ghost Recon 2 GGZE52 = Madagascar @@ -9255,6 +9331,7 @@ GKZE9G = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GKZP54 = Codename Kids Next Door - Operation V.I.D.E.O.G.A.M.E GL2E51 = Legends of Wrestling II GL2P51 = Legends of Wrestling II +GL3EE8 = Lupin the Third - Lost Treasure Under the Sea GL3JE8 = Lupin The Third - Umi Ni Kieta Hihou GL5E4F = LEGO Star Wars: The Video Game GL5P4F = LEGO Star Wars: The Video Game @@ -9278,7 +9355,7 @@ GLGP41 = Largo Winch: Empire Under Threat GLHEG9 = Flushed Away GLHPG9 = Flushed Away GLIJA7 = Special Jinsei Game -GLJJMS = Radirgy +GLJJMS = Radirgy Generic GLLE78 = Ratatouille GLLF78 = Ratatouille GLME01 = Luigi's Mansion @@ -9324,6 +9401,7 @@ GM3E69 = Madden NFL 2003 GM3P69 = Madden NFL 2003 GM4E01 = Mario Kart: Double Dash!! GM4J01 = Mario Kart: Double Dash!! +GM4K01 = Mario Kart: Double Dash!! GM4P01 = Mario Kart: Double Dash!! GM5D7D = Metal Arms: Glitch in the System GM5E7D = Metal Arms: Glitch in the System @@ -9414,6 +9492,7 @@ GNDP69 = Need for Speed: Underground GNED78 = Finding Nemo GNEE78 = Finding Nemo GNEF78 = Finding Nemo +GNEK78 = Finding Nemo GNEP78 = Finding Nemo GNES78 = Finding Nemo GNFE5D = NFL Blitz 2002 @@ -9430,7 +9509,7 @@ GNMEAF = Namco Museum GNNE69 = NFL Street GNNP69 = NFL Street GNOE78 = Nicktoons Unite! -GNOX78 = Spongebob Squarepants & Friends: Unite! +GNOX78 = SpongeBob SquarePants & Friends: Unite! GNPP70 = Nickelodeon Party Blast GNQE69 = Madden NFL 2005 GNQP69 = Madden NFL 2005 @@ -9599,7 +9678,7 @@ GQSPAF = Tales of Symphonia GQSSAF = Tales of Symphonia GQTE4Q = Meet the Robinsons GQWE69 = Harry Potter: Quidditch World Cup -GQWJ13 = Harry Potter World Cup +GQWJ13 = Harry Potter: Quidditch World Cup GQWP69 = Harry Potter: Quidditch World Cup GQWX69 = Harry Potter: Quidditch World Cup GQXE69 = Madden NFL 2004 @@ -9933,7 +10012,7 @@ GWYE41 = Tom Clancy's Splinter Cell: Double Agent GWYX41 = Tom Clancy's Splinter Cell: Double Agent GWZE01 = Dance Dance Revolution: Mario Mix GWZJ01 = Dance Dance Revolution: Mario Mix -GWZP01 = Dancing Stage Mario Mix +GWZP01 = Dancing Stage: Mario Mix GX2D52 = X-Men Legends II: Rise of Apocalypse GX2E52 = X-Men Legends II: Rise of Apocalypse GX2P52 = X-Men Legends II: Rise of Apocalypse @@ -9971,6 +10050,7 @@ GXOX69 = SSX On Tour GXPE78 = Sphinx and the Cursed Mummy GXPP78 = Sphinx and the Cursed Mummy GXQF41 = Taxi 3: Le Jeu +GXQP41 = Taxi 3: The Game GXRE08 = Mega Man X: Command Mission GXRJ08 = Rockman X: Command Mission GXRP08 = Mega Man X: Command Mission diff --git a/Data/Sys/wiitdb-es.txt b/Data/Sys/wiitdb-es.txt index 87d1b198b9..1d8b0afa48 100644 --- a/Data/Sys/wiitdb-es.txt +++ b/Data/Sys/wiitdb-es.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: ES_unique version: 20230727194141) +TITLES = https://www.gametdb.com (type: Wii language: ES_unique version: 20241114210112) DCHJAF = We Cheer: Ohasta Produce ! Gentei Collabo Game Disc R22J01 = FlingSmash R23E52 = Barbie y las Tres Mosqueteras @@ -90,6 +90,7 @@ R9EPNP = Brico Party: ¡Cuidado! Mancha R9GPWR = Ga'Hoole: La Leyenda de los Guardianes R9LP41 = Girls Life: Pijama Party R9TK69 = Tiger Woods PGA Tour 09 +RAAE01 = Disco de Startup Wii RB9D78 = Bratz: La Película RB9P78 = Bratz: La Película RB9X78 = Bratz: La Película @@ -109,7 +110,7 @@ RC2E78 = Cars: Mater-National RC2P78 = Cars: La Copa Internacional de Mate RC2X78 = Cars: La Copa Internacional de Mate RC2Y78 = Cars: La Copa Internacional de Mate -RC3P41 = Catz: Diviértete con Nuevos Felinos +RC3P41 = Catz: ¡Diviértete con nuevos felinos! RC3X41 = Catz: Diviértete con Nuevos Felinos RC4SGT = Shin Chan: ¡Las Nuevas Aventuras para Wii! RC8P7D = Crash: Guerra al Coco-Maníaco @@ -187,6 +188,7 @@ RH5PKM = Horse Life 2: Amigos para Siempre RH6K69 = Harry Potter and the Half-Blood Prince RH6P69 = Harry Potter y el Misterio del Príncipe RHAK01 = Wii Play +RHAW01 = Wii Play RHKJ18 = Hataraku Hit RHKP18 = Job Island RHQP4Q = Hannah Montana: Únete a Su Gira Mundial @@ -199,6 +201,7 @@ RHZP41 = Horsez: El Valle del Rancho RI2P4Q = High School Musical: ¡Canta con ellos! RI8E41 = Brothers in Arms: Road to Hill 30 RI9PGT = Divagirls: Princesas Sobre Hielo +RIAE52 = Ice Age: Dawn of the Dinosaurs RIAI52 = Ice Age 3: El Origen de los Dinosaurios RIAP52 = Ice Age 3: El Origen de los Dinosaurios RIBPKM = Igor: El Videojuego @@ -225,7 +228,7 @@ RJAP52 = Call of Duty: Modern Warfare: Reflex RJAX52 = Call of Duty: Modern Warfare: Reflex RJDPKM = Mi Hospital de Animales RJFE5G = Fitness Ultimatum 2009 de Jillian Michaels -RJFPKM = Fitness Ultimatum 2009 con Jillian Michaels +RJFPKM = Ponte en forma con Jillian Michaels RJMPRS = Jumper RJNE20 = Build 'n Race RJOP99 = Ju-On: The Grudge @@ -437,7 +440,7 @@ RV9P78 = Avatar: La Leyenda de Aang - Dentro del Infierno RVAP78 = Avatar: La Leyenda de Aang - La Tierra Ardiente RVBPRS = Alvin y las Ardillas RVHP41 = Scrabble Interactivo: Edición 2009 -RVJPFR = So Blonde: Perdidos en el Caribe +RVJPFR = So Blonde: De Vuelta en la Isla RVKJ99 = Valhalla Knights: Elder Saga RVQP41 = Desafío Cine Party RVTFMR = Veterinarios en Acción @@ -499,6 +502,8 @@ RZRPGT = El Destino de El Zorro RZYF41 = Mi Experto en Vocabulario RZYP41 = Mi Experto en Vocabulario RZYS41 = Mi Experto en Vocabulario +S26PML = 2 en 1: Pony Friends 2 + Mi Granja de Caballos +S2VPAF = Victorious: Salto a la fama S2XE41 = Los Pitufos 2 S2XP41 = Los Pitufos 2 S2ZP52 = Zhu Zhu Pets: Los Amigos del Bosque @@ -507,6 +512,7 @@ S3BEWR = Batman: El Intrépido Batman S3BPWR = Batman: El Intrépido Batman S3DJ18 = Deca Sporta 3 S3EP78 = Barbie: Planeta Fashionista +S3EXVZ = Barbie: Planeta Fashionista S3MP69 = Los Sims 3 S3PP4Q = Disney Princesas: Reinos Mágicos S5BPKM = Regreso al Futuro: El juego @@ -524,6 +530,7 @@ SALE4Q = Alicia en el País de las Maravillas SALP4Q = Alicia en el País de las Maravillas SAOP78 = Monster High: Instituto Monstruoso SAOXVZ = Monster High: Instituto Monstruoso +SAVX5G = Alvin y las ardillas 2 SB2PNP = My Baby 2: ¡Mi Bebé Ha Crecido! SB4K01 = Super Mario Galaxy 2 SB6P52 = Bakugan: Defensores de la Tierra @@ -551,6 +558,7 @@ SCYZ4Q = Cars 2: El Videojuego SD2Y41 = Just Dance 2 (Edición Best Buy) SD6PTV = Éxito en Primaria: Inglés - Curso 1-4 SD7PTV = Éxito en Primaria: Matemáticas - Curso 1-4 +SDDPML = Sexos en Guerra: típicos tópicos SDFP4Q = Disney Sing It: Éxitos de película SDLP78 = La Gran Aventura de Dood SDMEG9 = Gru, Mi Villano Favorito @@ -608,11 +616,12 @@ SJDZ41 = Just Dance 3 (Edición Target) SJIEG9 = Fitness Ultimatum 2011 de Jillian Michaels SJME5G = Fitness Ultimatum 2010 de Jillian Michaels SJMPGT = Fitness Ultimatum 2010 de Jillian Michaels -SJXD41 = Just Dance 4 +SJXD41 = Just Dance 4 Edición Especial SK4E52 = Shrek: Felices Para Siempre SK4P52 = Shrek: Felices Para Siempre SK7PVZ = Disney Violetta: Ritmo & Música SK7XVZ = Disney Violetta: Ritmo & Música +SKYZ52 = Skylanders Giants SLAE78 = Airbender: El Último Guerrero SLAP78 = Airbender: El Último Guerrero SLAX78 = Airbender: El Último Guerrero (Edición Especial) @@ -636,7 +645,7 @@ SMNW01 = New Super Mario Bros. Wii (Chino Tradicional) SN4JDA = Naruto Shippuuden Ryujinki SNBP41 = NCIS Navy Investigación Criminal SNYEVZ = Monster High: 13 Deseos -SNYPVZ = Monster High: 13 Deseos +SNYPVZ = Monster High: 13 Monstruo-deseos SOTE52 = Wipeout SOUJ01 = The Legend of Zelda: Skyward Sword SP5PVV = The Kore Gang: La Exvasión de los Intraterrestres @@ -824,7 +833,6 @@ RJJG52 = Guitar Hero III Custom: JJ-KwiK's Edition RMCE88 = Mario Carritos Definitivo 3.0 RMCEB8 = Mario Kart Manía RMCEFO = Neptune777 Forza MAX Orígenes -RMCPCA = Mario Kart Wii (traducción al catalán) RMGE52 = Guitar Hero III Custom: Megadeth RMHC08 = Monster Hunter Tri (Personalizado) RMMP52 = Guitar Hero III Custom: Metal Mayhem @@ -835,6 +843,7 @@ RSFC99 = Muramasa: The Demon Blade (Personalizado) RSJESD = Guitar Hero III Custom: System of a Down RSYP06 = Super Smash Bros. Brawl: YF06's Mod RZDC01 = The Legend of Zelda: Twilight Princess (Personalizado) +RZDPCA = The Legend of Zelda: Twilight Princess (Traducción al catalán - Traducció al català) SB4C01 = Super Mario Galaxy 2 (Personalizado) SBOD3Q = SingItStar: Best of Disney SDUEO1 = DU Super Mario Bros.: DU Edition @@ -857,7 +866,6 @@ W2FP = Entrenamiento de Equilibrio Physiofun W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GE = Phoenix Wright: Ace Attorney Justice for All W2GP = Phoenix Wright Ace Attorney: Justice for All -W2GS = Phoenix Wright Ace Attorney: Justice for All W2JE = Just Jam W2ME = Blaster Master: Overdrive W2MP = Blaster Master Overdrive @@ -866,7 +874,6 @@ W3AE = Carmen Sandiego Adventures in Math: The Big Ben Burglary W3GD = Phoenix Wright: Ace Attorney - Trials and Tribulations W3GE = Phoenix Wright Ace Attorney: Trials and Tribulations W3GP = Phoenix Wright: Ace Attorney - Trials and Tribulations -W3GS = Phoenix Wright: Ace Attorney Trials and Tribulations W3KE = Thruspace W3KP = ThruSpace W3LE = Carmen Sandiego Adventures in Math: The Lady Liberty Larceny @@ -874,15 +881,10 @@ W3ME = The Three Musketeers: One for all W3MP = Los Tres Mosqueteros ¡Uno para todos! W3TE = Pearl Harbor Trilogy - 1941: Red Sun Rising W44E = Stop Stress: A Day of Fury -W44P = Stop Stress: A Day of Fury W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W5IE = 5 in 1 Solitaire W6BE = Eco Shooter: Plant 530 W6BP = Eco-Shooter: Plant 530 -W72P = Successfully Learning German Year 3 -W73P = Successfully Learning German Year 4 -W74P = Successfully Learning German Year 5 -W7IP = Successfully Learning German Year 2 W8CE = Bit.Trip Core W8CP = Bit.Trip Core W8WE = Happy Holidays: Halloween @@ -899,8 +901,6 @@ WA8E = Art Style: Rotozoa WA8P = Art Style: Penta Tentacles WAEE = Around The World WAFE = Airport Mania: First Flight -WAFP = Airport Mania: First Flight -WAHP = Trenches: Generals WAKE = Carmen Sandiego Adventures in Math: The Case of the Crumbling Cathedral WALE = Art Style: Light Trax WALP = Art Style: Light Trax @@ -946,7 +946,7 @@ WDHP = Art Style: Rotohex WDMJ = Dr. Mario & Bactericida WDMP = Dr. Mario & Bactericida WDPE = Dr. Mario Online Rx (Friend Battle Demo) -WDPP = Dr. Mario & Germ Buster (Friend Battle Demo) +WDPP = Dr. Mario & Bactericida (Demo Batalla Amistosa) WDRE = Mr Driller W WEME = Aha! I Got It! Escape Game WEMP = Aha! I Got It! Escape Game @@ -981,7 +981,6 @@ WGPP = Zenquaria: El Acuario Virtual WGSD = Phoenix Wright: Ace Attorney (Versión Alemana) WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) -WGSP = Phoenix Wright: Ace Attorney WGSS = Phoenix Wright: Ace Attorney (Textos en español) WHBE = Hubert the Teddy Bear: Winter Games WHEE = Heracles: Chariot Racing @@ -1130,6 +1129,7 @@ WWXE = Paper Wars: Cannon Fodder WWXP = Paper Wars Cannon Fodder WXBE = Ben 10 Alien Force The Rise of Hex WXBP = Ben 10: Alien Force - The Rise of Hex +WXIP = Éxito en primaria Inglés, curso 1º WXPE = Paint Splash! WXRE = Reel Fishing Ocean Challenge WYIE = escapeVektor: Chapter 1 @@ -1262,20 +1262,13 @@ JDWP = Aero The Acrobat JDZD = Mystic Quest Legend​ JDZF = Mystic Quest Legend​ JDZP = Mystic Quest Legend​ -NACE = The Legend of Zelda: Ocarina of Time -NACP = The Legend of Zelda: Ocarina of Time NAJ8 = The Legend of Zelda: Ocarina of Time (traducido al español) NAJN = Sin and Punishment -NAKS = Pokémon Snap NAME = Kirby 64: The Crystal Shards -NAMP = Kirby 64: The Crystal Shards -NAND = Pokémon Puzzle League NAOE = 1080° Snowboarding NAOP = 1080°: TenEighty Snowboarding NARE = The Legend of Zelda: Majora's Mask -NARP = The Legend of Zelda: Majora's Mask NAYE = Ogre Battle 64: Person of Lordly Caliber -NAYM = Ogre Battle 64: Person of Lordly Caliber LAFN = Secret Commando LAGE = Sonic the Hedgehog LAJE = Sonic the Hedgehog 2 @@ -1373,7 +1366,6 @@ EBQE = Ninja Master's EBSE = The Path of the Warrior: Art of Fighting 3 EBSP = The Path of the Warrior: Art of Fighting 3 ECAE = Real Bout Fatal Fury 2: The Newcomers -ECAP = Real Bout Fatal Fury 2: The Newcomers ECGE = Shock Troopers: 2nd Squad ECGP = Shock Troopers: 2nd Squad E54P = GHOSTS'N GOBLINS @@ -1403,6 +1395,8 @@ HAGJ = Canal Noticias HAGP = Canal Noticias HAJE = Canal Opiniones HAJP = Canal Opiniones +HAKE = Documentos legales/Contacto +HAKP = Contrato/Contacto HAPE = Canal Miirame HAPP = Canal Concursos Mii HATE = Canal Nintendo @@ -1411,12 +1405,24 @@ HAVP = Canal La fortuna te sonríe HAWE = Metroid Prime 3 Preview HAWP = Metroid Prime 3 Preview HAYA = Canal Fotos -HCAJ = Band Bros. DX Speaker Channel -HCAP = Jam with the Band Live +HCAP = Canal Jam with the Band Live +HCCJ = Ajustes de dirección HCFE = Canal Wii Speak HCFP = Canal Wii Speak +HCGP = Wii e Internet +HCGX = Wii e Internet +HCLE = Netflix +HCMP = Canal Kirby TV HCRE = The Legend of Zelda: Skyward Sword - Canal de actualización de datos de guardado -HCRP = The Legend of Zelda: Skyward Sword - Canal de actualización de datos de guardado +HCRP = The Legend of Zelda: Skyward Sword - Canal Actualización de datos +HCSP = Transferencia Wii U +HCTP = Transferencia de datos de Wii +HCYP = Manual Electrónico del Menú de Wii (Wii Mini) +RFNP = Canal Wii Fit +RFPE = Canal Wii Fit Plus +RFPP = Canal Wii Fit Plus +RGWP = Canal Rabbids +RGWX = Canal Rabbids RMCE = Canal Mario Kart RMCP = Canal Mario Kart D64A = Wii64 @@ -1429,10 +1435,12 @@ DSDA = SuperDump 1.3 JODI = Canal Homebrew LULZ = Canal Homebrew OHBC = Canal Homebrew +RMCX = Canal CTGP Revolution G3AS69 = El Señor de los Anillos: La Tercera Edad G3DX6L = Carmen Sandiego: El secreto de los tambores robados G3FS69 = TimeSplitters: Futuro Perfecto G4MP69 = Los Sims: Toman La Calle +G4ZP69 = Los Sims 2 G8MP01 = Paper Mario: La Puerta Milenaria G9TP52 = El Espantatiburones GAZS69 = Harry Potter y el prisionero de Azkaban @@ -1457,7 +1465,7 @@ GLNP69 = Looney Tunes: De Nuevo En Accion GLOS69 = El Señor de los Anillos: Las Dos Torres GNES78 = Buscando a Nemo GOYS69 = GoldenEye: Agente Corrupto -GPQP6L = Las Supernenas: Arrasando las Salsas +GPQP6L = Las Supernenas: Escabeche Mutante GPXP01 = Pokémon Box: Rubí y Zafiro GQQD78 = Bob Esponja: ¡Luces, Cámara, Esponja! GQQE78 = Bob Esponja: ¡Luces, Cámara, Esponja! @@ -1467,7 +1475,7 @@ GQQP78 = Bob Esponja: ¡Luces, Cámara, Esponja! GQWX69 = Harry Potter: Quidditch Copa del Mundo GR9P6L = El Imperio del Fuego GSXS64 = Star Wars: Las Guerras Clon -GTYP69 = Ty, el tigre de Tasmani +GTYP69 = Ty, el tigre de Tasmania GVLP69 = Marvel Némesis: La Rebelión de los Imperfectos GWHP41 = Winnie the Pooh: La Fiesta de Cumpleaños GX2S52 = X-Men Legends II: El Ascenso de Apocalipsis diff --git a/Data/Sys/wiitdb-fr.txt b/Data/Sys/wiitdb-fr.txt index 8a359b9a0b..4384aaf449 100644 --- a/Data/Sys/wiitdb-fr.txt +++ b/Data/Sys/wiitdb-fr.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: FR_unique version: 20230727194148) +TITLES = https://www.gametdb.com (type: Wii language: FR_unique version: 20241114210121) R22J01 = FlingSmash R23P52 = Barbie et les Trois Mousquetaires R25PWR = LEGO Harry Potter : Années 1 à 4 @@ -127,7 +127,7 @@ RCGP54 = Carnival: Fête Foraine RCIP41 = Les Experts : Morts Programmées RCKPGN = Sports Challenge : Defi Sports RCLP4Q = Chicken Little : Aventures Intergalactiques -RCOPNP = Détective Conan : Enquête +RCOPNP = Détective Conan : Enquête à Mirapolis RCVP41 = Far Cry : Vengeance RCXP78 = All Star Pom-pom Girl RD4PA4 = Dance Dance Revolution : Hottest Party 2 @@ -198,6 +198,7 @@ RH3P4Q = High School Musical 3 Dance! Nos Années Lycée RH5PKM = Horse Life : Amis pour la vie RH6P69 = Harry Potter et le Prince de Sang-Mêlé RH8P4F = Tomb Raider : Underworld +RHAW01 = Wii Play RHCP52 = The History Channel : Battle for the Pacific RHGP6Z = Agent Hugo : Lemoon Twist RHKP18 = Job Island @@ -598,6 +599,7 @@ SINPNG = We Sing : Robbie Williams SJ2PWR = Scooby-Doo! Panique dans la Marmite SJ9P41 = Just Dance 2 : Extra Songs SJTP41 = Just Dance : Best Of +SJXD41 = Just Dance 4 Edition Speciale SK4P52 = Shrek 4: Il Etait une Fin SK7PVZ = Disney Violetta : Rythme et musique SK7XVZ = Disney Violetta : Rythme et musique @@ -616,7 +618,7 @@ SMBP8P = Super Monkey Ball : Step & Roll SMFP4Q = Phineas et Ferb: Voyage dans la Deuxième Dimension SMGP78 = Megamind SMHPNK = Marvel Super Heroes 3D -SMSP78 = Marvel Super Hero Squad +SMSP78 = Marvel Super Hero Squad : Le Gant de l'Infini SN4XGT = Naruto Shippuden : Dragon Blade Chronicles SNBP41 = NCIS: Adapté de la série TV SNHP69 = Need for Speed @@ -687,14 +689,13 @@ RMCE88 = Le Mario Kare Deluxa por jatras RMCJ91 = Wiimms Mario Kart Fun 2021-09 Reservé RMCK91 = Wiimms Mario Kart Fun 2021-09 Reservé RMCP91 = Wiimms Mario Kart Fun 2021-09 Réservé -RMCPCA = Mario Kart Wii (traduction en catalan) +RZDPCA = The Legend of Zelda: Twilight Princess (traduction catalane) SBOD3Q = StarSing : Chansons Magiques de Disney v1.1 SILP4Q = SingItStar Latino SNBE66 = Nouveau Super Mario Bros. Wii Apocalypse W2CP = Cérébral Challenge W2FP = Entrainement d'équilibre Physiofun W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) -W2GF = Phoenix Wright: Ace Attorney: Justice for All W2GP = Phoenix Wright Ace Attorney : Justice for All W2MP = Blaster Master Overdrive W2PP = Programme de rééducation du périnée Physiofun @@ -707,10 +708,6 @@ W3MP = Les Trois Mousquetaires : Tous pour un! W44P = Stop Stress : A Day of Fury W4AP = Arcade Sports : Air Hockey, Bowling, Pool, Snooker W6BP = Eco-Shooter: Plant 530 -W72P = Successfully Learning German Year 3 -W73P = Successfully Learning German Year 4 -W74P = Successfully Learning German Year 5 -W7IP = Successfully Learning German Year 2 W8CP = Bit.Trip Core W8WP = Happy Holidays Halloween W9BP = Big Town Shoot @@ -719,8 +716,6 @@ WA4P = WarioWare : Do It Yourself - Showcase WA7P = Toribash - La violence perfectionnée WA8P = ArtStyle: Penta Tentacles WAEP = Around the world -WAFP = Airport Mania: First Flight -WAHP = Trenches: Generals WALP = Art Style : light trax WAOP = The Very Hungry Caterpillar´s ABC WB2P = Strong Bad Episode 4 : Dangeresque 3 @@ -761,7 +756,6 @@ WGGP = Gabrielle's Ghostly Groove: Monster Mix WGPP = Zenquaria L'aquarium Virtuel WGSE = Phoenix Wright: Ace Attorney WGSF = Phoenix Wright: Ace Attorney (French Version) -WGSP = Phoenix Wright: Ace Attorney WHEE = Heracles : Chariot Racing WHEP = Heracles : Chariot Racing WHFP = Heavy Fire: Special Operations @@ -853,6 +847,7 @@ WWRP = Excitebike: World Challenge WWXP = Paper Wars Cannon Fodder WXBE = Ben 10 Alien Force The Rise of Hex WXBP = Ben 10 Alien Force The Rise of Hex +WXIP = Succès au primaire : Anglais, CP WYIP = escapeVektor: Chapter 1 WYSP = Yard Sale Hidden Treasures Sunnyville WZIP = Rubik's Puzzle Galaxy : RUSH @@ -923,14 +918,11 @@ JDWP = Aero The Acrobat JDZF = Mystic Quest Legend​ NACP = The Legend of Zelda : Ocarina of Time NAJN = Sin and Punishment -NAKS = Pokémon Snap NAME = Kirby 64 : The Crystal Shards NAMP = Kirby 64 : The Crystal Shards -NAND = Pokémon Puzzle League NAOP = 1080°: TenEighty Snowboarding NARP = The Legend of Zelda : Majora's Mask NAYE = Ogre Battle 64: Person of Lordly Caliber -NAYM = Ogre Battle 64: Person of Lordly Caliber LALP = Fantasy Zone II LANP = Alex Kidd: The Lost Stars LAPP = Wonder Boy III: The Dragon's Trap @@ -990,7 +982,6 @@ EASE = Samurai Shodown 2 EBDP = Magical Drop 3 EBFP = Spin master EBSP = The Path of the Warrior: Art of Fighting 3 -ECAP = Real Bout Fatal Fury 2: The Newcomers ECGP = Shock Troopers: 2nd Squad E54P = GHOSTS'N GOBLINS E55P = Commando @@ -1006,30 +997,38 @@ HACK = Chaîne Mii HADE = Chaîne Internet HADP = Chaîne Internet HAFA = Chaîne météo +HAFE = Chaîne météo HAFP = Chaîne météo HAGA = Chaîne infos HAGE = Chaîne infos HAGJ = Chaîne infos HAGP = Chaîne infos HAJP = Chaîne votes +HAKE = Documents légaux/Contact +HAKP = Contrat/Contact HAPE = Chaîne Regardez-Mii HAPP = Chaîne concours Mii +HATE = Chaîne Nintendo HATP = Chaîne Nintendo HAVP = Chaîne jour de chance HAWP = Metroid Prime 3 Preview HAYA = Chaîne photos HAYK = Chaîne Photo -HCAP = Jam with the Band Live +HCAP = Chaîne Jam with the Band Live +HCCJ = Paramètres d'adresse HCFE = Chaîne Wii Speak HCFP = Chaîne Wii Speak +HCGP = Wii et Internet HCMP = Chaîne Kirby TV HCRE = The Legend of Zelda: Skyward Sword - Chaîne mise à jour des données HCRP = The Legend of Zelda: Skyward Sword - Chaîne mise à jour des données +RFPE = Chaîne Wii Fit Plus +RFPP = Chaîne Wii Fit Plus RMCE = Chaîne Mario Kart RMCP = Chaîne Mario Kart DNUA = Donut Wii OHBC = Chaîne Homebrew -RMCX = Chaîne Mario Kart Wii CTGP Revolution +RMCX = Chaîne CTGP Revolution G2FF78 = Tak 2: Le Sceptre des Rêves G3AF69 = Le Seigneur des Anneaux: Le Tiers Âge G3DP6L = Carmen Sandiego : Le Secret des Tam-Tams Volés @@ -1057,7 +1056,6 @@ GENF69 = James Bond 007: Quitte ou Double GF4F52 = Les 4 Fantastiques GFHP6V = Un Voisin d'Enfer! GFSF69 = Coupe du Monde FIFA 2002 -GGVX78 = Bob l'Eponge : Le Film GH2P69 = Need for Speed : Poursuite Infernale 2 GH4F69 = Harry Potter et la Coupe de Feu GH5F52 = Nos Voisins, les Hommes diff --git a/Data/Sys/wiitdb-it.txt b/Data/Sys/wiitdb-it.txt index 92a041b28c..839e5d00df 100644 --- a/Data/Sys/wiitdb-it.txt +++ b/Data/Sys/wiitdb-it.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: IT_unique version: 20230727194156) +TITLES = https://www.gametdb.com (type: Wii language: IT_unique version: 20241114210129) R23P52 = Barbie e le Tre Moschettiere R25PWR = LEGO Harry Potter: Anni 1-4 R2AP7D = L'Era Glaciale 2: Il Disgelo @@ -298,6 +298,7 @@ SIAI52 = L'Era Glaciale 4: Continenti alla Deriva - Giochi Polari SIIP8P = Mario & Sonic ai Giochi Olimpici di Londra 2012 SJ2PWR = Scooby-Doo! e la palude del mistero SJ9P41 = Just Dance 2 - Extra Songs +SJXD41 = Just Dance 4 Edizione Speciale SK4I52 = Shrek e vissero felici e contenti SK4P52 = Shrek: E Vissero Felici E Contenti SK7PVZ = Disney Violetta: Musica e Ritmo @@ -356,40 +357,29 @@ G01E01 = Super Smash Bros. Melee: Remix SD MILPSI = SingItStar Miliki R15POH = SingItStar Radio 105 RGGE52 = Guitar Hero III Custom: Rock The Games -RMCPCA = Mario Kart Wii (traduzione in catalano) RSJESD = Guitar Hero III Custom: System Of A Down +RZDPCA = The Legend of Zelda: Twilight Princess (traduzione in catalano) S02PES = SingItStar 90's SILP4Q = Sing It: Latino SP9P4Q = SingItStar POP 2009 WFFF4I = Fatal Frame 4: La Maschera dell'eclissi lunare W2CP = Brain Challenge L'Allena-Mente -W2FP = Physiofun - Balance Training +W2FP = Physiofun: Balance Training W2GD = Phoenix Wright Ace Attorney: Justice for All (Deutsche Version) W2GI = Phoenix Wright: Ace Attorney: Justice for All W2GP = Phoenix Wright Ace Attorney: Justice for All -W2MP = Blaster Master: Overdrive W2PP = Physiofun: Pelvic Floor Training W3GI = Phoenix Wright: Ace Attorney: Trials and Tribulations -W3KP = ThruSpace: High Velocity 3D Puzzle W3MP = I Tre Moschettieri Uno per tutti! -W44P = Stop Stress: A Day of Fury W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W6BP = 530 ECO SHOOTER -W72P = Successfully Learning German Year 3 -W73P = Successfully Learning German Year 4 -W74P = Successfully Learning German Year 5 -W7IP = Successfully Learning German Year 2 W8CP = Bit.Trip Core W8WP = Happy Holidays Halloween W9BP = Big Town Shoot W9RP = Happy Holidays Christmas WA4P = WarioWare: Do It Yourself - Showcase -WA7P = Toribash Violence Perfected WA8P = Art Style: Penta Tentacles WAEP = Around the world -WAFP = Airport Mania: First Flight -WAHP = Trenches: Generals -WALP = Art Style: light trax WAOP = The Very Hungry Caterpillar´s ABC WB2P = Strong Bad Episode 4: Dangeresque 3 WB3P = Strong Bad Episode 5: 8-bit is Enough @@ -423,8 +413,6 @@ WGFP = Girlfriends Forever: Magic Skate WGGP = Gabrielle's Ghostly Groove: Monster Mix WGPP = Zenquaria™: Acquario virtuale WGSF = Phoenix Wright: Ace Attorney (French Version) -WGSI = Phoenix Wright: Ace Attorney -WGSP = Phoenix Wright: Ace Attorney WHEP = Heracles: Chariot Racing WHFP = Heavy Fire: Special Operations WHRP = Heron: Steam Machine @@ -557,12 +545,7 @@ JDLP = Super Star Wars: Return of the Jedi JDWP = Aero The Acrobat JDZP = Mystic Quest Legend​ JECM = CHRONO TRIGGER -NACP = The Legend of Zelda: Ocarina of Time -NAKS = Pokémon Snap -NAMP = Kirby 64: The Crystal Shards NAOP = 1080°: TenEighty Snowboarding -NARP = The Legend of Zelda: Majora's Mask -NAYM = Ogre Battle 64: Person of Lordly Caliber LALP = Fantasy Zone II LANP = Alex Kidd: The Lost Stars LAPP = Wonder Boy III: The Dragon's Trap @@ -615,7 +598,6 @@ EAIP = Top Hunter EBDP = Magical Drop 3 EBFP = Spin master EBSP = The Path of the Warrior: Art of Fighting 3 -ECAP = Real Bout Fatal Fury 2: The Newcomers ECGP = Shock Troopers: 2nd Squad E54P = GHOSTS'N GOBLINS E55P = Wolf of the Battlefield: Commando @@ -631,20 +613,24 @@ HADE = Canale Internet HADP = Canale Internet HAFP = Canale Meteo HAGA = Canale Notizie -HAGE = Canale Notizie HAGJ = Canale Notizie HAGP = Canale Notizie HAJP = Canale Vota Anche Tu +HAKP = Accordo/Contatto HAPP = Canale Concorsi Mii HATP = Canale Nintendo -HAVP = Canal La fortuna ti sorride +HAVP = Canale La fortuna ti sorride HAWP = Metroid Prime 3 Preview HAYA = Canale Foto +HCAP = Canale Jam with the Band Live +HCCJ = Impostazioni indirizzo HCFE = Canale Wii Speak HCFP = Canale Wii Speak +HCGP = Wii e Internet HCMP = Canale TV Kirby HCRE = The Legend of Zelda: Skyward Sword - Canale Aggrioornamento dati di HCRP = The Legend of Zelda: Skyward Sword - Canale Aggrioornamento dati di +RFPP = Canale Wii Fit Plus RMCP = Canale Mario Kart JODI = Canale Homebrew LULZ = Canale Homebrew diff --git a/Data/Sys/wiitdb-ja.txt b/Data/Sys/wiitdb-ja.txt index bd15a17d31..c9afcbe649 100644 --- a/Data/Sys/wiitdb-ja.txt +++ b/Data/Sys/wiitdb-ja.txt @@ -1,6 +1,7 @@ -TITLES = https://www.gametdb.com (type: Wii language: JA_unique version: 20240420135206) +TITLES = https://www.gametdb.com (type: Wii language: JA_unique version: 20241114210137) D2AJAF = みんなで冒険!ファミリートレーナー 体験版 DCHJAF = WE CHEER: おはスタプロデュース!限定コラボゲームディスク +DFNJ01 = Wiiフィット 体験版 DHHJ8J = 平野綾 Premiumムービーディスク from 涼宮ハルヒの激動 DK6J18 = コロリンパ2 -アンソニーと黃金のひまわりのタネ- DMHJ08 = モンスターハンター 3 -tri- (Demo) @@ -17,7 +18,7 @@ R2GJAF = FRAGILE 〜さよなら月の廃墟〜 R2JJAF = 太鼓の達人Wii R2LJMS = Hula Wii フラで始める 美と健康!! R2PJ9B = スイングゴルフ パンヤ 2ndショット! -R2QJC0 = クッキングママ 2 たいへん!!ママはおおいそがし! +R2QJC0 = クッキングママ2 たいへん!!ママはおおいそがし! R2SJ18 = DECA SPORTA 2 Wiiでスポーツ”10”種目! R2UJ8P = レッツタップ R2VJ01 = 罪と罰 宇宙の後継者 @@ -396,6 +397,7 @@ S5KJAF = 太鼓の達人Wii 超ごうか版 S5QJC8 = 戦国無双 3 猛将伝 S5SJHF = イナズマイレブンGO ストライカーズ 2013 S6TJGD = ドラゴンクエストX オールインワンパッケージ +S72E01 = 星のカービィ 20周年スペシャルコレクション S72J01 = 星のカービィ 20周年スペシャルコレクション S7CJAF = 仮面ライダー クライマックスヒーローズ フォーゼ SAAJA4 = ウイニングイレブン プレーメーカー 2013 @@ -434,7 +436,7 @@ SGIJA4 = GTI Club ワールド シティ レース SGKJC8 = チャンピオンジョッキー:ギャロップレーサー&ジーワンジョッキー SGVJAF = ゴーバケーション SH2JMS = Hula Wii 楽しくフラを踴ろう!! -SHIJ2N = シェイプボクシング 2 Wiiでエンジョイダイエット! +SHIJ2N = シェイプボクシング2 Wiiでエンジョイダイエット! SIIE8P = マリオ&ソニック AT ロンドンオリンピック SIIJ01 = マリオ&ソニック AT ロンドンオリンピック SIIP8P = マリオ&ソニック AT ロンドンオリンピック @@ -500,6 +502,7 @@ STKJ08 = タツノコ VS.カプコン アルティメットオール・スター STQJHF = イナズマイレブン ストライカーズ SUKE01 = 星のカービィWii SUKJ01 = 星のカービィWii +SUKP01 = 星のカービィWii SUMJC8 = ウイニングポストワールド 2010 SUPJ01 = Wiiパーティー SUXJA4 = ウイニングイレブン プレーメーカー 2010 @@ -564,7 +567,7 @@ W4KJ = 鹿狩 W4OJ = シカクいアタマをマルくする。 毎日みんなでチャレンジ編 W6BJ = 530 エコシューター W82J = 陣取りアクション! 太閤検地 ~からくり城のナゾ~ -W8CJ = BIT. TRIP CORE ~リズム星人の逆襲~ +W8CJ = BIT.TRIP CORE ~リズム星人の逆襲~ W8DJ = メビウス・ドライブ W8IJ = ハチワンダイバー -81diver- Wii W8PJ = おうちで∞プチプチWii @@ -587,7 +590,7 @@ WBAJ = バクたん WBBJ = ボードウォリアーズ WBJJ = 牧場物語シリーズ まきばのおみせ WBKJ = ARKANOID Plus! -WBLJ = BUBBLE BOBBLE Wii +WBLJ = バブルボブルWii WBMJ = みんなのポケモン牧場 プラチナ対応版 WBNJ = 盆栽バーバー WBSJ = POP ~ポップ~ @@ -760,8 +763,8 @@ WZJJ = @SIMPLEシリーズ Vol.5 THE 柔道 WZMJ = @SIMPLEシリーズ Vol.3 THE 麻雀 WZPJ = ゾンビ イン ワンダーランド WZZJ = くまなげ ~ピイナの好きな赤いキャンディ パズル編~ -XHCJ = 光と闇の姫君と世界征服の塔 -FINAL FANTASY CHRISTAL CHRONICLES- (Demo) -XHEJ = BIT. TRIP BEAT (Demo) +XHCJ = 光と闇の姫君と世界征服の塔 -FINAL FANTASY CRYSTAL CHRONICLES- (Demo) +XHEJ = BIT.TRIP BEAT (Demo) XHFJ = グーの惑星 (Demo) XHHJ = ポケモン不思議のダンジョン めざせ!光の冒険団 (Demo) XHJJ = すりぬけアナトウス (Demo) @@ -1003,6 +1006,7 @@ JCYJ = 大航海時代Ⅱ JCZJ = スーパー蒼き狼と白き牝鹿 元朝秘史 JD2J = 美少女雀士 スーチーパイ JD3J = SUPER E.D.F. EARTH DEFENSE FORCE +JD4J = ラッシングビート JD5J = ラッシング・ビート 乱 複製都市 JD6J = ファイヤー・ファイティング JD7J = 高橋名人の大冒険島 @@ -1577,7 +1581,7 @@ E36J01 = 月刊任天堂店頭デモ 2006年08月号 E37J01 = 月刊任天堂店頭デモ 2006年09月号 G2DJB2 = デジモンバトルクロニクル G2GJB2 = 機動戦士ガンダム ガンダムvs.Zガンダム -G2MJ01 = メトロイドプライム 2 ダークエコーズ +G2MJ01 = メトロイドプライム2 ダークエコーズ G2NJ13 = ニード・フォー・スピード アンダーグラウンド 2 G2SJGE = 式神の城Ⅱ G2VJ08 = ビューティフルジョー 2 ブラックフィルムの謎 @@ -1629,7 +1633,7 @@ GBZJ08 = バイオハザード 0 GC4JBN = 新世紀GPXサイバーフォーミュラ Road To The Evolution GC6J01 = ポケモンコロシアム GC8JA4 = クラッシュ・バンディクー 爆走!ニトロカート -GCBJA4 = クラッシュ・バンディクー 4 さくれつ!魔神パワー +GCBJA4 = クラッシュ・バンディクー4 さくれつ!魔神パワー GCCJ01 = FINAL FANTASY CRYSTAL CHRONICLES GCCJGC = FINAL FANTASY CRYSTAL CHRONICLES GCDJ08 = バイオハザード -コード:ベロニカ- 完全版 @@ -1718,7 +1722,9 @@ GKRJB2 = ケロケロキングDX GKTJA4 = キャプテン翼 ~黄金世代の挑戦~ GKWJ18 = ドリームミックスTV ワールドファイターズ GKXJE7 = 極・麻雀DXⅡ ~The 4th MONDO21Cup~ +GKYE01 = カービィのエアライド GKYJ01 = カービィのエアライド +GKYP01 = カービィのエアライド GL3JE8 = ルパン三世:海に消えた秘宝 GLEJ08 = バイオハザード 3 ラストエスケープ GLIJA7 = SPECIAL人生ゲーム @@ -1830,7 +1836,9 @@ GYBJ01 = ドンキーコング ジャングルビート GYFJA4 = 遊戯王 フォルスバウンドキングダム 虚構に閉ざされた王国 GYKJB2 = 金色のガッシュベル!! 友情タッグバトル2 GYMJA4 = 実況パワフルメジャーリーグ +GYQE01 = スーパーマリオスタジアム ミラクルベースボール GYQJ01 = スーパーマリオスタジアム ミラクルベースボール +GYQP01 = スーパーマリオスタジアム ミラクルベースボール GYWJ99 = 牧場物語 ワンダフルライフ GZ2J01 = ゼルダの伝説 トワイライトプリンセス [GC] GZBJB2 = ドラゴンボールZ diff --git a/Data/Sys/wiitdb-ko.txt b/Data/Sys/wiitdb-ko.txt index 9e55c7bafc..df7ab51b2e 100644 --- a/Data/Sys/wiitdb-ko.txt +++ b/Data/Sys/wiitdb-ko.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: KO_unique version: 20230727194210) +TITLES = https://www.gametdb.com (type: Wii language: KO_unique version: 20241114210146) 091E00 = 영화 채널 설치 디스크 Ver. A 410E01 = Wii 백업 디스크 v1.31 413E01 = 디스크업데이트 디스크 @@ -31,7 +31,6 @@ DQGP69 = 마이심즈 레이싱 체험판 DRME18 = 룸즈: 메인 빌딩 체험판 DSFE7U = 무라마사: 데몬 블레이드 체험판 DSRJ8P = 소닉과 비밀의 링 체험판 -DTOJ8P = 428: 봉쇄된 시부야에서 체험판 DTZJ08 = 보물섬 Z 발바로스의 보물 체험판 DWEJA4 = 위닝 일레븐 플레이 메이커 2008 체험판 DWEPA4 = 프로 에볼루션 사커 2008 체험판 @@ -134,12 +133,12 @@ R3JE5G = 고 플레이 써커스 스타 R3KP6N = 고층 건물 R3LEWR = 그린 랜턴: 반지의 선택 R3LPWR = 그린 랜턴: 맨헌터의 위협 -R3ME01 = 메트로이드 프라임: 3부작 -R3MP01 = 메트로이드 프라임: 3부작 +R3ME01 = 메트로이드 프라임 트릴로지 +R3MP01 = 메트로이드 프라임 트릴로지 R3NEXS = 길티기어 이그젝스 액센트 코어 플러스 R3NPH3 = 길티기어 이그젝스 액센트 코어 플러스 -R3OE01 = 메트로이드: 다른 M -R3OJ01 = 메트로이드: 다른 M +R3OE01 = 메트로이드: 또 다른 M +R3OJ01 = 메트로이드: 또 다른 M R3OP01 = 메트로이드: 다른 M R3PEWR = 스피드 레이서: 비디오게임 R3PJ52 = 스피드 레이서 @@ -445,10 +444,10 @@ R92J01 = Wii로 즐기는 피크민 2 R92P01 = 피크민 2 R94PMR = 얼티밋 레드 볼 첼린지 R94XMR = 얼티밋 레드 볼 첼린지 -R96EAF = 바람의 크로노아 - 판토마일의 문 -R96JAF = 바람의 크로노아 - 판토마일의 문 -R96KAF = 바람의 크로노아: 판토마일의 문 -R96PAF = 바람의 크로노아 - 판토마일의 문 +R96EAF = 바람의 크로노아 Door to Phantomile +R96JAF = 바람의 크로노아 Door to Phantomile +R96KAF = 바람의 크로노아 Door to Phantomile +R96PAF = 바람의 크로노아 Door to Phantomile R97E9B = 패밀리 펀 풋볼 R9AE52 = 엑티비젼 데모 액션 팩 체험판 R9BPMT = 뚝딱뚝딱 밥아저씨: 즐거운 축제 @@ -500,8 +499,8 @@ RB4X08 = 레지던트 이블 4: Wii 에디션 RB5E41 = 브라더스 인 암즈: 언드 인 블러드 RB5P41 = 브라더스 인 암즈: 언드 인 블러드 RB6J18 = 봄버맨 -RB7E54 = 불리: 장학금 에디션 -RB7P54 = 불리: 장학금 에디션 +RB7E54 = 불리: 스칼라쉽 에디션 +RB7P54 = 불리: 스칼라쉽 에디션 RB8E70 = 백야드 야구 '09 RB9D78 = 브라츠: 영화 RB9E78 = 브라츠: 영화 @@ -576,7 +575,7 @@ RC3E41 = 애완동물 고양이들 2 RC3J41 = 고양이와 마법의 모자 RC3P41 = 고양이들 RC3X41 = 고양이들 -RC4JD9 = 크레용 신 짱: 최강 가족 카스카베 왕 Wii +RC4JD9 = 크레용 신 짱: 최강 가족 카스카베 킹 Wii RC4SGT = 짱구는 못말려: 새로운 모험 Wii RC5JDQ = 청소 전대 크린 키퍼 RC7E20 = 바다 몬스터들: 선사시대 모험 @@ -618,7 +617,7 @@ RCLE4Q = 디즈니의 치킨 리틀: 액션 에이스 RCLP4Q = 디즈니의 치킨 리틀: 액션 에이스 RCOJ99 = 명탐정 코난: 추억의 환상 RCOK99 = 명탐정 코난: 추억의 환상 -RCOKZF = 명탐정 홈즈 추억의 환상 +RCOKZF = 명탐정 코난: 추억의 환상 RCOPNP = 명탐정 코난: 추억의 환상 RCPE18 = 코로린파: 구슬 매니아 RCPJ18 = 코로린파 @@ -1095,10 +1094,10 @@ RK2JEB = 트라우마 센터: 새로운 피 RK2P01 = 트라우마 센터: 새로운 피 RK3J01 = 앤드 검색 RK4JAF = 결계사: 흑망루의 그림자 -RK5E01 = 털실 커비의 이야기 -RK5J01 = 털실 커비의 이야기 -RK5K01 = 털실 커비의 이야기 -RK5P01 = 털실 커비의 이야기 +RK5E01 = 털실 커비 이야기 +RK5J01 = 털실 커비 이야기 +RK5K01 = 털실 커비 이야기 +RK5P01 = 털실 커비 이야기 RK6E18 = 구슬 이야기: 코로린파 RK6J18 = 코로린파 2 - 앤써니와 황금 해바라기 씨앗 RK6P18 = 마블! 균형 도전 @@ -1255,12 +1254,11 @@ RM9PGM = 버섯맨: 포자 대전 RMAE01 = 마리오 파워 테니스 RMAJ01 = Wii로 즐기는 마리오 테니스 GC RMAP01 = 마리오 파워 테니스 -RMBE01 = 마리오 슈퍼 강타자들 -RMBJ01 = 슈퍼 마리오 스타디움 패밀리 야구 +RMBE01 = 마리오 슈퍼 슬러거즈 +RMBJ01 = 슈퍼 마리오 스타디움 패밀리 베이스볼 RMCE01 = 마리오 카트 Wii RMCJ01 = 마리오 카트 Wii RMCK01 = 마리오 카트 Wii -RMCK50 = Wiimms 마리오 카트-텍스쳐즈 2022-12.한국 RMCKBR = 마리오 카트 Brown RMCP01 = 마리오 카트 Wii RMDE69 = 매든 NFL 07 @@ -1302,7 +1300,7 @@ RMRXNK = 코코토 매직 써커스 RMSE52 = 마벨: 얼티밋 얼라이언스 2 RMSP52 = 마벨: 얼티밋 얼라이언스 2 RMTJ18 = 모모타로 전철 16 홋카이도 대이동의 권! -RMUE52 = 마벨: 얼티밋 얼라이언스 +RMUE52 = 마블: 얼티밋 얼라이언스 RMUJ2K = 마벨: 얼티밋 얼라이언스 RMUP52 = 마벨: 얼티밋 얼라이언스 RMVE69 = 메달 오브 아너: 선봉 @@ -1671,7 +1669,7 @@ RS3P52 = 스파이더맨 3 RS3X52 = 스파이더맨 3 RS4EXS = 식신의 성 III RS4JJF = 식신의 성 III -RS4PXS = 식신의 성 III +RS4PH3 = 식신의 성 III RS5EC8 = 사무라이 전사들: 카타나 RS5JC8 = 전국무쌍 카타나 RS5PC8 = 사무라이 전사들: 카타나 @@ -1684,7 +1682,7 @@ RSAE78 = 스펀지밥 - 아틀란티스 RSAP78 = 스펀지밥 - 아틀란티스 RSBE01 = 대난투 스매시 브라더스 X RSBJ01 = 대난투 스매시 브라더스 X -RSBK01 = 대난투 스매시 브라더스 +RSBK01 = 대난투 스매시 브라더스 X RSBP01 = 대난투 스매시 브라더스 X RSCD7D = 스카페이스: 세상은 너의 것 RSCE7D = 스카페이스: 세상은 너의 것 @@ -1708,10 +1706,10 @@ RSJP41 = 파검: 기사단의 그림자 (감독판) RSKE52 = 슈렉 3 RSKP52 = 슈렉 3 RSKX52 = 슈렉 3 -RSLEAF = 소울 칼리버: 전설들 -RSLJAF = 소울 칼리버: 전설들 -RSLKAF = 소울칼리버: 전설들 -RSLPAF = 소울 칼리버: 전설들 +RSLEAF = 소울 칼리버 레전즈 +RSLJAF = 소울 칼리버 레전즈 +RSLKAF = 소울 칼리버 레전즈 +RSLPAF = 소울 칼리버 레전즈 RSME8P = 슈퍼 몽키 볼: 바나나 블리츠 RSMJ8P = 슈퍼 몽키 볼: 우키 우키 파티 대집합 RSMP8P = 슈퍼 몽키 볼: 바나나 블리츠 @@ -1788,10 +1786,10 @@ RTDK8M = 신중화대선 ~마이클과 메이메이의 모험~ RTEE78 = 파우스 & 클라우스 : 애완동물 수의사 RTEHMR = 실제 이야기들: 수의사 RTEPFR = 나의 수의사 연습 -RTFE52 = 트랜스포머즈: 게임 -RTFJ52 = 트랜스포머즈: 게임 -RTFK52 = 트랜스포머즈: 더 게임 -RTFP52 = 트랜스포머즈: 게임 +RTFE52 = 트랜스포머: 더 게임 +RTFJ52 = 트랜스포머: 더 게임 +RTFK52 = 트랜스포머: 더 게임 +RTFP52 = 트랜스포머: 더 게임 RTFX52 = 트랜스포머즈: 게임 RTFY52 = 트랜스포머즈: 게임 RTGJ18 = 엄선 테이블 게임 Wii @@ -1932,7 +1930,6 @@ RVEFMR = 알로, 슈티 RVFE20 = 빅풋: 충돌 진로 RVFP7J = 빅풋: 충돌 진로 RVGE78 = 머브 그리핀의 십자말풀이 -RVGP78 = 마곳의 워드 브레인 RVHP41 = 스크래블 인터렉티브: 2009 에디션 RVIE4F = 바이오니클 히어로즈 RVIP4F = 바이오니클 히어로즈 @@ -2345,8 +2342,8 @@ S6IP78 = 디즈니 공주들: 매혹적인 이야기 책들 S6RE52 = 주먹왕 랄프 S6RP52 = 주먹왕 랄프 S6TJGD = 드래곤 퀘스트 X (올 인 원 팩키지) -S72E01 = 커비의 꿈 컬렉션: 스페셜 에디션 -S72J01 = 별의 커비: 20 주년 스페셜 컬렉션 +S72E01 = 별의 커비 20주년 스페셜 컬렉션 +S72J01 = 별의 커비 20주년 스페셜 컬렉션 S75E69 = 모노폴리 스트리츠 S75P69 = 모노폴리 스트리츠 S7AEWR = 레고 배트맨 2: DC 슈퍼 히어로즈 @@ -2479,7 +2476,7 @@ SC7S52 = 콜 오브 듀티: 블랙 옵스 SC7Z52 = 콜 오브 듀티: 블랙 옵스 SC8E01 = Wii 플레이: 모션 SC8J01 = Wii 리모콘 플러스 버라이어티 -SC8K01 = Wii 리모컨플러스로 즐기는 버라이어티 게임 박스 +SC8K01 = Wii리모컨플러스로 즐기는 버라이어티 게임박스 SC8P01 = Wii 플레이: 모션 SC9P52 = 카벨라의 위대한 게임 사냥꾼 2010 SCAE18 = 콜링: 검은 착신 @@ -2611,7 +2608,7 @@ SESEWR = 세서미 스트리트: 레디, 세트, 그로버! SESPWR = 세서미 스트리트: 레디, 세트, 그로버! SESUWR = 세서미 스트리트: 레디, 세트, 그로버! SEUPEY = 레트로 시티 램페이지 DX -SEVPEY = 강탈: 하와이 +SEVPEY = 쉐이크다운: 하와이 SEZJHF = 이나즈마 일레븐 스트라이커즈 2012 익스트림 SF2P64 = 스타 워즈: 해방된 포스 II SF4E20 = 플랫아웃 @@ -2620,9 +2617,9 @@ SF5E41 = 핏 인 식스 SF5J41 = 핏 인 식스: 몸을 단련하는 6 가지 요소 SF5P41 = 나의 피트니스 코치: 클럽 SF7E41 = 패밀리 Feud 2012 에디션 -SF8E01 = 동키 콩: 컨트리 리턴즈 -SF8J01 = 동키 콩 리턴즈 -SF8P01 = 동키 콩: 컨트리 리턴즈 +SF8E01 = 동키콩 리턴즈 +SF8J01 = 동키콩 리턴즈 +SF8P01 = 동키콩 리턴즈 SFAE41 = 패밀리 퓨드 데케이드즈 SFAJGD = 강철의 연금술사: 황혼의 소녀 SFBE70 = 백야드 스포츠 풋볼: 루키 러쉬 @@ -2996,7 +2993,7 @@ SMUJAF = 대괴수 배틀: 울트라 콜로세움 DX - 울트라 전사 대집 SMVE54 = 메이저 리그 야구 2K11 SMWE4Z = 베어 그릴스의 인간과 자연의 대결 SMYE20 = 사소한 도전 60초 -SMZE78 = 마벨 슈퍼 히어로 스쿼드: 코믹 컴뱃 +SMZE78 = 마블 슈퍼 히어로 스쿼드: 코믹 컴뱃 SMZP78 = 마벨 슈퍼 히어로 스쿼드: 코믹 컴뱃 SN2E69 = 너프 N-스트라이크 더블 블래스트 번들 SN3EYG = 맥시멈 레이싱: 랠리 레이서 @@ -3044,9 +3041,9 @@ SNRE52 = 나스카 언리쉬드 SNSE52 = 나스카 2011: 게임 SNTEXN = 넷플릭스 인스턴트 스트리밍 디스크 SNUPJW = 해피 뉴런 아카데미 -SNVE69 = 니드 포 스피드: 도망 -SNVJ13 = 니드 포 스피드: 도망 -SNVP69 = 니드 포 스피드: 도망 +SNVE69 = 니드 포 스피드: 더 런 +SNVJ13 = 니드 포 스피드: 더 런 +SNVP69 = 니드 포 스피드: 더 런 SNXJDA = 나루토 질풍전: 격투 닌자 대전! 스페셜 SNYEVZ = 몬스터 하이: 13 개의 소원들 SNYPVZ = 몬스터 하이: 13 개의 소원들 @@ -3345,10 +3342,10 @@ SU8PNG = 위 싱: 독일 히츠 2 SU9E4Q = 디즈니 비행기들 SU9P4Q = 디즈니 비행기들 SU9X4Q = 디즈니 비행기들 -SUKE01 = 커비의 드림랜드 귀환 +SUKE01 = 별의 커비 Wii SUKJ01 = 별의 커비 Wii SUKK01 = 별의 커비 Wii -SUKP01 = 커비의 모험 Wii +SUKP01 = 별의 커비 Wii SUMJC8 = 위닝 포스트 월드 2010 SUNEYG = 디어 드라이브 레전드즈 SUOE41 = 힙합 댄스 익스피리언스 @@ -3442,7 +3439,7 @@ SX2PNG = 정글 카트즈 SX3EXJ = 판도라의 탑 SX3J01 = 판도라의 탑: 너의 곁으로 돌아갈 때까지 SX3P01 = 판도라의 탑 -SX4E01 = 제노블레이드 연대기 +SX4E01 = 제노블레이드 크로니클스 SX4J01 = 제노블레이드 SX4P01 = 제노블레이드 연대기 SX5E4Z = 산타 클로스가 마을로 오고 있어! @@ -3724,6 +3721,7 @@ GZBEB2 = 금색의 갓슈벨: 고! 고! 마물 파이트!! GZLK01 = 젤다의 전설: 바람의 지휘봉 HBWE01 = 뉴 슈퍼 마리오 브라더스 Wii: 헬보이 에디션 HSMP01 = 하더 슈퍼 마리오 브라더스 Wii +J5EE41 = 저스트 댄스 2025 에디션 JF3E41 = 저스트 댄스 포커스 3 JOUE01 = 뉴 슈퍼 마리오 브라더스 Wii 10 여행 KHPE01 = 커비 에어 라이드 핵 팩 @@ -4001,6 +3999,8 @@ RMCK46 = Wiimms 마리오 카트 Wii 펀 2021-09.한국 RMCK47 = Wiimms 마리오 카트 Wii 히스토리 2021-12.한국 RMCK48 = Wiimms 마리오 카트 Wii 펀 2022-05.한국 RMCK49 = Wiimms 마리오 카트-펀 2022-11.한국 +RMCK50 = Wiimms 마리오 카트-텍스쳐즈 2022-12.한국 +RMCK51 = Wiimms 마리오 카트 Wii 펀 2023-09.한국 RMCK86 = 마리오 카트 크리스 3.5 캐럿 RMCKYP = 요시 레이싱 리조트 플러스 RMCP02 = Wiimms 마리오 카트 Wii 펀 2010-02.유럽 @@ -4051,7 +4051,6 @@ RMCP76 = 프로 CT 팩 RMCP86 = 마리오 카트 크리스 3.500CT RMCP93 = 마리오 카트 Wii 핵 팩 RMCPA1 = 마리오 카트 어드벤처 -RMCPCA = 마리오 카트 Wii (카탈루냐어 번역) RMCPG2 = 마리오 카트 Wii CTGP 레볼루션 RMCPGP = 마리오 카트 CTGP 레볼루션 RMCPL1 = Luma의 CT 팩 @@ -4066,6 +4065,7 @@ RNEEUD = 나루토 질풍전: 닌자 격돌 레볼루션 3 (언덥) ROMESD = 몬스터 헌터 G (영어 패치) RPJEUD = 아크 라이즈 판타지아 (언덥) RQQE52 = 기타 히어로 III 커스텀 : 퀸 +RS4PXS = 식신의 성 III RSBE02 = 슈퍼 스매시 브라더스 프로젝트 엠 레드 버전 RSBE03 = 대난투 스매시 브라더스 X DX RSBE04 = 슈퍼 스매시 브라더스 프로젝트 엠+ @@ -4313,6 +4313,7 @@ SMNE68 = 요시의 전설 DLC SMNE69 = 리바이즈드 슈퍼 마리오 브라더스 Wii SMNE90 = 커스텀 레벨의 전설 SMNEAM = 어드벤처 슈퍼 마리오 브라더스 Wii +SMNED3 = 뉴어 슈퍼 마리오 브라더스 Wii SMNELL = 뉴어 슈퍼 루이지 Wii SMNELM = 뉴어 슈퍼 루이지 Wii: 검은 달 SMNEMI = Midi의 슈퍼 마리오 브라더스 Wii: 그냥 작은 모험 @@ -4862,7 +4863,7 @@ WFCJ = 파이널 판타지 크리스탈 연대기: 작은 임금님과 약속의 WFCP = 파이널 판타지 크리스탈 연대기: 왕으로서의 나의 인생 WFDE = 수인 구조 WFDP = 수인 구조 -WFEE = 페니모어 필모어 +WFEE = 페니모어 필모어 WFFE = 펀! 펀! 미니골프 WFFJ = 펀! 펀! 미니골프 WFFP = 펀! 펀! 미니골프 @@ -5738,6 +5739,7 @@ FCWP = 슈퍼 마리오 브라더스 3 FCWQ = 슈퍼 마리오 브라더스 3 FCYE = 요시의 쿠키 FCYJ = 요시의 쿠키 +FCYK = 요시의 쿠키 FCYP = 요시의 쿠키 FCYT = 요시의 쿠키 FCZE = 왕의 기사 @@ -6258,7 +6260,6 @@ NAZJ = 마리오 파티 2 NAZP = 마리오 파티 2 NEEA = 젤다의 전설: 시간의 오카리나 마스터 퀘스트 NTLC = 슈퍼 마리오 64 멀티플레이어 -NZXM = 슈퍼 마리오 64 멀티플레이어 LAAJ = 북두의 권 LABE = 판타지 존 LABJ = 판타지 존 @@ -6543,13 +6544,13 @@ MCVP = 피트폴: 메이안 어드벤처 MCWE = 갤럭시 포스 II MCWJ = 갤럭시 포스 II MCWP = 갤럭시 포스 II -MCXJ = 드래곤 슬레이어: 영웅전설 +MCXJ = 드래곤 슬레이어: 영웅전설 II MCYE = 시노비의 복수 MCYJ = 슈퍼 시노비 MCYP = 시노비의 복수 MCZE = 상하이 II: 용의 눈 MCZP = 상하이 II: 용의 눈 -PA2J = 열혈고교 돗지볼 부: CD 축구 편 +PA2J = 요괴도 중기 PA3J = 사라만다 PA4J = 파라솔 스타즈 PA6E = 블러디 울프 @@ -6734,7 +6735,7 @@ PDEJ = S.C.I.: 특수 범죄 수사 PDFJ = 지옥순례 PDGJ = 파이어 프로레슬링 3: 레전드 바우트 PDHJ = 라스탄 사가 II -PDIJ = 챔피언 레슬러® +PDIJ = 챔피언 레슬러 PDJJ = 스트리트 파이터 II': 챔피언 에디션 PDJL = 스트리트 파이터 II': 챔피언 에디션 PDJN = 스트리트 파이터 II: 챔피언 에디션 @@ -7124,6 +7125,7 @@ C9MP = 핏스톱 II C9PP = 마지막 닌자 3 C9QP = 점프맨 C9RP = 인터내셔널 카라테 + +C9SP = 불가능한 임무 II C9XE = 마지막 닌자 C9XJ = 마지막 닌자 C9XP = 마지막 닌자 @@ -7165,10 +7167,10 @@ HAGP = 뉴스 채널 HAJE = 모두의 투표 채널 HAJJ = 모두의 투표 채널 HAJP = 모두의 투표 채널 -HAKE = 최종 사용자 라이선스 동의 -HAKJ = 최종 사용자 라이선스 동의 -HAKK = 최종 사용자 라이선스 동의 -HAKP = 최종 사용자 라이선스 동의 +HAKE = 이용 약관 +HAKJ = 이용 약관 +HAKK = 이용 약관 +HAKP = 이용 약관 HALE = 지역 선택 HALJ = 지역 선택 HALK = 지역 선택 @@ -7180,7 +7182,7 @@ HATE = 닌텐도 채널 HATJ = 닌텐도 채널 HATP = 닌텐도 채널 HAVJ = 운세 채널 -HAVK = 운세 채널 +HAVK = 즐거운 하루 운세 채널 HAVP = 즐거운 하루 운세 채널 HAWE = 메트로이드 프라임 3 프리뷰 HAWP = 메트로이드 프라임 3 프리뷰 @@ -7194,12 +7196,12 @@ HC4P = 크런치롤 HCAJ = 밴드 브라더스 DX 스피커 채널 HCAP = 밴드 라이브와 함께하는 잼 HCBJ = 사진 채널 1.0 복구 프로그램 -HCCJ = 개인 데이터 설정 +HCCJ = 주소 설정 HCDJ = 디지탈 카메라 프린트 채널 -HCFE = Wi 스피크 채널 -HCFJ = Wi 스피크 채널 +HCFE = Wii 스피크 채널 +HCFJ = Wii 스피크 채널 HCFK = Wii 스피크 채널 -HCFP = Wi 스피크 채널 +HCFP = Wii 스피크 채널 HCGE = Wii + 인터넷 HCGJ = Wii + 인터넷 HCGP = Wii + 인터넷 @@ -7210,8 +7212,6 @@ HCJP = BBC iPlayer 채널 HCLE = 넷플릭스 HCLP = 넷플릭스 HCMP = 커비 TV 채널 -HCQE = 훌루 플러스 -HCQJ = 훌루 HCRE = 젤다의 전설 스카이워드 소드 데이터 복구 채널 HCRJ = 젤다의 전설 스카이워드 소드 데이터 복구 채널 HCRK = 젤다의 전설 스카이워드 소드 데이터 복구 채널 @@ -7225,7 +7225,6 @@ HCTP = Wii 시스템 전송 HCUE = Wii 메뉴 전자 매뉴얼 HCUJ = Wii 메뉴 전자 매뉴얼 HCUP = Wii 메뉴 전자 매뉴얼 -HCVA = Wii U 메뉴 HCWE = 아마존 인스턴트 비디오 HCWP = 아마존 인스턴트 비디오 HCXE = 유튜브 @@ -7240,10 +7239,11 @@ RFNJ = Wii 핏 채널 RFNK = Wii 핏 채널 RFNP = Wii 핏 채널 RFNW = Wii 핏 채널 -RFPE = Wii 핏 플러스 채널 -RFPJ = Wii 핏 플러스 채널 -RFPP = Wii 핏 플러스 채널 -RFPW = Wii 핏 플러스 채널 +RFPE = Wii Fit Plus 채널 +RFPJ = Wii Fit Plus 채널 +RFPK = Wii Fit Plus 채널 +RFPP = Wii Fit Plus 채널 +RFPW = Wii Fit Plus 채널 RGWE = 레비즈 채널 RGWJ = 레비즈 채널 RGWP = 레비즈 채널 @@ -7878,10 +7878,11 @@ HWFL = 핵위플로우 JODI = 홈브류 채널 LULZ = 홈브류 채널 MAUI = 백업 홈브류 채널 +NZXM = 슈퍼 마리오 64 멀티플레이어 OHBC = 홈브류 채널 PXWE = 프로젝트 X: 사랑의 묘약 참사 RIIV = 리볼루션 -RMCX = 마리오 카트 Wii CTGP 레볼루션 채널 +RMCX = CTGP 레볼루션 채널 SEGA = 제네시스 플러스 GX SMGX = 세이브게임 매니저 GX ULFW = u로더 @@ -8043,8 +8044,8 @@ G3RF52 = 슈렉 2 G3RM52 = 슈렉 2 G3RP52 = 슈렉 2 G3SE41 = 버스트 어 무브 3000 -G3SJC0 = 슈퍼 퍼즐 보글 올 스타즈 -G3SWC0 = 슈퍼 퍼즐 보글 올 스타즈 +G3SJC0 = 슈퍼 퍼즐 보블 올스타즈 +G3SWC0 = 슈퍼 퍼즐 보블 올스타즈 G3TJ8P = 더비 레이싱 3: 경주마를 만들자! G3VE69 = NBA 스트리트 볼륨 3 G3VJ13 = NBA 스트리트 V3: 마리오 덩크 @@ -8105,7 +8106,7 @@ G6ME69 = 매든 NFL 06 G6MP69 = 매든 NFL 06 G6NE69 = NBA 라이브 06 G6NP69 = NBA 라이브 06 -G6QE08 = 메가맨 기념 컬렉션 +G6QE08 = 메가맨 애니버서리 컬렉션 G6SE7D = 스파이로의 전설: 새로운 시작 G6SP7D = 스파이로의 전설: 새로운 시작 G6TE5G = 틴 타이탄즈 @@ -8116,10 +8117,10 @@ G7ME69 = 매든 NFL 07 G89EAF = 팩 맨 월드 랠리 G8FE8P = 버추어 퀘스트 G8FJ8P = 버추어 파이터 사이버 제너레이션 -G8ME01 = 페이퍼 마리오: 천년의 문 -G8MJ01 = 페이퍼 마리오 RPG +G8ME01 = 페이퍼 마리오 1000년의 문 +G8MJ01 = 페이퍼 마리오 1000년의 문 G8MK01 = 페이퍼 마리오 - 천년의 문 -G8MP01 = 페이퍼 마리오: 천년의 문 +G8MP01 = 페이퍼 마리오 1000년의 문 G8OJ18 = 무적 코털 보보보 탈출!! 하지케 로얄 G8SJAF = 배틀 스타디움 D.O.N G8WE01 = 배탤리언 워즈 @@ -8197,8 +8198,8 @@ GAZM69 = 해리 포터와 아즈카반의 죄수 GAZP69 = 해리 포터와 아즈카반의 죄수 GAZS69 = 해리 포터와 아즈카반의 죄수 GB2J18 = 봄버맨 랜드 2 - 게임 사상 최대 규모의 테마파크 -GB4E51 = 번아웃 2: 탄착점 -GB4P51 = 번아웃 2: 탄착점 +GB4E51 = 번아웃 2: 포인트 오브 임팩트 +GB4P51 = 번아웃 2: 포인트 오브 임팩트 GBDE5G = 블러드레인 GBDF7D = 블러드레인 GBDP7D = 블러드레인 @@ -8266,10 +8267,10 @@ GCAE5H = 큐빅스: 모두를 위한 로봇 대결 GCBE7D = 크래쉬 밴디쿳: 마왕의 부활 GCBJA4 = 크래쉬 밴디쿳 4: 작렬! 마신 파워 GCBP7D = 크래쉬 밴디쿳: 마왕의 부활 -GCCE01 = 파이널 판타지 크리스탈 연대기 -GCCJ01 = 파이널 판타지 크리스탈 연대기 +GCCE01 = 파이널 판타지 크리스탈 크로니클 +GCCJ01 = 파이널 판타지 크리스탈 크로니클 GCCJGC = 파이널 판타지 크리스탈 연대기 -GCCP01 = 파이널 판타지 크리스탈 연대기 +GCCP01 = 파이널 판타지 크리스탈 크로니클 GCDE08 = 레지던트 이블 코드: 베로니카 X GCDJ08 = 바이오하자드 코드: 베로니카 완전판 GCDP08 = 레지던트 이블 코드: 베로니카 X @@ -8444,7 +8445,7 @@ GFAP69 = 피파 축구 2003 GFAS69 = 피파 축구 2003 GFBE5D = 파이어블레이드 GFBP5D = 파이어블레이드 -GFCP69 = F1 경력 도전 +GFCP69 = F1 커리어 챌린지 GFDD69 = 프리덤 파이터즈 GFDE69 = 프리덤 파이터즈 GFDF69 = 프리덤 파이터즈 @@ -8522,7 +8523,7 @@ GGZJB2 = 마다가스카: 왜 비추고 난리야 GGZP52 = 마다가스카: 왜 비추고 난리야 GGZS52 = 마다가스카: 왜 비추고 난리야 GGZX52 = 마다가스카: 왜 비추고 난리야 -GH2E69 = 니드 포 스피드: 맹열한 추적 2 +GH2E69 = 니드 포 스피드: 핫 퍼슈트 2 GH2P69 = 니드 포 스피드: 맹열한 추적 2 GH4D69 = 해리 포터와 불의 잔 GH4E69 = 해리 포터와 불의 잔 @@ -8731,9 +8732,9 @@ GKTJA4 = 캡틴 츠바사: 황금 세대의 도전 GKUE9G = 스케일러 GKWJ18 = 드림믹스 TV 월드 파이터즈 GKXJE7 = 극・마작 DXII: 제 4회 몬도21 컵 -GKYE01 = 커비 에어 라이드 -GKYJ01 = 커비의 에어 라이드 -GKYP01 = 커비 에어 라이드 +GKYE01 = 커비의 에어라이드 +GKYJ01 = 커비의 에어라이드 +GKYP01 = 커비의 에어라이드 GKZD54 = 코드네임: 키즈 넥스트 도어 - 오퍼레이션: 비디오게임 GKZE9G = 코드네임: 키즈 넥스트 도어 - 오퍼레이션: 비디오게임 GKZP54 = 코드네임: 키즈 넥스트 도어 - 오퍼레이션: 비디오게임 @@ -8806,8 +8807,9 @@ GM2J8P = 슈퍼 몽키 볼 2 GM2P8P = 슈퍼 몽키 볼 2 GM3E69 = 매든 NFL 2003 GM3P69 = 매든 NFL 2003 -GM4E01 = 마리오 카트: 더블 대쉬!! +GM4E01 = 마리오 카트: 더블 대시!! GM4J01 = 마리오 카트: 더블 대쉬!! +GM4K01 = 마리오 카트: 더블 대시!! GM4P01 = 마리오 카트: 더블 대쉬!! GM5D7D = 메탈 암즈: 시스템 글리치 GM5E7D = 메탈 암즈: 시스템 글리치 @@ -8894,6 +8896,7 @@ GNDP69 = 니드 포 스피드: 언더그라운드 GNED78 = 니모를 찾아서 GNEE78 = 니모를 찾아서 GNEF78 = 니모를 찾아서 +GNEK78 = 니모를 찾아서 GNEP78 = 니모를 찾아서 GNES78 = 니모를 찾아서 GNFE5D = NFL 블리츠 2002 @@ -8964,11 +8967,11 @@ GOSP41 = 오픈 시즌 GOSX41 = 오픈 시즌 GOTJB2 = TV 애니메이션: 원피스 트레저 배틀! GOUPNK = 코코토 놀이공원 -GOWD69 = 니드 포 스피드: 지명 수배 -GOWE69 = 니드 포 스피드: 지명 수배 -GOWF69 = 니드 포 스피드: 지명 수배 -GOWJ13 = 니드 포 스피드: 지명 수배 -GOWP69 = 니드 포 스피드: 지명 수배 +GOWD69 = 니드 포 스피드: 모스트 원티드 +GOWE69 = 니드 포 스피드: 모스트 원티드 +GOWF69 = 니드 포 스피드: 모스트 원티드 +GOWJ13 = 니드 포 스피드: 모스트 원티드 +GOWP69 = 니드 포 스피드: 모스트 원티드 GOYD69 = 골든아이: 로그 에이전트 GOYE69 = 골든아이: 로그 에이전트 GOYF69 = 골든아이: 로그 에이전트 @@ -9136,7 +9139,7 @@ GRUF78 = 파워 레인져스 다이노 썬더 GRUP78 = 파워 레인져스 다이노 썬더 GRVEA4 = 레이브 마스터 GRVJA4 = 그루브 어드벤처 레이브: 파이팅 라이브 -GRWJD9 = 슈퍼 로봇 대전 GC +GRWJD9 = 슈퍼로봇대전 GC GRYE41 = 레이맨 아레나 GRZJ13 = 메달 오브 아너: 라이징 선 GS2D78 = 소환사: 여신 환생 @@ -9465,9 +9468,9 @@ GYFPA4 = 유희왕! 허구에 갇힌 왕국 GYKEB2 = 금색의 갓슈!! 우정 태그 배틀 2 GYKJB2 = 금색의 갓슈!! 우정 태그 배틀 2 GYMJA4 = 실황 파워풀 메이저 리그 -GYQE01 = 마리오 슈퍼스타즈 야구 -GYQJ01 = 슈퍼 마리오 스테이디움 기적의 야구 -GYQP01 = 마리오 슈퍼스타즈 야구 +GYQE01 = 마리오 슈퍼스타 베이스볼 +GYQJ01 = 슈퍼 마리오 스타디움 기적의 야구 +GYQP01 = 마리오 슈퍼스타 베이스볼 GYRE41 = 돌연변이 닌자 거북 GYRP41 = 돌연변이 닌자 거북 GYTE69 = 타이 더 태즈메이니언 타이거 2: 부쉬 구조대 diff --git a/Data/Sys/wiitdb-nl.txt b/Data/Sys/wiitdb-nl.txt index 639b2c2de9..6f654a959b 100644 --- a/Data/Sys/wiitdb-nl.txt +++ b/Data/Sys/wiitdb-nl.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: NL_unique version: 20230727194218) +TITLES = https://www.gametdb.com (type: Wii language: NL_unique version: 20241114210155) R23P52 = Barbie en De Drie Musketiers R25PWR = LEGO Harry Potter: Jaren 1-4 R27X54 = Dora redt het Land van Kristal @@ -177,7 +177,7 @@ SHDP52 = Hoe Tem Je Een Draak SIAP52 = Ice Age 4: Continental Drift SIIP8P = Mario & Sonic op de Olympische Spelen – Londen 2012 SJ2PWR = Scooby-Doo! En Het Spookmoeras -SJXD41 = Just Dance 4 +SJXD41 = Just Dance 4 Speciale Editie SK4P52 = Shrek Voor Eeuwig En Altijd SLHPWR = LEGO Harry Potter: Jaren 5-7 SM4PXT = Monster Trucks @@ -199,32 +199,20 @@ SVQEVZ = Barbie En Haar Zusjes In Het Grote Puppy Avontuur SVQPVZ = Barbie En Haar Zusjes In Het Grote Puppy Avontuur SVZPVZ = Hoe Tem Je Een Draak 2 CG1P52 = Guitar Hero III Custom : Guitar Hero I -RMCPCA = Mario Kart Wii (Catalaanse vertaling) -W2FP = Physiofun - Balance Training +RZDPCA = The Legend of Zelda: Twilight Princess (Catalaanse vertaling) +W2FP = Physiofun: Balance Training W2GP = Phoenix Wright Ace Attorney: Justice for All -W2MP = Blaster Master: Overdrive W2PP = Physiofun: Pelvic Floor Training W3GP = Phoenix Wright Ace Attorney: Trials and Tribulations -W3KP = ThruSpace: High Velocity 3D Puzzle W3MP = The Three Musketeers: One for all -W44P = Stop Stress: A Day of Fury W4AP = Arcade Sports: Air Hockey, Bowling, Pool, Snooker W6BP = Eco-Shooter: Plant 530 -W72P = Successfully Learning German Year 3 -W73P = Successfully Learning German Year 4 -W74P = Successfully Learning German Year 5 -W7IP = Successfully Learning German Year 2 W8CP = Bit.Trip Core -W8WP = Happy Holidays: Halloween W9BP = Big Town Shoot W9RP = Happy Holidays: Christmas WA4P = WarioWare: Do It Yourself - Showcase -WA7P = Toribash Violence Perfected WA8P = Art Style: Penta Tentacles WAEP = Around the world -WAFP = Airport Mania: First Flight -WAHP = Trenches: Generals -WALP = Art Style: light trax WAOP = The Very Hungry Caterpillar´s ABC WB2P = Strong Bad Episode 4: Dangeresque 3 WB3P = Strong Bad Episode 5: 8-bit is Enough @@ -258,8 +246,6 @@ WFYP = Family Games Pen & Paper Edition WGDP = Gradius Rebirth WGFP = Girlfriends Forever: Magic Skate WGGP = Gabrielle's Ghostly Groove: Monster Mix -WGPP = Zenquaria: Virtual Aquarium -WGSP = Phoenix Wright: Ace Attorney WHEP = Heracles: Chariot Racing WHFP = Heavy Fire: Special Operations WHRP = Heron: Steam Machine @@ -387,11 +373,7 @@ JDJP = Super Star Wars: The Empire Strikes Back JDLP = Super Star Wars: Return of the Jedi JDWP = Aero The Acrobat JDZP = Mystic Quest Legend​ -NACP = The Legend of Zelda: Ocarina of Time -NAMP = Kirby 64: The Crystal Shards NAOP = 1080°: TenEighty Snowboarding -NARP = The Legend of Zelda: Majora's Mask -NAYM = Ogre Battle 64: Person of Lordly Caliber LALP = Fantasy Zone II LANP = Alex Kidd: The Lost Stars LAPP = Wonder Boy III: The Dragon's Trap @@ -442,7 +424,6 @@ EAIP = Top Hunter EBDP = Magical Drop 3 EBFP = Spin master EBSP = The Path of the Warrior: Art of Fighting 3 -ECAP = Real Bout Fatal Fury 2: The Newcomers ECGP = Shock Troopers: 2nd Squad E54P = GHOSTS'N GOBLINS E55P = Commando @@ -460,14 +441,18 @@ HAFP = Weerkanaal HAGA = Nachrichtenkanaal HAGP = Nieuwskanaal HAJP = Enquêtekanaal +HAKP = Overeenkomst/bedrijfsinformatie HAPP = Mii-wedstrijdkanaal HATP = Nintendo-kanaal HAVP = Geluksdagkanaal HAWP = Metroid Prime 3 Preview HAYA = Fotokanaal -HCAP = Jam with the Band Live -HCFE = Wii Speak-Kanaal -HCFP = Wii Speak-Kanaal +HCAP = Jam with the Band Channel Live Channel +HCCJ = Adresinstellingen +HCFE = Wii Speak-kanaal +HCFP = Wii Speak-kanaal +HCGP = Wii en Internet +HCRE = The Legend of Zelda - Skyward Sword - Save Data Update Channel OHBC = Homebrew-Kanaal G4BP08 = Resident Evil 4: Wii Edition G4CP54 = Sjakie en chocolade diff --git a/Data/Sys/wiitdb-pt.txt b/Data/Sys/wiitdb-pt.txt index 66b7876db9..d43cb3cb15 100644 --- a/Data/Sys/wiitdb-pt.txt +++ b/Data/Sys/wiitdb-pt.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: PT_unique version: 20230727194225) +TITLES = https://www.gametdb.com (type: Wii language: PT_unique version: 20241114210204) R42P69 = Os SIMS 2: Naufragos R43P69 = EA Sports Active R4PP69 = Os SIMS 2: Animais de Estimação @@ -39,7 +39,6 @@ SIIP8P = Mario & Sonic nos Jogos Olímpicos de Londres 2012 GFEK01 = Fire Emblem: Path of Radiance GMSE02 = Super Mario Sunshine Multijogador PT2PSI = SingIt Portugal Hits Festa de Verão -RMCPCA = Mario Kart Wii (tradução catalã) WA4E = WarioWare: D.I.Y. Showcase WA4P = _D.I.Y. Showcase WAQJ = Yakuman Wii: Ide Yousuke no Kenkou Mahjong @@ -63,6 +62,18 @@ WZIP = Rubik's Puzzle Galaxy RUSH MC3E = Super Street Fighter II: The New Challengers MC3P = Super Street Fighter II: The New Challengers HAAA = Canal Photo +HAFE = Canal do Tempo +HAFP = Canal do Tempo +HAGE = Canal de Notícias +HAGP = Canal de Notícias +HAJE = Canal de Opiniões +HAJP = Canal de Opiniões +HAPE = Canal Mii Veja +HAPP = Canal de Concursos Mii +HATE = Canal Nintendo +HATP = Canal Nintendo +HAYA = Canal de Fotos +HCCJ = Definições do endereço G6TE5G = Os Jovens Titãs GAXE5D = Lucas: Um Intruso no Formigueiro GAZD69 = Harry Potter e o Prisoneiro de Azkaban diff --git a/Data/Sys/wiitdb-ru.txt b/Data/Sys/wiitdb-ru.txt index a5e47fbaf5..31db7b4c1b 100644 --- a/Data/Sys/wiitdb-ru.txt +++ b/Data/Sys/wiitdb-ru.txt @@ -1,14 +1,21 @@ -TITLES = https://www.gametdb.com (type: Wii language: RU_unique version: 20230727194232) +TITLES = https://www.gametdb.com (type: Wii language: RU_unique version: 20241114210212) R5IR4Q = История игрушек: Парк развлечений RN4P41 = Anno: Create A New World RWAR78 = Валл-И RXDR4Q = Disney Отвечай Не Зевай RY2R41 = Возвращение бешеных кроликов RYBP69 = BOOM BLOX Bash Party -SFDPAF = 家庭训练机 梦幻主题乐园(欧) +SJXD41 = Just Dance 4 Специальное издание SKSE54 = NBA 2K13(美) SP5E70 = 恶徒 来自地底的侵略者(美) STNP41 = Приключения Тинтина: Тайна Единорога GMSE02 = Супер Марио Саншайн Мультиплеер SOMR01 = Ритм небес +HAFP = Канал новостей +HAGP = Канал новостей +HAJP = Канал голосований +HAPP = Канал конкурсов Mii +HATP = Канал Nintendo +HAYA = Фотоканал +HCCJ = Настройки адреса G3EP51 = XGIII: 익스트림 G 레이싱 diff --git a/Data/Sys/wiitdb-zh_CN.txt b/Data/Sys/wiitdb-zh_CN.txt index 2d84582a04..5bf861e31c 100644 --- a/Data/Sys/wiitdb-zh_CN.txt +++ b/Data/Sys/wiitdb-zh_CN.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: ZHCN_unique version: 20230727194240) +TITLES = https://www.gametdb.com (type: Wii language: ZHCN_unique version: 20241114210219) 410E01 = Wii 备份盘 v1.31(美) D2AJAF = 运动生活 探险家 试玩版(日) D2SE18 = 德卡运动会2 试玩版(美) @@ -31,27 +31,27 @@ DXSE18 = 德卡运动会 试玩版(美) DZDE01 = 塞尔达传说 黎明公主 试玩版(美) DZDP01 = 塞尔达传说 黎明公主 试玩版(欧) R22E01 = 弹球小精灵(美) -R22J01 = 弹球小精灵[MP](日) -R22P01 = 弹球小精灵[MP](欧) +R22J01 = 弹球小精灵(日) +R22P01 = 弹球小精灵(欧) R23E52 = 芭比与三个火枪手(美) R23P52 = 芭比与三个火枪手(欧) R24J01 = 用Wii游玩小小机器人(日) R25EWR = 乐高哈利波特 上集(美) R25PWR = 乐高哈利波特 1-4 学年(欧) R26E5G = Data East街机经典(美) -R27E54 = 探险家多拉 拯救水晶王国(美) -R27X54 = 探险家多拉 拯救水晶王国(X) +R27E54 = 探险家朵拉 拯救水晶王国(美) +R27X54 = 探险家朵拉 拯救水晶王国(X) R28E54 = 上旋高手4(美) R28P54 = 上旋高手4(欧) R29E52 = 世界彩弹锦标赛2009(美) R29P52 = 世界彩弹锦标赛2009(欧) -R2AE7D = 冰河世纪2 消融(美) -R2AP7D = 冰河世纪2 消融(欧) -R2AX7D = 冰河世纪2 消融(X) +R2AE7D = 冰川时代2(美) +R2AP7D = 冰川时代2(欧) +R2AX7D = 冰川时代2(X) R2DEEB = 多卡波王国(美) R2DJEP = 多卡波王国(日) R2DPJW = 多卡波王国(欧) -R2EJ99 = 鱼之眼 Wii(日) +R2EJ99 = 鱼之眼Wii(日) R2FE5G = 小鱼弗雷迪 丢失的海藻种盒(美) R2FP70 = 小鱼弗雷迪 丢失的海藻种盒(欧) R2GEXJ = 废墟迷宫 再见月的废墟(美) @@ -62,10 +62,10 @@ R2IE69 = 美式橄榄球大联盟10(美) R2IP69 = 美式橄榄球大联盟10[WiFi](欧) R2JJAF = 太鼓达人Wii(日) R2KE54 = 唐金拳击(美) -R2KP54 = 唐金拳击[平衡板](欧) -R2LJMS = 草裙舞Wii[平衡板](日) -R2ME20 = 巧克力豆大冒险(美) -R2NE69 = 纳斯卡卡丁车赛(美) +R2KP54 = 唐金拳击(欧) +R2LJMS = 草裙舞Wii(日) +R2ME20 = M&M巧克力豆大冒险(美) +R2NE69 = 云斯顿卡丁车赛(美) R2OE68 = 中世纪游戏(美) R2OP68 = 中世纪游戏(欧) R2PE9B = 魔法飞球2(美) @@ -76,25 +76,25 @@ R2QJC0 = 料理妈妈2 糟糕!妈妈好忙!!(日) R2RE4F = 小马伙伴2(美) R2RP4F = 小马伙伴2(欧) R2SE18 = 德卡运动会2(美) -R2SJ18 = 德卡运动会2[WiFi](日) +R2SJ18 = 德卡运动会2(日) R2SP18 = 德卡运动会2[WiFi](欧) R2TE41 = 忍者神龟 毁灭[WiFi](美) R2TP41 = 忍者神龟 毁灭[WiFi](欧) R2UE8P = 一起来敲打(美) R2UJ8P = 一起来拍打(日或中) R2UP8P = 一起来敲打(欧) -R2VE01 = 罪与罚 宇宙的后继者[WiFi](美) +R2VE01 = 罪与罚 宇宙的后继者(美) R2VJ01 = 罪与罚 宇宙的后继者(日或中) -R2VP01 = 罪与罚 宇宙的后继者[WiFi](欧) +R2VP01 = 罪与罚 宇宙的后继者(欧) R2WEA4 = 实况足球2009[WiFi](美) R2WJA4 = 实况足球2009[WiFi](日) R2WPA4 = 实况足球2009[WiFi](欧) R2WXA4 = 实况足球2009[WiFi](X) R2YE54 = 我的生日(美) R2YP54 = 我的生日(欧) -R32J01 = 用Wii玩银河战士Prime2 黑暗回音(日) -R33E69 = 摇滚乐团 乐曲扩展包2(美) -R33P69 = 摇滚乐团 乐曲扩展包2(欧) +R32J01 = 密特罗德究极2 黑暗回声(日) +R33E69 = 摇滚乐团 实况乐曲扩展包(美) +R33P69 = 摇滚乐团 实况乐曲扩展包(欧) R34E69 = 摇滚乐团 乡村音乐包(美) R35JC8 = 三国志11 威力加强版(日) R36E69 = 摇滚乐队 绿日乐队(美) @@ -121,18 +121,18 @@ R3FJA4 = 实况力量棒球大联盟3(日) R3GXUG = 儿童高尔夫(X) R3HP6Z = 特工雨果 热带假期(欧) R3HX6Z = 特工雨果 热带假期(X) -R3IJ01 = 用Wii玩银河战士(日或中) +R3IJ01 = 密特罗德究极(日或中) R3JE5G = 去玩吧 马戏团明星(美) R3KP6N = 摩天大楼(欧) R3LEWR = 绿光战警 猎人的崛起(美) R3LPWR = 绿光战警 猎人的崛起(欧) -R3ME01 = 银河战士三部曲(美) -R3MP01 = 银河战士Prime 三部曲(欧) +R3ME01 = 密特罗德究极三部曲(美) +R3MP01 = 密特罗德究极三部曲(欧) R3NEXS = 罪恶装备XXAC 加强版(美) R3NPH3 = 罪恶装备XXAC 加强版(欧) -R3OE01 = 银河战士 另一个M(美) -R3OJ01 = 银河战士 另一个M(日或中) -R3OP01 = 银河战士 另一个M(欧) +R3OE01 = 密特罗德 另一个M(美) +R3OJ01 = 密特罗德 另一个M(日或中) +R3OP01 = 密特罗德 另一个M(欧) R3PEWR = 极速赛车手(美) R3PJ52 = 极速赛车手(日) R3PPWR = 极速赛车手(欧) @@ -153,18 +153,19 @@ R3YP70 = 山姆和迈克斯2 超越时空(欧) R3ZE69 = 摇滚乐团乐曲包 经典摇滚(美) R42E69 = 模拟人生2 生存游戏(美) R42P69 = 模拟人生2 生存游戏(欧) -R43E69 = EA运动活力[平衡板](美) -R43J13 = EA运动活力[平衡板](日) +R43E69 = EA运动活力(美) +R43J13 = EA运动活力(日) R43P69 = EA运动活力(欧) R44J8P = 凉宫春日的并列(日) R46ENS = 灵武战记Wii(美) R46JKB = 灵武战记Wii(日) R47E20 = ATV沙滩车之王(美) +R47P20 = ATV沙滩车之王(欧) R48E7D = 奇幻精灵事件簿(美) R48P7D = 奇幻精灵事件簿(欧) -R49E01 = 大金刚 丛林敲击(美) +R49E01 = 大金刚 丛林节拍(美) R49J01 = 大金刚 丛林节拍(日或中) -R49P01 = 大金刚 丛林敲击(欧) +R49P01 = 大金刚 丛林节拍(欧) R4AE69 = 模拟动物(美) R4AJ13 = 模拟动物(日) R4AP69 = 模拟动物(欧) @@ -176,12 +177,12 @@ R4CK69 = 模拟城市 建筑大师[WiFi](韩) R4CP69 = 模拟城市 建筑大师[WiFi](欧) R4DDUS = 三个问号 高校之迷(德) R4EE01 = 永恒蔚蓝2 蓝色世界(美) -R4EJ01 = 永恒蔚蓝2 海的呼唤[WiFi](日) -R4EP01 = 永恒蔚蓝2 深海探险[WiFi](欧) +R4EJ01 = 永恒蔚蓝2 海的呼唤(日) +R4EP01 = 永恒蔚蓝2 深海探险(欧) R4FE20 = 故事时间 童话故事(美) R4FP7J = 故事时间 童话故事(欧) R4IPNK = 疯狂玩具车(欧) -R4LPUG = 田径猪派对(X) +R4LPUG = 田径猪派对(欧) R4LXUG = 田径猪派对(X) R4MJ0Q = 使头脑变灵活Wii(日) R4NE5G = 大小调的庄严进行曲(美) @@ -193,12 +194,13 @@ R4QE01 = 马里奥激情足球[WiFi](美) R4QJ01 = 马里奥激情足球(日) R4QK01 = 马里奥激情足球[WiFi](韩) R4QP01 = 马里奥激情足球(欧) -R4RE69 = FIFA足球10[WiFi](美) -R4RJ13 = FIFA足球10[WiFi](日) -R4RK69 = FIFA足球10[WiFi](韩) -R4RP69 = FIFA足球10[WiFi](欧) -R4RX69 = FIFA足球10[WiFi](X) -R4RY69 = FIFA足球10[WiFi](Y) +R4RE69 = FIFA足球10(美) +R4RJ13 = FIFA足球10(日) +R4RK69 = FIFA足球10(韩) +R4RP69 = FIFA足球10(欧) +R4RR69 = FIFA足球10(俄) +R4RX69 = FIFA足球10(X) +R4RY69 = FIFA足球10(Y) R4RZ69 = FIFA足球10(Z) R4SE54 = 北美职棒超明星(美) R4VEA4 = 故事绘本工坊(美) @@ -218,16 +220,16 @@ R58DMR = 你来唱[麦克风](德) R58FMR = 你来唱[麦克风](法) R58PMR = 你来唱[麦克风](欧) R58SMR = 你来唱[麦克风](西) -R59D4Q = 企鹅俱乐部 游戏日[WiFi](欧) +R59D4Q = 企鹅俱乐部 游戏日(欧) R59E4Q = 企鹅俱乐部 游戏日(美) -R59P4Q = 企鹅俱乐部 游戏日[WiFi](欧) +R59P4Q = 企鹅俱乐部 游戏日(欧) R5AE8P = 黄金罗盘(美) R5AP8P = 黄金罗盘(欧) R5AX8P = 黄金罗盘(X) R5DE5G = 翻转的扭曲世界(美) R5EPMR = 倒计时(欧) R5FE41 = 冠军学院 足球(美) -R5FP41 = 冠军学院 足球[MP][平衡板](欧) +R5FP41 = 冠军学院 足球(欧) R5GE78 = 你比五年级生聪明吗(美) R5IE4Q = 玩具总动员(美) R5IP4Q = 玩具总动员(欧) @@ -238,27 +240,27 @@ R5MJAF = 语言解谜 文字拼词Wii豪华版(日) R5NJN9 = 多阿拉Wii(日) R5OENR = 田径猪派对(美) R5OXUG = 田径猪派对(X) -R5PE69 = 哈利波特与凤凰社(美) -R5PJ13 = 哈利波特与凤凰社(日) -R5PP69 = 哈利波特与凤凰社(欧) -R5PX69 = 哈利波特与凤凰社(X) +R5PE69 = 哈利·波特与凤凰社(美) +R5PJ13 = 哈利·波特与凤凰社(日) +R5PP69 = 哈利·波特与凤凰社(欧) +R5PX69 = 哈利·波特与凤凰社(X) R5QPGT = 马戏团游戏(欧) R5SERW = 幽灵庄园的秘密(美) -R5TE69 = 大满贯网球[MP][WiFi](美) +R5TE69 = 大满贯网球(美) R5TJ13 = 大满贯网球(日) R5TP69 = 大满贯网球(欧) R5UE41 = 犯罪现场调查 致命意图(美) -R5UP41 = CSI犯罪现场 致命意图(欧) -R5VE41 = 阿凡达[MP][平衡板](美) -R5VP41 = 阿凡达[MP][平衡板](欧) -R5VX41 = 阿凡达[MP][平衡板](X) +R5UP41 = 犯罪现场调查 致命意图(欧) +R5VE41 = 阿凡达(美) +R5VP41 = 阿凡达(欧) +R5VX41 = 阿凡达(X) R5WEA4 = 寂静岭 破碎的记忆(美) R5WJA4 = 寂静岭 破碎的记忆(日) R5XJ13 = 我的模拟人生 特工(日) R5XP69 = 我的模拟人生 特工(欧) R5YD78 = 全明星啦啦队2(德) R5YE78 = 全明星啦啦队2(美) -R5YP78 = 全明星啦啦队2[平衡板](欧) +R5YP78 = 全明星啦啦队2(欧) R62E4Q = 迪士尼 想唱就唱 流行节奏(美) R62P4Q = 迪士尼 想唱就唱 流行节奏(欧) R63EG9 = 家庭聚会 30款有趣的户外游戏(美) @@ -273,7 +275,7 @@ R67E6K = 聪明系列出品 佳佳的冒险(美) R68E5G = 去玩吧 城市运动(美) R69E36 = 尘埃2(美) R69P36 = 尘埃2(欧) -R6APPU = 宝贝和我[平衡板](欧) +R6APPU = 宝贝和我(欧) R6BE78 = 颜料宝贝(美) R6BJ78 = 颜料宝贝(日) R6BK78 = 颜料宝贝(韩) @@ -317,11 +319,11 @@ R6XP69 = 孩之宝 家庭游戏之夜2(欧) R6YEXS = 橡皮球聚会(美) R6YPH3 = 橡皮球聚会(欧) R72E5G = 蛋糕工坊 混合(美) -R72P5G = 蛋糕工坊 混合[WiFi](欧) +R72P5G = 蛋糕工坊 混合(欧) R74E20 = 商场射击馆(美) R75E20 = 梦幻沙龙(美) -R76E54 = NBA 2010[WiFi](美) -R76P54 = NBA 2010[WiFi](欧) +R76E54 = NBA 2K10(美) +R76P54 = NBA 2K10(欧) R77JAF = SD高达G世代:世纪战役(日) R79JAF = 机动战士高达 MS战线0079(日) R7AE69 = 模拟动物 非洲(美) @@ -334,14 +336,14 @@ R7EE8P = 梦精灵 星降夜物语(美) R7EJ8P = 梦精灵 星降夜物语[WiFi](日) R7EP8P = 梦精灵 星降夜物语[WiFi](欧) R7FEGD = 最终幻想陆行鸟 忘却时间的迷宫(美) -R7FJGD = 陆行鸟 忘却时间的迷宫[WiFi](日) -R7FPGD = 陆行鸟 忘却时间的迷宫[WiFi](欧) +R7FJGD = 最终幻想陆行鸟 忘却时间的迷宫(日) +R7FPGD = 最终幻想陆行鸟 忘却时间的迷宫(欧) R7GEAF = 龙珠 天下第一大冒险(美) R7GJAF = 龙珠 天下第一大冒险(日或中) R7GPAF = 龙珠 天下第一大冒险(欧) R7HE6K = 救兵总动员(美) R7IE69 = 魅力女孩俱乐部 睡衣派对(美) -R7IP69 = 魅力女孩俱乐部 睡衣派对[平衡板](欧) +R7IP69 = 魅力女孩俱乐部 睡衣派对(欧) R7KE6K = 岩石疾风(美) R7LP7J = 玛格的困惑!(欧) R7MPFR = 音乐派对 轰动全场(欧) @@ -373,7 +375,7 @@ R82P52 = 动物星球 兽医(欧) R83EA4 = 流行音乐(美) R83JA4 = 流行音乐Wii(日) R83PA4 = 流行音乐(欧) -R84EE9 = 牧场物语Wii 安稳之树(美) +R84EE9 = 牧场物语 济世之树(美) R84J99 = 牧场物语 安稳之树(日) R84P99 = 牧场物语 济世之树(欧) R85EG9 = 秘密星期六 第五太阳之兽(美) @@ -382,11 +384,11 @@ R86E20 = 梦之舞蹈啦啦队(美) R87EVN = 斯基度雪地车挑战赛(美) R88J2L = 面包超人 热烈派对(日) R89JEL = 东京友好乐园2(日) -R8AE01 = 口袋妖怪乐园 皮卡丘大冒险(美) +R8AE01 = 宝可梦公园Wii 皮卡丘的大冒险(美) R8AJ01 = 宝可梦公园Wii 皮卡丘的大冒险(日或中) -R8AP01 = 口袋乐园 皮卡丘历险记(欧) +R8AP01 = 宝可梦公园Wii 皮卡丘的大冒险(欧) R8BE41 = 保姆派对(美) -R8BP41 = 保姆派对[平衡板](欧) +R8BP41 = 保姆派对(欧) R8DEA4 = 游戏王5D's 决斗狂热者[WiFi](美) R8DJA4 = 游戏王5D's 决斗狂热者(日或中) R8DPA4 = 游戏王5D's 决斗狂热者[WiFi](欧) @@ -394,15 +396,16 @@ R8EJQC = 大地探索者(日或中) R8FES5 = 快餐危机(美) R8FJHA = 匠餐厅大繁盛(日或中) R8FPNP = 快餐狂(欧) -R8GJC8 = GI骑师联盟2008(日) -R8GPC8 = GI骑师联盟2008[平衡板][WiFi](欧) +R8GJC8 = GI骑师Wii 2008(日) +R8GPC8 = G1骑师Wii 2008(欧) R8HE4Q = 汉娜·蒙塔娜 电影版(美) -R8HP4Q = 汉娜 蒙塔娜 电影版(欧) -R8HX4Q = 汉娜 蒙塔娜 电影版(X) -R8HY4Q = 汉娜 蒙塔娜 电影版(Y) -R8IE78 = 海绵宝宝 诚实还是正直[MP](美) -R8IP78 = 海绵宝宝 诚实还是正直[MP](欧) -R8IS78 = 海绵宝宝 诚实还是正直[MP](欧) +R8HP4Q = 汉娜·蒙塔娜 电影版(欧) +R8HX4Q = 汉娜·蒙塔娜 电影版(X) +R8HY4Q = 汉娜·蒙塔娜 电影版(Y) +R8HZ4Q = 汉娜·蒙塔娜 电影版(Z) +R8IE78 = 海绵宝宝 诚实还是正直(美) +R8IP78 = 海绵宝宝 诚实还是正直(欧) +R8IS78 = 海绵宝宝 诚实还是正直(西) R8JEWR = 指环王 阿拉贡的冒险(美) R8JPWR = 指环王 阿拉贡的冒险(欧) R8KPKM = 街头足球 尼科拉斯阿内尔卡(欧) @@ -410,14 +413,14 @@ R8LE20 = 爆裂小鸡猎杀者(美) R8LP7J = 爆裂小鸡猎杀者(欧) R8NEA4 = 专业击球练习场[MP](美) R8NJG0 = 日本棒球机构承认 击球革命[MP](日) -R8OE54 = 玲玲马戏团[平衡板](美) +R8OE54 = 玲玲马戏团(美) R8OX54 = 我的马戏团(X) R8PE01 = 超级纸片马里奥(美) R8PJ01 = 超级纸片马里奥(日) R8PK01 = 超级纸片马里奥(韩) R8PP01 = 超级纸片马里奥(欧) R8QPRT = 疯狂问答(欧) -R8RP41 = 亚瑟与他的迷你王国2[平衡板](欧) +R8RP41 = 亚瑟与他的迷你王国2(欧) R8SE41 = 假日体育(美) R8SP41 = 假日体育(欧) R8SX41 = 假日体育(X) @@ -429,7 +432,7 @@ R8XE52 = 侏罗纪 猎物(美) R8XZ52 = 顶级射手 恐龙猎人(美) R8YE52 = 坎贝拉猎人2010(美) R8ZE8P = 大师教你普拉提(美) -R8ZPGT = 大师教你普拉提[平衡板](欧) +R8ZPGT = 大师教你普拉提(欧) R92E01 = 皮克敏2 R92J01 = 用Wii玩皮克敏2(日) R92P01 = 用Wii玩皮克敏2(欧) @@ -442,7 +445,7 @@ R96PAF = 风之克罗诺亚 幻影之门(欧) R97E9B = 家庭欢乐橄榄球(美) R9AE52 = 动作游戏试玩包(美) R9BPMT = 鲍勃工程队 欢乐节庆(欧) -R9CPMR = 我是明星 快放我走[平衡板](欧) +R9CPMR = 我是明星 快放我走(欧) R9DE78 = 描绘生命 下一章(美) R9DP78 = 描绘生命 下一章(欧) R9EPNP = 修理派对(欧) @@ -459,8 +462,8 @@ R9IP01 = 用Wii玩皮克敏(欧) R9JE69 = 甲壳虫乐队 摇滚乐团(美) R9JP69 = 甲壳虫 摇滚乐团[WiFi](欧) R9KE20 = 律动方块(美) -R9LE41 = 女孩生活 通宵派对[平衡板](美) -R9LP41 = 女孩生活 通宵派对[平衡板](欧) +R9LE41 = 女孩生活 通宵派对(美) +R9LP41 = 女孩生活 通宵派对(欧) R9ME5Z = 夏季运动会2009[平衡板](美) R9MPFR = 夏季运动会2009[平衡板](欧) R9NPMR = 家族财富(欧) @@ -468,13 +471,13 @@ R9OE69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](美) R9OK69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](韩) R9OP69 = 泰格伍兹高尔夫巡回赛10[MP][WiFi](欧) R9QPNG = 舞会俱乐部精选(欧) -R9RPNG = 舞蹈派对 流行精选[跳舞毯](欧) +R9RPNG = 舞蹈派对 流行精选(欧) R9SPPL = 球形数独 侦探(欧) R9TE69 = 泰格伍兹高尔夫巡回赛09[WiFi](美) R9TJ13 = 泰格伍兹高尔夫巡回赛09(日) R9TK69 = 泰格伍兹高尔夫巡回赛09[WiFi](韩) R9TP69 = 泰格伍兹高尔夫巡回赛09[WiFi](欧) -R9UE52 = 熊熊工坊 友谊谷(美) +R9UE52 = 熊熊工作室 友谊谷(美) R9UPGY = 熊熊工作室 友谊谷(欧) R9VE52 = 坎贝拉野外冒险2010(美) R9WPSP = WSC真实09世界斯诺克大奖赛(欧) @@ -490,16 +493,16 @@ RB4J08 = 生化危机4(日) RB4P08 = 生化危机4(欧) RB4X08 = 生化危机4(X) RB5E41 = 战火兄弟连 浴血奋战(美) -RB5P41 = 战火兄弟连 双重时间(欧) +RB5P41 = 战火兄弟连 浴血奋战(欧) RB6J18 = 炸弹人(日) RB7E54 = 恶霸鲁尼 学院风云(美) RB7P54 = 恶霸鲁尼 学院风云(欧) RB8E70 = 后院棒球09(美) -RB9D78 = 布拉兹娃娃电影版(德) -RB9E78 = 布拉兹娃娃电影版(美) -RB9P78 = 布拉兹娃娃电影版(欧) -RB9X78 = 布拉兹娃娃电影版(欧) -RB9Y78 = 布拉兹娃娃电影版(欧) +RB9D78 = 贝兹娃娃电影版(德) +RB9E78 = 贝兹娃娃电影版(美) +RB9P78 = 贝兹娃娃电影版(欧) +RB9X78 = 贝兹娃娃电影版(X) +RB9Y78 = 贝兹娃娃电影版(Y) RBAE41 = 炽天使 二战空骑兵(美) RBAP41 = 炽天使 二战空骑兵(欧) RBBE18 = 炸弹人乐园(美) @@ -517,29 +520,29 @@ RBHE08 = 生化危机0(美) RBHJ08 = 生化危机0(日或中) RBHP08 = 生化危机0(欧) RBIEE9 = 牧场物语 欢乐动物进行曲(美) -RBIJ99 = 牧场物语 欢乐动物进行曲[WiFi](日) -RBIP99 = 牧场物语 欢乐动物进行曲[WiFi](欧) +RBIJ99 = 牧场物语 欢乐动物进行曲(日) +RBIP99 = 牧场物语 欢乐动物进行曲(欧) RBKE69 = 轰炸方块(美) RBKJ13 = 轰炸方块(日) -RBKK69 = 轰炸方块[WiFi](韩) -RBKP69 = 轰炸方块[WiFi](欧) +RBKK69 = 轰炸方块(韩) +RBKP69 = 轰炸方块(欧) RBLE8P = 死神 白刃闪耀圆舞曲(美) RBLJ8P = 死神 白刃闪耀圆舞曲(日) RBLP8P = 死神 白刃闪耀圆舞曲(欧) RBME5G = 泡泡龙(美) RBMPGT = 泡泡龙(欧) RBNEG9 = 少年骇客 地球保卫者(美) -RBNPG9 = Ben 10 守护地球(欧) -RBNXG9 = Ben 10 守护地球(X) +RBNPG9 = 少年骇客 地球保卫者(欧) +RBNXG9 = 少年骇客 地球保卫者(X) RBOE69 = 布吉摇摆(美) RBOP69 = 布吉摇摆(欧) RBPE4Z = 布朗斯威克 职业保龄球赛(美) RBPPGT = 布朗斯威克 职业保龄球赛(欧) RBQENR = 经典英式赛车(美) RBQPUG = 经典英式赛车(欧) -RBRE5G = 轰炸使命[WiFi](美) -RBRP5G = 轰炸使命[WiFi](欧) -RBRX5G = 轰炸作业 建造 融化 摧毁(欧) +RBRE5G = 轰炸使命(美) +RBRP5G = 轰炸使命(欧) +RBRX5G = 轰炸使命(X) RBSJ08 = 战国 BASARA 2 英雄外传A(日) RBTE8P = 钓鱼高手(美) RBTJ8P = 钓鱼高手(日) @@ -552,8 +555,8 @@ RBVE52 = 芭比之森林公主(美) RBVP52 = 芭比 森林公主(欧) RBWE01 = 军队战争2(美) RBWJ01 = 军队战争2[WiFi](日) -RBWP01 = 军队战争2[WiFi](欧) -RBXJ8P = 死神 对决十刃[WiFi](日) +RBWP01 = 军队战争2(欧) +RBXJ8P = 死神 对决十刃(日) RBYE78 = 疯狂农庄(美) RBYJ78 = 疯狂农庄(日) RBYP78 = 疯狂农庄(欧) @@ -604,7 +607,7 @@ RCHPGT = 大家的啦啦队(欧) RCIE41 = 犯罪现场调查 铁证如山(美) RCIP41 = 犯罪现场调查 铁证如山(欧) RCJE8P = 管道(美) -RCJP8P = 管道[WiFi](欧) +RCJP8P = 管道(欧) RCKPGN = 阿伦·汉森的运动挑战(欧) RCLE4Q = 四眼天鸡之动作天王(美) RCLP4Q = 四眼天鸡之动作天王(欧) @@ -614,8 +617,8 @@ RCOPNP = 名侦探柯南 追忆的幻想(欧) RCPE18 = 穿越迷路(美) RCPJ18 = 穿越迷路(日) RCPP18 = 穿越迷路(欧) -RCQEDA = Q版赛车 Wii(美) -RCQJDA = Q版赛车 Wii(日) +RCQEDA = Q版赛车Wii(美) +RCQJDA = Q版赛车Wii(日) RCRE5D = 劲速狂飙(美) RCRP5D = 劲速狂飙(欧) RCSE20 = 射鸡英雄传(美) @@ -626,17 +629,17 @@ RCUE52 = 坎贝拉传奇冒险(美) RCVE41 = 孤岛惊魂 复仇(美) RCVP41 = 孤岛惊魂 复仇(欧) RCXE78 = 全明星拉拉队(美) -RCXP78 = 全明星拉拉队[平衡板](欧) -RCXX78 = 全明星拉拉队[平衡板](欧) +RCXP78 = 全明星拉拉队(欧) +RCXX78 = 全明星拉拉队(X) RCYPGN = 切格的聚会迷题(欧) -RD2E41 = 赤铁2[MP](美) -RD2J41 = 赤铁2[MP](日) -RD2K41 = 赤铁2[MP](韩) -RD2P41 = 赤铁2[MP](欧) +RD2E41 = 赤铁2(美) +RD2J41 = 赤铁2(日) +RD2K41 = 赤铁2(韩) +RD2P41 = 赤铁2(欧) RD2X41 = 赤铁2(X) RD4EA4 = 劲舞革命 劲爆舞会2(美) RD4JA4 = 劲舞革命 盛况空前的劲爆舞会(日或中) -RD4PA4 = 劲舞革命 劲爆舞会2[跳舞毯](欧) +RD4PA4 = 劲舞革命 劲爆舞会2(欧) RD6EE9 = 动物王国 野生动物探索(美) RD6J8N = 动物奇想天外!在谜之乐园摄影(日) RD6PNP = 动物奇想天外!在谜之乐园摄影(欧) @@ -645,17 +648,17 @@ RD9J18 = 解谜系列Vol.1 数独(日) RDAE52 = 与星共舞 一起跳(美) RDBE70 = 龙珠Z 电光火石2(美) RDBJAF = 龙珠Z 电光火石(日) -RDBPAF = 龙珠Z 电光火石 2(欧) +RDBPAF = 龙珠Z 电光火石2(欧) RDCE78 = 致命生物(美) RDCP78 = 致命生物(欧) -RDDEA4 = 热舞革命 劲爆舞会(美) -RDDJA4 = 热舞革命 劲爆舞会[跳舞毯](日) +RDDEA4 = 劲舞革命 劲爆舞会(美) +RDDJA4 = 劲舞革命 劲爆舞会(日) RDEJ0A = 全日本货柜车祭典(日) RDFE41 = 肖恩怀特滑雪板[平衡板](美) RDFP41 = 肖恩怀特滑雪板[平衡板](欧) RDGEA4 = 恶魔城 审判(美) -RDGJA4 = 恶魔城 审判[WiFi](日) -RDGPA4 = 恶魔城 审判[WiFi](欧) +RDGJA4 = 恶魔城 审判(日) +RDGPA4 = 恶魔城 审判(欧) RDHE78 = 毁灭全人类 解放威廉(美) RDHP78 = 毁灭全人类 解放威廉(欧) RDIE41 = 宠物狗乐园(美) @@ -676,9 +679,9 @@ RDOE41 = 模拟宠物狗2(美) RDOJ41 = 模拟宠物狗2(日) RDOP41 = 模拟宠物狗2(欧) RDOX41 = 模拟宠物狗2(X) -RDPE54 = 探险家多拉 拯救雪公主(美) -RDPP54 = 探险家多拉 拯救雪公主(欧) -RDPX54 = 探险家多拉 拯救雪公主(X) +RDPE54 = 探险家朵拉 拯救雪公主(美) +RDPP54 = 探险家朵拉 拯救雪公主(欧) +RDPX54 = 探险家朵拉 拯救雪公主(X) RDQEGD = 勇者斗恶龙 假面女王(美) RDQJGD = 勇者斗恶龙 假面女王(日) RDQPGD = 勇者斗恶龙 假面女王(欧) @@ -686,8 +689,8 @@ RDREA4 = 水精迪依大冒险(美) RDRJA4 = 水精迪依大冒险(日) RDRPA4 = 水精迪依大冒险(欧) RDSE70 = 龙珠Z 电光火石3(美) -RDSJAF = 龙珠Z 电光火石 3[WiFi](日) -RDSPAF = 龙珠Z 电光火石 3[WiFi](欧) +RDSJAF = 龙珠Z 电光火石3(日) +RDSPAF = 龙珠Z 电光火石3(欧) RDTEAF = 电子鸡宠物店(美) RDTJAF = 电子鸡宠物店(日) RDTPAF = 电子鸡宠物店(欧) @@ -705,7 +708,7 @@ RDYEGN = 人偶CID(美) RDZJ01 = 天灾 危机之日(日或中) RDZP01 = 天灾 危机之日(欧) RE3ENR = 空战高手 二战英雄(美) -RE4E08 = 生化危机 复刻版(美) +RE4E08 = 生化危机(美) RE4J08 = 生化危机(日或中) RE4P08 = 生化危机(欧) RE5PAF = 大胃王(欧) @@ -718,7 +721,7 @@ REAP69 = 名人体育(欧) REBE4Z = 憨豆先生的古怪世界(美) REBPMT = 憨豆先生的古怪世界(欧) RECE6K = 间谍游戏 电梯任务(美) -REDE41 = 赤色钢铁(美) +REDE41 = 赤铁(美) REDJ41 = 赤铁(日) REDP41 = 赤铁(欧) REFP41 = 我的法语教练(欧) @@ -728,19 +731,19 @@ REHE41 = 紧急英雄(美) REHP41 = 紧急英雄(欧) REJEAF = 活力生活 极限挑战(美) REJJAF = 家庭教练2(日) -REJPAF = 活力生活 极限挑战[跳舞毯](欧) +REJPAF = 家庭教练 极限挑战(欧) REKE41 = 金吉姆健身房 卡迪欧塑身(美) REKJ2N = 有氧拳击 Wii快乐瘦身(日或中) REKP41 = 金牌吉姆卡迪欧塑身[平衡板](欧) -REKU41 = 金牌吉姆卡迪欧塑身[平衡板](英) +REKU41 = 金吉姆健身房 卡迪欧塑身(U) RELEA4 = 能源小精灵(美) RELJA4 = 能源小精灵(日) RELKA4 = 能源小精灵(韩) RELPA4 = 能源小精灵(欧) REMJ8P = 哆啦A梦Wii 秘密道具王决定战!(日) RENE8P = 索尼克与黑暗骑士(美) -RENJ8P = 索尼克与黑暗骑士[WiFi](日) -RENP8P = 索尼克与黑暗骑士[WiFi](欧) +RENJ8P = 索尼克与黑暗骑士(日或中) +RENP8P = 索尼克与黑暗骑士(欧) REQE54 = 迪亚哥 徒步旅行救助队(美) REQP54 = 迪亚哥 徒步旅行救助队(欧) REQX54 = 迪亚哥 徒步旅行救助队(欧) @@ -759,31 +762,32 @@ REYE4Q = 歌舞青春3 毕业歌会(美) REYP4Q = 迪士尼 想唱就唱 歌舞青春3 毕业季(欧) REZEJJ = 西洋棋高手(美) REZPKM = 西洋棋高手(欧) -RF2E54 = 神奇四侠 银影侠来袭(美) -RF2P54 = 神奇四侠 神奇四侠与银影侠(欧) +RF2E54 = 神奇四侠 银影侠现身(美) +RF2P54 = 神奇四侠 银影侠现身(欧) RF3E52 = 法拉利挑战赛(美) RF3P6M = 法拉利挑战赛(欧) RF4E36 = 超级水果瀑布(美) RF4P6M = 超级水果瀑布(欧) RF7J08 = 龙之子对卡普空(日) RF8E69 = FIFA足球08(美) -RF8J13 = FIFA足球08[WiFi](日) -RF8K69 = FIFA足球08[WiFi](韩) -RF8P69 = FIFA足球08[WiFi](欧) -RF8X69 = FIFA足球08[WiFi](X) -RF8Y69 = FIFA足球08[WiFi](Y) +RF8J13 = FIFA足球08(日) +RF8K69 = FIFA足球08(韩) +RF8P69 = FIFA足球08(欧) +RF8X69 = FIFA足球08(X) +RF8Y69 = FIFA足球08(Y) RF9E69 = FIFA足球09(美) -RF9J13 = FIFA足球09[WiFi](日) -RF9K69 = FIFA足球09[WiFi](韩) -RF9P69 = FIFA足球09[WiFi](欧) -RF9X69 = FIFA足球09[WiFi](X) -RF9Y69 = FIFA足球09[WiFi](Y) +RF9J13 = FIFA足球09(日) +RF9K69 = FIFA足球09(韩) +RF9P69 = FIFA足球09(欧) +RF9R69 = FIFA足球09(俄) +RF9X69 = FIFA足球09(X) +RF9Y69 = FIFA足球09(Y) RFAEAF = 活力生活 户外挑战(美) RFAJAF = 家庭教练(日) -RFAPAF = 家庭教练[跳舞毯](欧) +RFAPAF = 家庭教练(欧) RFBE01 = 永恒蔚蓝(美) -RFBJ01 = 永恒蔚蓝[WiFi](日) -RFBP01 = 永恒蔚蓝[WiFi](欧) +RFBJ01 = 永恒蔚蓝(日) +RFBP01 = 永恒蔚蓝(欧) RFCEGD = 最终幻想水晶编年史 水晶守护者(美) RFCJGD = 最终幻想水晶编年史 水晶守护者(日) RFCPGD = 最终幻想水晶编年史 水晶守护者(欧) @@ -791,8 +795,8 @@ RFEE01 = 火炎纹章 晓之女神(美) RFEJ01 = 火焰纹章 晓之女神(日或中) RFEP01 = 火炎纹章 晓之女神(欧) RFFEGD = 最终幻想水晶编年史 时之回声(美) -RFFJGD = 水晶编年史 时之回声[WiFi](日) -RFFPGD = 水晶编年史 时之回声[WiFi](欧) +RFFJGD = 最终幻想水晶编年史 时之回声(日) +RFFPGD = 最终幻想水晶编年史 时之回声(欧) RFJJAF = 家庭赛马(日) RFKE41 = 我的健身教练(美) RFKP41 = 我的健康教练(欧) @@ -830,13 +834,13 @@ RFWE5Z = 野外探险 非洲(美) RFWPNK = 非洲徒步大冒险(欧) RFYFMR = 博涯堡垒 开战(法) RFZE41 = 想象 时尚聚会(美) -RFZP41 = 想象 时尚偶像[平衡板](欧) +RFZP41 = 想象 时尚偶像(欧) RG2EXS = 罪恶装备XX(美) RG2JJF = 罪恶装备XX ΛCore(日) RG2PGT = 罪恶装备XX(欧) RG4JC0 = 电车Go!新干线EX 山阳新干线(日) RG5EWR = 吉尼斯世界纪录 电视游戏(美) -RG5PWR = 吉尼斯世界纪录 电视游戏[WiFi](欧) +RG5PWR = 吉尼斯世界纪录 电视游戏(欧) RG6E69 = 摇滚乐超级明星(美) RG6P69 = 摇滚乐超级明星(欧) RG7EQH = 城市建设者(美) @@ -846,7 +850,7 @@ RG9E54 = 嘉年华游戏 迷你高尔夫(美) RG9P54 = 嘉年华游戏 迷你高尔夫(欧) RGAE8P = 51号星球(美) RGAP8P = 51号星球(欧) -RGBE08 = 哈维博德曼 律师(美) +RGBE08 = 哈维·博德曼 律师(美) RGCEXS = 遥控直升机Wii 飞行大冒险(美) RGCJJF = 遥控直升机Wii 飞行大冒险(日) RGCPGT = 遥控直升机Wii 飞行大冒险(欧) @@ -860,15 +864,15 @@ RGFS69 = 教父 黑手党(西) RGGJAF = GeGeGe的鬼太郎 妖怪大运动会(日) RGHE52 = 吉他英雄3 摇滚传奇(美) RGHJ52 = 吉他英雄3 摇滚传奇[WiFi](日) -RGHK52 = 吉他英雄3 摇滚传奇[WiFi](韩) -RGHP52 = 吉他英雄3 摇滚传奇[WiFi](欧) -RGIJC8 = G1骑师Wii(日) +RGHK52 = 吉他英雄3 摇滚传奇(韩) +RGHP52 = 吉他英雄3 摇滚传奇(欧) +RGIJC8 = GI骑师Wii(日) RGIPC8 = G1骑师Wii(欧) RGJE4Z = 森林泰山 探秘(美) RGJP7U = 森林泰山 探秘(欧) RGKENR = 儿童高尔夫(美) RGLE7D = 几何战争 银河(美) -RGLP7D = 几何战争 银河[WiFi](欧) +RGLP7D = 几何战争 银河(欧) RGME5D = 企鹅也疯狂(美) RGMP5D = 企鹅也疯狂(欧) RGNJAF = 银魂(日) @@ -876,15 +880,15 @@ RGOJJ9 = 金蛋世界(日) RGPJAF = 机动战士高达2 哀.战士篇(日) RGQE70 = 捉鬼敢死队(美) RGQP70 = 捉鬼敢死队(欧) -RGSE8P = 幽灵小队[WiFi](美) +RGSE8P = 幽灵小队(美) RGSJ8P = 幽灵小队(日或中) -RGSP8P = 幽灵小队[WiFi](欧) +RGSP8P = 幽灵小队(欧) RGTE41 = GT职业赛车(美) RGTJBL = GT职业赛车(日) RGTP41 = GT职业赛车(欧) RGVE52 = 吉他英雄 空中铁匠乐队(美) -RGVJ52 = 吉他英雄 空中铁匠乐队专辑[WiFi](日) -RGVP52 = 吉他英雄 空中铁匠乐队专辑[WiFi](欧) +RGVJ52 = 吉他英雄 空中铁匠乐队(日) +RGVP52 = 吉他英雄 空中铁匠乐队(欧) RGWE41 = 疯狂兔子 回家[WiFi](美) RGWJ41 = 疯狂兔子 回家[WiFi](日) RGWP41 = 疯狂兔子 回家[WiFi](欧) @@ -903,9 +907,9 @@ RH3P4Q = 歌舞青春3 毕业舞会(欧) RH4XUG = 仓鼠英雄(X) RH5EVN = 小马生活冒险(美) RH5PKM = 爱伦怀塔克的小马生活(欧) -RH6E69 = 哈里波特与混血王子(美) -RH6K69 = 哈利波特 混血王子的背叛(韩) -RH6P69 = 哈里波特与混血王子(欧) +RH6E69 = 哈利·波特与混血王子(美) +RH6K69 = 哈利·波特与混血王子(韩) +RH6P69 = 哈利·波特与混血王子(欧) RH7J8P = Sammy合集 北斗神拳[WiFi](日) RH8E4F = 古墓丽影 地下世界(美) RH8JEL = 古墓丽影 地下世界(日) @@ -946,9 +950,9 @@ RHOJ8P = 死亡之屋 过度杀戮(日) RHOP8P = 死亡之屋 过度杀戮(欧) RHPJ8N = 欺诈流浪记(日) RHQE4Q = 汉娜·蒙塔娜 聚光灯下的世界巡演(美) -RHQP4Q = 汉娜蒙塔娜 聚光灯下的世界巡演(欧) -RHQX4Q = 孟汉娜万众瞩目全球巡演歌唱大赛(欧) -RHQY4Q = 孟汉娜万众瞩目全球巡演歌唱大赛(Y) +RHQP4Q = 汉娜·蒙塔娜 聚光灯下的世界巡演(欧) +RHQX4Q = 汉娜·蒙塔娜 聚光灯下的世界巡演(X) +RHQY4Q = 汉娜·蒙塔娜 聚光灯下的世界巡演(Y) RHRJ99 = 家庭教师REBORN 超梦幻决胜(日或中) RHSE36 = 热导追踪(美) RHSP36 = 热导追踪(欧) @@ -956,7 +960,7 @@ RHSX36 = 热导追踪(X) RHSY36 = 热导追踪(Y) RHTE54 = 侠盗猎魔2(美) RHTP54 = 侠盗猎魔2(欧) -RHUE20 = 轮滑城市英雄[平衡板](美) +RHUE20 = 轮滑城市英雄(美) RHUP7J = 轮滑城市英雄[平衡板](欧) RHVE5Z = 疯狂小鸡传说(美) RHVPFR = 疯狂小鸡传说(欧) @@ -975,12 +979,12 @@ RI6ENR = 夏季运动会2 小岛运动会(美) RI6P41 = 夏季运动聚会(欧) RI7E4Z = 怪物大破坏 创建和战斗(美) RI8E41 = 战火兄弟连 进军30高地(美) -RI8P41 = 战火兄弟连 双重时间(欧) +RI8P41 = 战火兄弟连 进军30高地(欧) RI9EGT = 天后女孩 冰上公主(美) -RI9PGT = 天后女孩 冰上公主[平衡板](欧) -RIAE52 = 冰河世纪3 恐龙的黎明(美) -RIAI52 = 冰河世纪3 恐龙的黎明(意) -RIAP52 = 冰河世纪3 恐龙的黎明(欧) +RI9PGT = 天后女孩 冰上公主(欧) +RIAE52 = 冰川时代3(美) +RIAI52 = 冰川时代3(意) +RIAP52 = 冰川时代3(欧) RIBES5 = 科学小怪蛋(美) RIBPKM = 科学小怪蛋(欧) RICENR = 美国铁人料理 顶级烹饪法(美) @@ -1010,7 +1014,7 @@ RIPJAF = 海贼王 无尽的冒险(日) RIQPUJ = 冰上炫舞(欧) RIRE8P = 钢铁侠(美) RIRP8P = 钢铁侠(欧) -RITFMR = 城市之间[平衡板](法) +RITFMR = 城市之间(法) RIUJAF = 海贼王 无限巡航 EP2 觉醒的勇者(日) RIUPAF = 海贼王 无限巡航 EP2 觉醒的勇者(欧) RIVEXJ = 奇异鸟伊维(美) @@ -1022,9 +1026,9 @@ RIXP7J = 道奇赛车 掌控者与挑战者(欧) RIYE52 = 太空营地(美) RIYP52 = 太空营地(欧) RIZENR = 印第500赛车(美) -RJ2E52 = 詹姆斯邦德007 量子危机(美) -RJ2JGD = 詹姆斯邦德007 量子危机[WiFi](日) -RJ2P52 = 詹姆斯邦德007 量子危机[WiFi](欧) +RJ2E52 = 007 量子危机(美) +RJ2JGD = 007 量子危机(日) +RJ2P52 = 007 量子危机(欧) RJ3E20 = 吉普越野赛车(美) RJ3P7J = 吉普越野赛车(欧) RJ4ENR = 珠宝大师 罗马发源地(美) @@ -1037,10 +1041,10 @@ RJ8P64 = 印第安纳琼斯与帝王手杖(欧) RJ9FMR = 思考 逻辑训练(法) RJ9PFR = 思考 逻辑训练(欧) RJ9XML = 思考 逻辑训练(X) -RJAD52 = 使命召唤 现代战争 反应能力[WiFi](德) +RJAD52 = 使命召唤 现代战争(德) RJAE52 = 使命召唤 现代战争(美) -RJAP52 = 使命召唤 现代战争 反应能力[WiFi](欧) -RJAX52 = 使命召唤 现代战争 反应能力[WiFi](X) +RJAP52 = 使命召唤 现代战争(欧) +RJAX52 = 使命召唤 现代战争(X) RJBJAF = 大怪兽对决 超人力霸王竞技场(日) RJCE52 = Baja 1000越野拉力赛(美) RJCP52 = Baja 1000越野拉力赛(欧) @@ -1064,9 +1068,9 @@ RJOP99 = 恐怖体感 咒怨(欧) RJPJA4 = 实况棒球Wii(日) RJQE5G = 睡衣山姆 别怕黑(美) RJQP70 = 睡衣山姆 别怕黑(欧) -RJREA4 = 热舞革命 劲爆舞会3(美) -RJRJA4 = 劲舞革命 劲爆舞会3(日) -RJRPA4 = 劲舞革命 劲爆舞会 3[跳舞毯][平衡板](欧) +RJREA4 = 劲舞革命 劲爆舞会3(美) +RJRJA4 = 劲舞革命 音乐塑身(日) +RJRPA4 = 劲舞革命 劲爆舞会3(欧) RJSENR = 川崎水上摩托(美) RJSPUG = 川崎水上摩托(欧) RJSXUG = 川崎水上摩托(X) @@ -1077,8 +1081,8 @@ RJWJEL = 猛犸象与神秘之石(日) RJXE5G = 去玩吧 伐木工(美) RJYE5Z = 费兹维泽医生的动物大拯救(美) RJZP7U = SNK街机经典Vol1(欧) -RK2EEB = 超执刀 新血[WiFi](美) -RK2JEB = 超执刀 新血[WiFi](日) +RK2EEB = 超执刀 新血(美) +RK2JEB = 超执刀 新血(日) RK2P01 = 超执刀 新血[WiFi](欧) RK3J01 = 安藤检索(日) RK4JAF = 结界师 黑芒楼之影(日) @@ -1124,8 +1128,8 @@ RKPE52 = 功夫熊猫(美) RKPJ52 = 功夫熊猫(日) RKPK52 = 功夫熊猫(韩) RKPP52 = 功夫熊猫(欧) -RKPV52 = 功夫熊猫(欧) -RKPX52 = 功夫熊猫(Y) +RKPV52 = 功夫熊猫(V) +RKPX52 = 功夫熊猫(X) RKPY52 = 功夫熊猫(Y) RKQENR = 糖果工厂(美) RKSENR = 儿童篮球(美) @@ -1143,13 +1147,14 @@ RKZEA4 = 迷失蔚蓝Wii(美) RKZJA4 = 幸存少年Wii(日或中) RKZPA4 = 迷失蔚蓝Wii(欧) RL2E78 = 我的驯马场(美) +RL2HMN = 我的驯马场(荷) RL2PFR = 我的驯马场(欧) RL3EMJ = 金字塔祖玛 3(美) RL4E64 = 乐高印第安纳琼斯2 冒险再续(美) RL4P64 = 乐高印第安纳琼斯2 冒险再续(欧) RL5E52 = 爱卡莉(美) RL5P52 = 爱卡莉(欧) -RL6E69 = 玩具枪大作战2 精英(美) +RL6E69 = 玩具枪大作战 精英(美) RL7E69 = 小小宠物店 朋友(美) RL7P69 = 小小宠物店 朋友(欧) RL8E54 = 实况职业力量棒球2008(美) @@ -1195,10 +1200,11 @@ RLTENR = 伦敦出租车 高峰时间(美) RLTXUG = 伦敦出租车 高峰时间(X) RLUE4Q = 闪电狗(美) RLUP4Q = 闪电狗(欧) +RLUR4Q = 闪电狗(俄) RLUX4Q = 闪电狗(X) RLUY4Q = 闪电狗(Y) -RLVE78 = 降世神通最后的空气大师(美) -RLVP78 = 降世神通最后的空气大师(欧) +RLVE78 = 降世神通 最后的气宗(美) +RLVP78 = 降世神通 最后的气宗(欧) RLWE78 = 料理鼠王(美) RLWJ78 = 料理鼠王(日) RLWP78 = 料理鼠王(欧) @@ -1217,9 +1223,9 @@ RM2J13 = 荣誉勋章 英雄2(日) RM2P69 = 荣誉勋章 英雄2[WiFi](欧) RM2U69 = 荣誉勋章 英雄2[WiFi](英) RM2X69 = 荣誉勋章 英雄2[WiFi](X) -RM3E01 = 银河战士3 腐蚀(美) -RM3J01 = 银河战士3 腐蚀(日) -RM3P01 = 银河战士3 腐蚀(欧) +RM3E01 = 密特罗德究极3 腐蚀(美) +RM3J01 = 密特罗德究极3 腐蚀(日) +RM3P01 = 密特罗德究极3 腐蚀(欧) RM4E41 = 怪物四驱 世界巡回赛(美) RM4J41 = 怪物四驱 世界巡回赛(日) RM4P41 = 怪物四驱 世界巡回赛(欧) @@ -1272,8 +1278,8 @@ RMMP7U = 水银融化 革命(欧) RMNDFR = 我的宠物旅店(德) RMNHMN = 我的宠物旅店(荷) RMNPFR = 我的宠物旅店(欧) -RMOE52 = 怪兽大卡车(美) -RMOP52 = 怪兽大卡车(欧) +RMOE52 = 怪物卡车(美) +RMOP52 = 怪物卡车(欧) RMPE54 = 职业力量棒球2008(美) RMQENR = 魔法制造者 末日宝石(美) RMQPUG = 魔法制造者 末日宝石(欧) @@ -1281,7 +1287,7 @@ RMRE5Z = 小魔怪魔法马戏团(美) RMRPNK = 小魔怪魔法马戏团(欧) RMRXNK = 小魔怪魔法马戏团(X) RMSE52 = 漫威终极联盟2(美) -RMSP52 = 惊奇漫画 终极联盟2([WiFi]欧) +RMSP52 = 漫威终极联盟2(欧) RMTJ18 = 桃太郎电铁16北海道大移动[WiFi](日) RMUE52 = 漫威终极联盟(美) RMUJ2K = 漫画英雄联盟(日) @@ -1291,11 +1297,11 @@ RMVP69 = 荣誉勋章 先遣部队(欧) RMVX69 = 荣誉勋章 先遣部队(X) RMWE20 = M&M巧克力卡丁赛车(美) RMXE78 = 极限越野 突破(美) -RMXF78 = 极限越野 突破[WiFi](法) +RMXF78 = 极限越野 突破(法) RMXP78 = 极限越野 突破(欧) RMYE5Z = 超级卡丁车GP(美) RMYPUG = 超级卡丁车GP(欧) -RMYXUG = 超级卡丁车GP(欧) +RMYXUG = 超级卡丁车GP(X) RMZE5Z = 神话制造者 崔克茜在玩具岛(美) RMZPUG = 神话制造者 崔克茜在玩具岛(欧) RN2EAF = Namco博物馆重制版(美) @@ -1317,9 +1323,9 @@ RN9E4F = 巨虫魔岛(美) RN9JEL = 巨虫魔岛(日) RN9P4F = 巨虫魔岛(欧) RNAE69 = 美国大学橄榄球2009(美) -RNBE69 = 美国职业篮球2008[WiFi](美) -RNBP69 = 美国职业篮球2008[WiFi](欧) -RNBX69 = 美国职业篮球2008[WiFi](X) +RNBE69 = NBA 2008(美) +RNBP69 = NBA 2008(欧) +RNBX69 = NBA 2008(X) RNCEH4 = SNK街机经典Vol1(美) RNDJAF = 交响情人梦 梦之☆管弦乐(日) RNEEDA = 火影忍者疾风传 激斗忍者大战3(美) @@ -1335,7 +1341,7 @@ RNHP99 = 英雄不再(欧) RNIPGT = 休养生息 营养调理[平衡板](欧) RNJE4F = 迷你忍者(美) RNJP4F = 迷你忍者(欧) -RNKE69 = 玩具枪大战(美) +RNKE69 = 玩具枪大作战(美) RNKP69 = 玩具枪大战(欧) RNLE54 = 北美冰球联盟2009[WiFi](美) RNLP54 = 北美冰球联盟2009[WiFi](欧) @@ -1356,14 +1362,14 @@ RNPK69 = 极品飞车 街头职业赛(韩) RNPP69 = 极品飞车 街头职业赛(欧) RNPX69 = 极品飞车 街头职业赛(X) RNPY69 = 极品飞车 街头职业赛(Y) -RNRE41 = 火爆机车[WiFi](美) +RNRE41 = 火爆机车(美) RNRJ41 = 火爆机车[WiFi](日) -RNRP41 = 火爆机车[WiFi](欧) -RNSD69 = 极品飞车10卡本峡谷(德) -RNSE69 = 极品飞车10卡本峡谷(美) -RNSF69 = 极品飞车10卡本峡谷(法) -RNSJ13 = 极品飞车10卡本峡谷(日) -RNSP69 = 极品飞车10卡本峡谷(欧) +RNRP41 = 火爆机车(欧) +RNSD69 = 极品飞车 卡本峡谷(德) +RNSE69 = 极品飞车 卡本峡谷(美) +RNSF69 = 极品飞车 卡本峡谷(法) +RNSJ13 = 极品飞车 卡本峡谷(日) +RNSP69 = 极品飞车 卡本峡谷(欧) RNUE8P = 南茜朱儿 冰溪白狼(美) RNVE5Z = 阿努比斯2(美) RNVPUG = 阿努比斯2(欧) @@ -1376,7 +1382,7 @@ RNXPDA = 火影忍者疾风传 激斗忍者大战(欧) RNYEDA = 火影忍者疾风传 激斗忍者大战 2(美) RNYJDA = 火影忍者疾风传 激斗忍者大战EX2(日) RNYPDA = 火影忍者疾风传 激斗忍者大战 2(欧) -RNZE69 = 忍者反应[WiFi](美) +RNZE69 = 忍者反应(美) RNZJ13 = 忍者反应(日) RNZK69 = 忍者反应(韩) RNZP69 = 忍者反应(欧) @@ -1416,8 +1422,8 @@ ROHJAF = 快乐组舞(日) ROJE52 = 乐伯乐 大众钓鱼(美) ROJP52 = 乐伯乐 大众钓鱼(欧) ROKJ18 = 卡拉OK 欢乐之声Wii(日) -ROLE8P = 马里奥与索尼克在温哥华冬奥会[WiFi][平衡板](美) -ROLJ01 = 马里奥与索尼克在温哥华冬季奥运(日) +ROLE8P = 马里奥与索尼克在温哥华冬奥(美) +ROLJ01 = 马里奥与索尼克在温哥华冬奥(日) ROLK01 = 马里奥与索尼克在温哥华冬奥会[WiFi][平衡板](韩) ROLP8P = 马里奥与索尼克在温哥华冬奥(欧) ROMJ08 = 怪物猎人 G[WiFi](日) @@ -1440,14 +1446,14 @@ ROWP08 = 大神(欧) ROXE20 = 上菜啦(美) ROXP7J = 上菜啦(欧) ROXX7J = 上菜啦(X) -ROYE41 = 美食从天而降(美) -ROYP41 = 美食从天而降(欧) -ROYX41 = 美食从天降(X) +ROYE41 = 天降美食(美) +ROYP41 = 天降美食(欧) +ROYX41 = 天降美食(X) RP2E69 = 冷知识游戏(美) RP2P69 = 冷知识游戏(欧) RP3JAF = 高尔夫球选手猿(日) RP4E69 = 我的模拟聚会(美) -RP4J13 = 我的模拟聚会[WiFi](日) +RP4J13 = 我的模拟聚会(日) RP4P69 = 我的模拟聚会[WiFi](欧) RP5JA4 = 实况力量棒球15(日) RP6E41 = 宠物 疯狂的猴子(美) @@ -1458,9 +1464,9 @@ RP9ERS = 太空黑猩猩(美) RP9PRS = 太空黑猩猩(欧) RP9XRS = 太空黑猩猩(X) RPAF70 = 船桨男孩 迷失(法) -RPBE01 = 口袋妖怪 战斗革命(美) -RPBJ01 = 口袋妖怪 战斗革命[WiFi](日) -RPBP01 = 口袋妖怪 战斗革命[WiFi](欧) +RPBE01 = 宝可梦 战斗革命(美) +RPBJ01 = 宝可梦 战斗革命(日) +RPBP01 = 宝可梦 战斗革命(欧) RPCE20 = 难题收藏(美) RPCP41 = 难题收藏(欧) RPCX7J = 难题收藏(X) @@ -1472,8 +1478,8 @@ RPFU52 = 森林寻宝 大冒险(英) RPGE5D = 怪兽大破坏(美) RPGP5D = 怪兽大破坏(欧) RPHPPN = 粉红猪小妹 游戏(欧) -RPIE52 = MTV 帮你改装车(美) -RPIP52 = MTV 帮你改装车(欧) +RPIE52 = MTV帮你改装车(美) +RPIP52 = MTV帮你改装车(欧) RPJE7U = 弧光幻想曲(美) RPJJ99 = 弧光幻想曲(日) RPKE52 = 世界扑克冠军联赛2007(美) @@ -1520,17 +1526,17 @@ RQ6XKM = 妖山诅咒(X) RQ7E20 = 火星人的恐慌(美) RQ8E08 = GP摩托车赛08(美) RQ8P08 = GP摩托车赛08(欧) -RQ9E69 = 美国职业篮球2009[WiFi](美) -RQ9F69 = 美国职业篮球2009[WiFi](法) -RQ9P69 = 美国职业篮球2009[WiFi](欧) -RQ9S69 = 美国职业篮球2009[WiFi](西) -RQBENR = 川崎4X4沙滩车(美) -RQBPUG = 川崎4X4沙滩车(欧) -RQBXUG = 川崎4X4沙滩车(X) +RQ9E69 = NBA 2009(美) +RQ9F69 = NBA 2009(法) +RQ9P69 = NBA 2009(欧) +RQ9S69 = NBA 2009(西) +RQBENR = 川崎沙滩车(美) +RQBPUG = 川崎沙滩车(欧) +RQBXUG = 川崎沙滩车(X) RQCEAF = 大胃王(美) RQCJAF = 大胃王(日) RQEE6U = 阿加莎·克里斯蒂 阳光下的罪恶(美) -RQEP6V = 阿加莎克里斯蒂 阳光下的罪恶(欧) +RQEP6V = 阿加莎·克里斯蒂 阳光下的罪恶(欧) RQFE6U = 破箱人 终极难题冒险(美) RQFP6V = 破箱人 终极难题冒险(欧) RQGE69 = 我的模拟人生 赛车(美) @@ -1539,7 +1545,7 @@ RQGP69 = 我的模拟人生 赛车(欧) RQIJ01 = NHK红白猜谜合战(日) RQJE7D = 古惑狼 泰坦巨人(美) RQJP7D = 古惑狼之泰坦巨人[WiFi](欧) -RQJX7D = 古惑狼之泰坦巨人[WiFi](X) +RQJX7D = 古惑狼 泰坦巨人(X) RQKE41 = 马戏团游戏(美) RQKP41 = 聚会游乐园(欧) RQLE64 = 星球大战之克隆战争 共和国英雄(美) @@ -1552,9 +1558,9 @@ RQOE69 = 孢子英雄(美) RQOJ13 = 孢子英雄(日) RQOP69 = 孢子英雄(欧) RQPE52 = 坎贝拉的猎鹿(美) -RQPP52 = 卡贝拉的猎鹿(欧) -RQPZ52 = 坎贝拉的猎鹿(欧) -RQQE70 = 后院橄榄球2009(美) +RQPP52 = 坎贝拉的猎鹿(欧) +RQPZ52 = 坎贝拉的猎鹿人(Z) +RQQE70 = 后院橄榄球09(美) RQREXJ = 空中杀手 无瑕王牌(美或中) RQRJAF = 空中杀手 无罪王牌(日) RQRPAF = 空中杀手 无罪王牌(欧) @@ -1569,8 +1575,8 @@ RQWEG9 = 益智之迷 战神的挑战(美) RQWPG9 = 益智之迷 战神的挑战(欧) RQXP70 = 奥运会上的阿斯特里克斯(欧) RQYENR = 梦幻水族世界(美) -RQZE41 = 异形4X4特技赛车(美) -RQZP41 = 怪兽4X4特级赛车(欧) +RQZE41 = 怪物四驱 特技赛车(美) +RQZP41 = 怪物四驱 特技赛车(欧) RR2ENR = 装载卡车竞赛2(美) RR2PUG = 装载卡车竞赛2(欧) RR2XUG = 装载卡车竞赛2(欧) @@ -1614,6 +1620,7 @@ RRLX78 = 贝兹娃娃 女孩本摇滚(X) RRLY78 = 贝兹娃娃 女孩本摇滚(Y) RRLZ78 = 贝兹娃娃 女孩本摇滚(Z) RRME69 = 孩之宝 家庭游戏之夜(美) +RRMI69 = 孩之宝 家庭游戏之夜(意) RRMP69 = 孩之宝 家庭游戏之夜(欧) RRMX69 = 孩之宝 家庭游戏之夜(X) RRPE41 = 正确定价(美) @@ -1650,20 +1657,20 @@ RS3P52 = 蜘蛛侠3(欧) RS3X52 = 蜘蛛侠3(X) RS4EXS = 式神之城3(美) RS4JJF = 式神之城3(日) -RS4PXS = 式神之城3(欧) +RS4PH3 = 式神之城3(欧) RS5EC8 = 战国无双KATANA(美) RS5JC8 = 战国无双 KATANA(日) RS5PC8 = 战国无双 KATANA(欧) RS7J01 = 光速蒙面侠21 赛场上的最强战士(日) RS8J8N = 上海(日) RS9E8P = 索尼克滑板 失重(美) -RS9J8P = 索尼克滑板 失重[WiFi](日) -RS9P8P = 索尼克滑板 失重[WiFi](欧) +RS9J8P = 索尼克滑板 失重(日) +RS9P8P = 索尼克滑板 失重(欧) RSAE78 = 海绵宝宝 亚特兰蒂斯(美) RSAP78 = 海绵宝宝 亚特兰蒂斯(欧) RSBE01 = 任天堂明星大乱斗X(美) RSBJ01 = 任天堂明星大乱斗X(日) -RSBK01 = 任天堂明星大乱斗X[WiFi](韩) +RSBK01 = 任天堂明星大乱斗X(韩) RSBP01 = 任天堂明星大乱斗X[WiFi](欧) RSCD7D = 疤面煞星 掌握世界(德) RSCE7D = 疤面煞星 掌握世界(美) @@ -1707,7 +1714,7 @@ RSPP01 = Wii运动(欧) RSPW01 = Wii运动(中) RSQEAF = 家庭滑雪(美) RSQJAF = 家庭滑雪(日) -RSQPAF = 家庭滑雪[平衡板](欧) +RSQPAF = 家庭滑雪(欧) RSRE8P = 索尼克与神秘指环(美) RSRJ8P = 索尼克与神秘指环(日) RSRP8P = 索尼克与神秘指环(欧) @@ -1754,7 +1761,7 @@ RT8K69 = 泰格伍兹高尔夫巡回赛08(韩) RT8P69 = 泰格伍兹高尔夫巡回赛08(欧) RT9E52 = 托尼霍克滑板 练习场[WiFi](美) RT9P52 = 托尼霍克滑板 练习场[WiFi](欧) -RTAE41 = 汤姆克兰西之鹰击长空2(美) +RTAE41 = 汤姆克兰西 鹰击长空2(美) RTAP41 = 汤姆克兰西 鹰击长空2(欧) RTBE52 = 乐伯乐疯狂钓鱼(美) RTBP52 = 乐伯乐疯狂钓鱼(欧) @@ -1772,7 +1779,7 @@ RTFK52 = 变形金刚 游戏(韩) RTFP52 = 变形金刚 游戏(欧) RTFX52 = 变形金刚 游戏(X) RTFY52 = 变形金刚 游戏(Y) -RTGJ18 = 严选桌面游戏 Wii +RTGJ18 = 严选桌面游戏Wii(日) RTHE52 = 托尼霍克滑板 下坡.(美) RTHP52 = 托尼霍克滑板(欧) RTIE8P = 古怪运动世界(美) @@ -1793,8 +1800,8 @@ RTNJCQ = 天诛4(日或中) RTNP41 = 天诛4(欧) RTOJ8P = 428 被封锁的涉谷(日) RTPP41 = 王牌冒险(欧) -RTQENR = 怪物卡车 越野赛(美) -RTQPUG = 怪物卡车 越野赛(欧) +RTQENR = 怪物卡车越野赛(美) +RTQPUG = 怪物卡车越野赛(欧) RTQXUG = 怪物卡车 越野赛(X) RTRE18 = 垂钓大师(美) RTRJ18 = 垂钓大师(日) @@ -1829,7 +1836,7 @@ RU7E5G = 博物馆奇妙夜2 决战史密森尼(美) RU7X5G = 博物馆奇妙夜2 决战史密森尼(X) RU8EFS = 巴斯专业店 狩猎(美) RU9EGT = 我的芭蕾舞工作室(美) -RU9PGT = 天后女孩 芭蕾天后[平衡板](欧) +RU9PGT = 天后女孩 芭蕾天后(欧) RUAE52 = 怪物卡车 袭击市区(美) RUAP52 = 怪物卡车 袭击市区(欧) RUBEVN = 极致桌上游戏合辑(美) @@ -1839,6 +1846,7 @@ RUCPRT = 冬季运动会 终极挑战 2008(欧) RUCXRT = 冬季运动会 终极挑战 2008(X) RUEE4Q = 豚鼠特工队(美) RUEP4Q = 豚鼠特工队(欧) +RUER4Q = 豚鼠特工队(俄) RUEX4Q = 豚鼠特工队(X) RUEY4Q = 豚鼠特攻队(欧) RUFEMV = 牧场物语 符文工场 边境(美) @@ -1849,7 +1857,7 @@ RUGP5G = 鸡皮疙瘩恐怖乐园(欧) RUHE52 = 爆丸 战斗对决(美) RUHP52 = 爆丸 战斗对决(欧) RUHX52 = 爆丸 战斗对决(X) -RUHZ52 = 爆丸 战斗对决(欧) +RUHZ52 = 爆丸 战斗对决(Z) RUIE4Q = 迪斯尼 想唱就唱(美) RUIP4Q = 迪斯尼 想唱就唱(欧) RUIX4Q = 迪斯尼 想唱就唱(X) @@ -1857,7 +1865,7 @@ RUKEGT = 我们来摇滚吧 鼓王(美) RUKPGT = 我们来摇滚吧 鼓王(欧) RULE4Q = 终极乐队[WiFi](美) RULP4Q = 终极乐队[WiFi](欧) -RUME5Z = 滑雪射击[平衡板](美) +RUME5Z = 滑雪射击(美) RUMPFR = 夏季田径运动会(欧) RUNJ0Q = 新 右脑达人Wii(日) RUOEPL = 阁楼里的外星人(美) @@ -1879,10 +1887,10 @@ RUSX78 = 海绵宝宝历险记 致命水珠(X) RUSY78 = 海绵宝宝历险记 致命水珠(Y) RUUE01 = 动物之森 城市大家庭(美) RUUJ01 = 动物之森 城市大家庭[WiFi](日) -RUUK01 = 动物之森 城市大家庭[WiFi](韩) -RUUP01 = 动物之森 城市大家庭[WiFi](欧) +RUUK01 = 动物之森 城市大家庭(韩) +RUUP01 = 动物之森 城市大家庭(欧) RUWJC8 = 胜利赛马世界(日) -RUXPUG = 都市极限飚车 街道之怒(X) +RUXPUG = 都市极限飚车 街道之怒(欧) RUXXUG = 都市极限飚车 街道之怒(X) RUYE41 = 英雄不再2 垂死挣扎(美) RUYJ99 = 英雄不再2:垂死挣扎(日) @@ -1895,18 +1903,17 @@ RV3P6N = 聪明的孩子 吓人的爬行动物(欧) RV7SMR = 幸存者[平衡板](欧) RV8E20 = 夏日海滩趣味挑战(美) RV8PRT = 夏日海滩趣味挑战(欧) -RV9E78 = 降世神通 最后的气宗 前往地狱(美) -RV9P78 = 降世神通 最后的气宗 前往地狱(欧) +RV9E78 = 降世神通 地狱之战(美) +RV9P78 = 降世神通 地狱之战(欧) RVAE78 = 降世神通 燃烧的大地(美) RVAP78 = 降世神通 燃烧的大地(欧) RVBERS = 鼠来宝(美) -RVBPRS = 艾尔文与花栗鼠(欧) +RVBPRS = 鼠来宝(欧) RVDPLG = 德伯力克 原罪(欧) RVEFMR = 欢迎来到北方(法) RVFE20 = 大脚车 碰撞航向(美) RVFP7J = 大脚车 碰撞航向(欧) RVGE78 = 默夫格里芬纵横字迷(美) -RVGP78 = 默夫格里芬纵横字迷(欧) RVHP41 = 拼字游戏互动2009[WiFi][平衡板](欧) RVIE4F = 乐高生化战士(美) RVIP4F = 乐高生化战士(欧) @@ -1914,12 +1921,12 @@ RVJPFR = 金发美女 回到小岛(欧) RVKEXJ = 瓦尔哈拉骑士 艾德尔传奇[WiFi](美) RVKJ99 = 瓦尔哈拉骑士 艾德尔传奇[WiFi](日) RVKKZA = 瓦尔哈拉骑士 艾德尔传奇[WiFi](韩) -RVKP99 = 瓦尔哈拉骑士 艾德尔传奇[WiFi](欧) +RVKP99 = 瓦尔哈拉骑士 艾德尔传奇(欧) RVLPA4 = 摇滚革命(欧) -RVNE20 = 凯文塔克的乡巴佬露营会(美) -RVNP7J = 凯文塔克的乡巴佬露营会(欧) -RVOEPL = 眩晕滚球[平衡板](美) -RVOPPL = 眩晕滚球[平衡板](欧) +RVNE20 = 凯文·塔克的乡村狂欢(美) +RVNP7J = 凯文·塔克的乡村狂欢(欧) +RVOEPL = 眩晕滚球(美) +RVOPPL = 眩晕滚球(欧) RVPEFS = 明星吉他(美) RVPPFS = 明星吉他(欧) RVQE41 = 电影游戏(美) @@ -1932,18 +1939,18 @@ RVSP69 = 极限滑板[平衡板](欧) RVTFMR = 真实故事 兽医(法) RVTPMR = 我的宠物俱乐部(欧) RVTXMR = 真实故事 兽医(X) -RVUE8P = VR网球2009[MP][WiFi](美) +RVUE8P = VR网球2009(美) RVUP8P = VR网球2009[MP][WiFi](欧) RVVE78 = 大沙滩运动(美) RVVP78 = 大沙滩运动(欧) RVXFRT = 现代冬季两项2009[平衡板](法) RVXPRT = 现代冬季两项2009[平衡板](欧) -RVYD52 = 使命召唤 世界大战[WiFi](德) +RVYD52 = 使命召唤 世界大战(德) RVYE52 = 使命召唤 战争世界(美) -RVYK52 = 使命召唤 世界大战[WiFi](韩) -RVYP52 = 使命召唤 世界大战[WiFi](欧) -RVYX52 = 使命召唤 世界大战[WiFi](X) -RVYY52 = 使命召唤 世界大战[WiFi](Y) +RVYK52 = 使命召唤 世界大战(韩) +RVYP52 = 使命召唤 战争世界(欧) +RVYX52 = 使命召唤 世界大战(X) +RVYY52 = 使命召唤 世界大战(Y) RVZE52 = 怪兽大战外星人(美) RVZP52 = 怪兽大战外星人(欧) RW3E4Q = 加勒比海盗 世界的尽头(美) @@ -2002,10 +2009,10 @@ RWRE4F = 古怪赛车 冲撞(美) RWRP4F = 古怪赛车 冲撞(欧) RWSE8P = 马里奥与索尼克在北京奥运(美) RWSJ01 = 马里奥与索尼克在北京奥运(日) -RWSK01 = 马里奥与索尼克在奥运会[WiFi](韩) -RWSP8P = 马里奥与索尼克在奥运会[WiFi](欧) +RWSK01 = 马里奥与索尼克在北京奥运(韩) +RWSP8P = 马里奥与索尼克在北京奥运(欧) RWTEG9 = 少年骇客 外星英雄(美) -RWTPG9 = BEN 10 外星神力(欧) +RWTPG9 = 少年骇客 外星英雄(欧) RWUE52 = X战警 金钢狼(美) RWUP52 = X战警 金钢狼(欧) RWUX52 = X战警 金钢狼(X) @@ -2019,8 +2026,8 @@ RWYPHH = 逃亡2 海龟之梦(欧) RWZE5G = 奇迹世界游乐园(美) RWZP5G = 奇迹世界游乐园(欧) RWZX5G = 奇迹世界游乐园(X) -RX2E70 = 我和我的小马2(美) -RX2P70 = 我和我的小马2(欧) +RX2E70 = 马儿与我2(美) +RX2P70 = 马儿与我2(欧) RX3E01 = 激情漫游 特技竞速(美) RX3J01 = 激情漫游 特技竞速(日) RX4E4Z = 鬼马小灵精 恐怖学校鬼怪的运动日(美) @@ -2052,6 +2059,7 @@ RXDY4Q = 灵机一动(Y) RXEJDA = 棒球大联盟Wii(日) RXFEVN = 海洋大亨(美) RXGE6K = 吉纶立方(美) +RXGP6K = 吉纶立方(欧) RXHF5D = 混沌之家(法) RXIE52 = 变形金刚2 卷土重来[WiFi](美) RXIP52 = 变形金刚2 卷土重来[WiFi](欧) @@ -2063,22 +2071,22 @@ RXLE41 = 实习医生格蕾(美) RXLP41 = 医生格蕾(欧) RXMJ8P = 手舞足蹈填字谜(日) RXNEXS = 又上钩啦 实感钓鱼(美) -RXNJJF = 鲈鱼钓手Wii 世界锦标赛[MP](日) +RXNJJF = 鲈鱼钓手Wii 世界锦标赛(日) RXNPGT = 巴斯钓鱼2(欧) RXPEXS = 实感钓鱼 上钩了(美) -RXPJJF = 实感钓鱼[WiFi](日) -RXPPGT = 实感钓鱼[WiFi](欧) +RXPJJF = 实感钓鱼(日) +RXPPGT = 实感钓鱼(欧) RXQEWR = 野兽家园(美) RXQPWR = 野兽家园(欧) RXRERS = 浪漫鼠德佩罗(美) RXRPRS = 浪漫鼠德佩罗(欧) RXRXRS = 浪漫的老鼠(欧) -RXSPA4 = 热舞生涯 劲爆舞会[跳舞毯](欧) +RXSPA4 = 劲舞革命 劲爆舞会(欧) RXUE41 = 冲浪企鹅(美) RXUP41 = 冲浪企鹅(欧) RXUX41 = 冲浪企鹅(X) RXVXWP = 填字游戏(X) -RXWE20 = 巧克力豆海滩聚会(美) +RXWE20 = M&M巧克力豆海滩聚会(美) RXXE4Q = 化石超进化 起源(美) RXXJ4Q = 化石超进化 起源(日) RXXP4Q = 化石超进化 起源(欧) @@ -2086,7 +2094,7 @@ RXYE4Z = 更多的难题挑战(美) RXYP4Z = 更多的难题挑战(欧) RXZE52 = 坎贝拉危险狩猎2009(美) RXZP52 = 卡贝拉危险狩猎2009(欧) -RY2E41 = 雷曼 疯狂兔子2[WiFi](美) +RY2E41 = 雷曼 疯狂兔子2(美) RY2J41 = 雷曼 疯狂兔子2[WiFi](日) RY2K41 = 雷曼 疯狂兔子2[WiFi](韩) RY2P41 = 疯狂兔子2(欧) @@ -2102,14 +2110,14 @@ RY6EA4 = 去户外吧(美) RY6PA4 = 节拍漫步[平衡板][跳舞毯](欧) RY7PHZ = 忍者首领(欧) RY8EFS = 巴斯专业店 鱼饵(美) -RY9E69 = FIFA足球09[WiFi](美) +RY9E69 = FIFA足球09(美) RYAJDA = 小双侠Wii 惊心动魄机器猛竞速(日或中) RYBE69 = 轰炸方块 猛击聚会(美) -RYBP69 = 轰炸方块 猛击聚会[WiFi](欧) +RYBP69 = 轰炸方块 猛击聚会(欧) RYDELT = 宠物伴侣 动物医生(美) RYDP6V = 宠物伴侣 动物医生(欧) -RYEEEB = 101合1 聚会游戏大合集(美) -RYEPHZ = 101合1 聚会游戏大合集(欧) +RYEEEB = 101合1聚会游戏大合集(美) +RYEPHZ = 101合1聚会游戏大合集(欧) RYGE9B = 阿尔戈斯战士 筋肉冲击(美) RYGJ9B = 阿尔戈斯战士 筋肉冲击(日) RYGP99 = 阿尔戈斯战士 筋肉冲击(欧) @@ -2118,15 +2126,16 @@ RYHPS5 = 虚拟宇宙 扭曲之塔(欧) RYIE9B = 涂鸦王子(美) RYIPNK = 涂鸦王子(欧) RYJPTV = 莉莉菲公主 魔法小仙女(欧) -RYKEAF = 世界滑雪&滑雪板[平衡板](美) -RYKJAF = 家庭滑雪:世界滑雪&滑雪板(日) -RYKPAF = 世界滑雪&滑雪板[平衡板](欧) +RYKEAF = 家庭滑雪&滑雪板(美) +RYKJAF = 家庭滑雪&滑雪板(日) +RYKK01 = 家庭滑雪&滑雪板(韩) +RYKPAF = 家庭滑雪&滑雪板(欧) RYLDSV = 德国顶级模特(德) RYNE6U = 哈迪男孩 隐藏的盗窃(美) RYNP6V = 哈迪男孩 隐藏的盗窃(欧) -RYOEA4 = 游戏王5D's 破碎转轮(美) +RYOEA4 = 游戏王5D's 骑乘决斗者(美) RYOJA4 = 游戏王5D's 骑乘决斗者(日或中) -RYOPA4 = 游戏王5D's 破碎转轮(欧) +RYOPA4 = 游戏王5D's 骑乘决斗者(欧) RYQE69 = 打破砂锅问到底(美) RYQP69 = 打破砂锅问到底(欧) RYQX69 = 打破砂锅问到底(X) @@ -2185,10 +2194,10 @@ RZREGT = 佐罗的宿命(美) RZRPGT = 佐罗的宿命(欧) RZSEGJ = 极速地带(美) RZSP68 = 飞速赛车(欧) -RZTE01 = Wii运动 度假胜地[MP](美) -RZTJ01 = Wii运动 度假胜地[MP](日) -RZTK01 = Wii运动 度假胜地[MP](韩) -RZTP01 = Wii运动 度假胜地[MP](欧) +RZTE01 = Wii运动 度假胜地(美) +RZTJ01 = Wii运动 度假胜地(日) +RZTK01 = Wii运动 度假胜地(韩) +RZTP01 = Wii运动 度假胜地(欧) RZTW01 = Wii运动 度假胜地(中) RZUE4Z = 彩色之旅(美) RZYE41 = 我的单词教练(美) @@ -2199,20 +2208,22 @@ RZZE8P = 疯狂世界(美) RZZJEL = 疯狂世界(日) RZZP8P = 疯狂世界(欧) S22JAF = 家庭钓鱼(日) +S22K01 = 家庭钓鱼(韩) S25JGD = 勇者斗恶龙25周年纪念 FC & SFC 勇者斗恶龙1、2、3 (日) S2AEAF = 活力生活 探险家(美) S2AJAF = 运动生活 探险家(日) -S2APAF = 运动生活 探险家(欧) +S2APAF = 家庭教练 探险家(欧) S2BEPZ = 乡村舞蹈2(美) S2CE54 = 新嘉年华游戏[MP](美) S2CP54 = 新嘉年华游戏[MP](欧) -S2DPML = 跳吧!这是你的舞台[平衡板](欧) -S2EE41 = ABBA: You Can Dance(美) -S2EP41 = ABBA: You Can Dance(欧) +S2DPML = 跳吧!这是你的舞台(欧) +S2EE41 = 舞力全开 ABBA(美) +S2EP41 = 舞力全开 ABBA(欧) S2HE70 = 鬼屋(美) S2HP70 = 鬼屋(欧) S2IE8P = 钢铁侠2(美) S2IP8P = 钢铁人2(欧) +S2IZ8P = 钢铁侠2 沃尔玛版(美) S2LE01 = 宝可梦公园2 在世界的彼端(美) S2LJ01 = 神奇宝贝乐园 2(日) S2LP01 = 神奇宝贝乐园 2(欧) @@ -2225,37 +2236,41 @@ S2PXA4 = 实况足球 中场指挥官 2012(欧) S2PYA4 = 实况足球 中场指挥官 2012(欧) S2QE54 = NBA 2K12(美) S2QP54 = NBA 2K12(欧) -S2RPNK = 目标狙击(美) +S2RPNK = 目标狙击(欧) S2TJAF = 太鼓达人Wii 大张旗鼓!二代目(日) S2UE41 = 舞力全开2020(美) S2UP41 = 舞力全开2020(欧) +S2VEG9 = 胜利之歌 领先者(美) S2WE78 = WWE激爆职业摔角 全明星大赛(美) S2WP78 = WWE激爆职业摔角 全明星大赛(欧) -S2XE41 = 蓝色小精灵2(美) +S2XE41 = 蓝精灵2(美) S2XP41 = 蓝精灵2(欧) S2YE52 = 勇敢向前冲4(美) S2ZE52 = 开心鼠园2(美) S2ZP52 = 开心鼠园2(欧) S3AE5G = 电影空间大冒险(美) -S3APGT = 电影空间大冒险(美) +S3APGT = 电影空间大冒险(欧) S3BEWR = 蝙蝠侠 英勇与无畏(美) S3BPWR = 蝙蝠侠 英勇与无畏(欧) S3CENR = 三冠王滑雪锦标赛[平衡板](美) S3DE18 = 德卡运动会3(美) -S3DJ18 = 德卡运动会3[MP][WiFi](日) +S3DJ18 = 德卡运动会3(日) S3DP18 = 德卡运动会3[MP][WiFi](欧) S3EE78 = 芭比娃娃 时尚风格(美) S3EP78 = 芭比娃娃 时尚风格(欧) +S3EXVZ = 芭比娃娃 时尚风格(X) S3FE69 = FIFA足球13(美) -S3FP69 = FIFA 足球 13 +S3FP69 = FIFA足球13(欧) +S3FX69 = FIFA足球13(X) S3GE20 = 冰川赛车3(美) +S3GPXT = 冰川赛车3(欧) S3HJ08 = 战国 BASARA3 宴(日) S3IPA4 = 实况足球2013(欧) S3ME69 = 模拟人生3(美) S3MP69 = 模拟人生3(欧) S3PE4Q = 迪士尼公主 我的童话冒险(美) S3PP4Q = 迪士尼公主 我的童话冒险(欧) -S3PX4Q = 迪士尼公主 我的童话冒险(欧) +S3PX4Q = 迪士尼公主 我的童话冒险(X) S3RJMS = 一闪女皇(日) S3SJ18 = 卡拉OK Joysound Wii超级DX版 好歌一起唱(日) S3TJAF = 太鼓达人Wii 大家的聚会!三代目(日) @@ -2269,21 +2284,24 @@ S59E01 = 战国无双 3(美) S59JC8 = 战国无双 3(日) S59P01 = 战国无双 3(欧) S5BETL = 回到未来(美) +S5BPKM = 回到未来(欧) S5DE41 = 舞力全开 迪士尼派对2(美) S5DP41 = 舞力全开 迪士尼派对2(欧) S5EE41 = 舞力全开2019(美) S5EP41 = 舞力全开2019(欧) S5KJAF = 太鼓达人Wii 超豪华版(日) S5QJC8 = 战国无双3 猛将传(日) +S5RESZ = 拉姆赛车(美) S5RPNJ = 拉姆赛车(欧) S5SJHF = 闪电十一人GO时空之石 王牌前锋 2013(日) S5TEG9 = 少年骇客 全面进化(美) +S5TPAF = 少年骇客 全面进化(欧) S5WE20 = 在50个游戏里环游世界(美) S6BE4Q = 勇敢传说(美) S6BP4Q = 勇敢传说(欧) S6BX4Q = 勇敢传说(欧) S6IE78 = 迪斯尼公主故事书(美) -S6IP78 = 迪斯尼公主故事书(美) +S6IP78 = 迪斯尼公主故事书(欧) S6RE52 = 无敌破坏王(美) S6RP52 = 无敌破坏王(欧) S72E01 = 星之卡比 20周年纪念合集(美) @@ -2296,15 +2314,18 @@ S7BE69 = 棋盘游戏(美) S7BP69 = 棋盘游戏(欧) S7CJAF = 假面骑士 巅峰英雄 Fourze(日) S7DE52 = 愤怒的小鸟 星球大战(美) +S7DP52 = 愤怒的小鸟 星球大战(欧) SA3E5G = 鼠来宝3(美) +SA3P5G = 鼠来宝3(欧) +SA3XGT = 鼠来宝3(X) SA5E78 = 你比五年级生聪明吗3(美) SA6EG9 = 少年骇客 银河赛车(美) -SA6PAF = Ben 10 银河赛车(美) +SA6PAF = 少年骇客 银河赛车(欧) SA7ESZ = 小熊软糖 魔法勋章(美) SABENR = 外星怪兽保龄球联赛(美) -SABPJG = 外星怪兽保龄球联赛[MP](欧) +SABPJG = 外星怪兽保龄球联赛(欧) SADE70 = 后院运动 沙地强打者(美) -SAFUHS = 澳大利亚橄榄球联赛(英) +SAFUHS = 澳大利亚橄榄球联赛(U) SAGE41 = 极速前进(美) SAHE69 = 孩之宝 家庭游戏之夜乐趣包(美) SAJE52 = 坎贝拉生存大冒险 卡特迈的阴影(美) @@ -2319,11 +2340,11 @@ SAOP78 = 怪物美少女 尸鬼精灵(欧) SAOXVZ = 怪物美少女 尸鬼精灵(欧) SAQE5G = 好莱坞明星私教(美) SARE4Z = 阿拉丁魔毯竞速(美) -SARPNK = 阿拉丁魔毯竞速[平衡板](欧) +SARPNK = 阿拉丁魔毯竞速(欧) SATE6K = 查克奶酪的超级收藏(美) SAUJ8P = 魔法气泡! 20周年纪念版(日) SAVE5G = 鼠来宝2(美) -SAVX5G = 艾尔文与金花鼠 明星俱乐部(欧) +SAVX5G = 鼠来宝2(X) SAWE52 = 愤怒的小鸟 三部曲(美) SAWP52 = 愤怒的小鸟 三部曲(欧) SAYE20 = 新兵训练营学院(美) @@ -2340,23 +2361,25 @@ SB4J01 = 超级马里奥银河2(日) SB4K01 = 超级马里奥银河2(韩) SB4P01 = 超级马里奥银河2(欧) SB4W01 = 超级马里奥银河2(中) -SB5E54 = NBA 2K11[WiFi](美) -SB5P54 = NBA 2K11[WiFi](欧) +SB5E54 = NBA 2K11(美) +SB5P54 = NBA 2K11(欧) SB6E52 = 爆丸 核心守护者(美) SB6P52 = 爆丸 核心守护者(欧) SB8EQH = 汉堡博特(美) SB9E78 = 芭比娃娃 照顾小狗(美) +SB9EVZ = 芭比娃娃 照顾小狗(美) SB9P78 = 芭比娃娃 照顾小狗(欧) -SB9X78 = 芭比娃娃 照顾小狗(美) +SB9X78 = 芭比娃娃 照顾小狗(X) +SB9YVZ = 芭比娃娃 照顾小狗(Y) SBAJGD = 勇者斗恶龙 怪兽战斗之路 胜利(日) SBBE18 = 金属战斗陀螺 对决大赛场(美) SBBJ18 = 金属战斗陀螺 对决大赛场(日) SBBP18 = 金属战斗陀螺 对决大赛场(欧) SBCJ2N = 比利的训练营Wii 享受减肥(日) -SBDE08 = 生化危机 暗黑编年史(美或中) -SBDJ08 = 生化危机 暗黑历代记[WiFi](日) -SBDK08 = 生化危机 暗黑历代记[WiFi](韩) -SBDP08 = 生化危机 暗黑历代记[WiFi](欧) +SBDE08 = 生化危机 暗黑历代记(美或中) +SBDJ08 = 生化危机 暗黑历代记(日) +SBDK08 = 生化危机 暗黑历代记(韩) +SBDP08 = 生化危机 暗黑历代记(欧) SBEPSV = 百慕大三角 拯救珊瑚礁(欧) SBFE70 = 后院橄榄球10(美) SBHEFP = 雷明顿美洲猎鸟记(美) @@ -2364,20 +2387,20 @@ SBHPNK = 雷明顿美洲猎鸟记(欧) SBIEVZ = 勤劳理发师(美) SBIPVZ = 勤劳理发师(欧) SBJEG9 = 少年骇客 终极异形之宇宙毁灭(美) -SBJPAF = BEN 10 外星神力 终极异型(欧) +SBJPAF = 少年骇客 终极异形之宇宙毁灭(欧) SBKEPZ = 布朗斯威克 宇宙领域保龄球(美) SBLE5G = 男孩与软泥(美) SBLP5G = 男孩与软泥(欧) -SBNEG9 = 少年骇客 外星英雄之魔賈斯袭击(美) -SBNPG9 = BEN 10 外星神力 维尔加科斯的反击(欧) +SBNEG9 = 少年骇客 外星英雄之魔贾斯的袭击(美) +SBNPG9 = 少年骇客 外星英雄之魔贾斯的袭击(欧) SBQE4Z = 雄鹿猎人(美) SBREJJ = 一起跳芭蕾(美) -SBRPKM = 一起跳芭蕾[平衡板](欧) -SBSEFP = 雷明顿狩猎北美超级大满贯(美) -SBSURN = 雷明顿狩猎北美超级大满贯(英) +SBRPKM = 一起跳芭蕾(欧) +SBSEFP = 雷明顿超级大满贯狩猎 北美(美) +SBSURN = 雷明顿超级大满贯狩猎 北美(英) SBVE78 = 海绵宝宝 碰碰船竞速(美) SBVP78 = 海绵宝宝 碰碰船竞速(欧) -SBVS78 = 海绵宝宝 碰碰船竞速(欧) +SBVS78 = 海绵宝宝 碰碰船竞速(西) SBWE5G = 育儿妈妈(美) SBWJRA = 育儿妈妈(日或中) SBWPGT = 育儿妈妈(欧) @@ -2386,7 +2409,7 @@ SBYE41 = 起舞百老汇(美) SBYP41 = 起舞百老汇(欧) SBZESZ = 百慕大三角 拯救珊瑚礁(美) SC2E8P = 管道2(美) -SC2P8P = 管道2[MP][WiFi](欧) +SC2P8P = 管道2(欧) SC4E64 = 乐高星球大战3 克隆人战争(美) SC4P64 = 乐高星球大战3 克隆人战争(欧) SC5PGN = 挑战自我 填字游戏(欧) @@ -2401,19 +2424,20 @@ SC7Z52 = 使命召唤 黑色行动(英) SC8E01 = Wii遥控器Plus 动感欢乐组合[MP](美) SC8J01 = Wii控制器加强版 动感欢乐组合(日或中) SC8P01 = Wii遥控器Plus 动感欢乐组合[MP](欧) -SC9P52 = 卡贝拉猎人2010(美) +SC9P52 = 坎贝拉猎人2010(欧) SCAE18 = 鬼铃 黑暗来电(美) -SCAJ18 = 鬼铃 黑暗来电(日) +SCAJ18 = 鬼铃 黑暗来电(日或中) SCAP18 = 鬼铃 黑暗来电(欧) SCBPNK = 自行车运动(欧) SCDE52 = 坎贝拉危险狩猎2011(美) -SCDP52 = 坎贝拉危险狩猎 2011(欧) +SCDP52 = 坎贝拉危险狩猎2011(欧) SCEE6K = 查克奶酪的派对游戏(美) SCFPNK = 魔怪狂欢节(欧) -SCGE20 = 凯文塔克的乡村狂欢 农场动物赛车锦标赛(美) +SCGE20 = 凯文·塔克的农场动物赛车锦标赛(美) +SCGPXT = 凯文·塔克的农场动物赛车锦标赛(欧) SCHEQH = 加拿大狩猎(美) -SCIE41 = CSI 致命阴谋(美) -SCIP41 = CSI 致命阴谋(欧) +SCIE41 = 犯罪现场调查 致命阴谋(美) +SCIP41 = 犯罪现场调查 致命阴谋(欧) SCJE4Q = 乐高神鬼奇航(美) SCJP4Q = 乐高神鬼奇航(欧) SCKE6K = 查克奶酪的运动游戏(美) @@ -2423,27 +2447,28 @@ SCNPA4 = 暮光之城(欧) SCPE70 = 巨虫入侵ACT(美) SCREJH = 小鸡大暴乱(美) SCRPJH = 小鸡大暴乱(欧) -SCSE52 = 游轮度假游戏[MP](美) -SCSPGR = 游轮度假游戏[MP](欧) +SCSE52 = 游轮度假游戏(美) +SCSPGR = 游轮度假游戏(欧) SCTPNK = 小魔怪惊喜(欧) SCUPFR = 疯狂小鸡嘉年华派对(欧) SCWE41 = 金吉姆健身房 舞蹈锻炼(美) SCWP41 = 我的健身教练 舞蹈锻炼[平衡板](欧) SCXESZ = 雪福来卡玛洛 野外驾驶(美) -SCXPNJ = 雪福来卡玛洛 野外驾驶(美) +SCXPNJ = 雪福来卡玛洛 野外驾驶(欧) SCYE4Q = 汽车总动员2(美) SCYP4Q = 汽车总动员2(欧) -SCYX4Q = 汽车总动员2(欧) -SCYY4Q = 汽车总动员2(欧) -SCYZ4Q = 汽车总动员2(欧) +SCYR4Q = 汽车总动员2(俄) +SCYX4Q = 汽车总动员2(X) +SCYY4Q = 汽车总动员2(Y) +SCYZ4Q = 汽车总动员2(Z) SCZEMH = 疯狂机器(美) SCZPFR = 疯狂机器(欧) SD2E41 = 舞力全开2(美) -SD2J01 = 舞力全开 Wii (日) +SD2J01 = 舞力全开 日本版(日) SD2K41 = 舞力全开2(韩) SD2P41 = 舞力全开2(欧) SD2Y41 = 舞力全开2 百思买版(美) -SD3DSV = 健康教练 每天感觉好极了[平衡板](欧) +SD3DSV = 健康教练 每天感觉好极了(欧) SD5PTV = 小学学习检测 德语(欧) SD6PTV = 小学学习检测 英语1-4年级(欧) SD7PTV = 小学学习检测 数学(欧) @@ -2451,9 +2476,9 @@ SD9JAF = SD高达 扭蛋战争(日) SDAE5G = 女孩们的勇敢游戏(美) SDBE78 = 颜料宝贝2(美) SDBP78 = 颜料宝贝2(欧) -SDDPML = 两性终极之战[平衡板](欧) +SDDPML = 两性终极之战(欧) SDEE5G = 舞感(美) -SDEPGT = 舞感[MP](美) +SDEPGT = 舞感(欧) SDFE4Q = 迪斯尼想唱就唱 合家欢唱版(美) SDFP4Q = 迪斯尼想唱就唱 合家欢唱版(欧) SDGE4Q = 迪斯尼全明星派对(美) @@ -2469,14 +2494,14 @@ SDNE41 = 舞力全开(美) SDNP41 = 舞力全开(欧) SDOPLR = 神秘博士 重返地球(欧) SDPE54 = 探险家朵拉 生日大冒险(美) -SDPP54 = 探险家多拉 生日大冒险(欧) -SDREYG = 最强赛车大奖赛 改装车赛(美) -SDRPNG = 改装车赛(欧) +SDPP54 = 探险家朵拉 生日大冒险(欧) +SDREYG = 急速赛车 改装车赛(美) +SDRPNG = 急速赛车 改装车赛(欧) SDSPNG = We Dance(欧) SDTPGN = PDC世界飞镖锦标赛 职业巡回赛(欧) -SDUE41 = 蓝色小精灵 舞蹈派对(美) -SDUP41 = 蓝色小精灵(欧) -SDUX41 = 蓝色小精灵 舞蹈派对(美) +SDUE41 = 蓝精灵舞蹈派对(美) +SDUP41 = 蓝精灵舞蹈派对(欧) +SDUX41 = 蓝精灵舞蹈派对 沃尔玛版(美) SDVE41 = 极道车魂 旧金山(美) SDVP41 = 极道车魂 旧金山(欧) SDWE18 = 黑影之塔(美) @@ -2484,43 +2509,47 @@ SDWJ18 = 黑影之塔(日) SDWP18 = 黑影之塔(欧) SDXE4Q = 迪士尼世界(美) SDXP4Q = 迪士尼世界(欧) -SDYEA4 = 热舞革命[跳舞垫][平衡板](美) -SDYPA4 = 热舞革命 劲爆舞会4(欧) +SDYEA4 = 劲舞革命(美) +SDYPA4 = 劲舞革命 劲爆舞会4(欧) SDZE41 = 舞力全开 儿童版(美) SDZP41 = 舞力全开 儿童版(欧) SE2E69 = EA运动活力2(美) -SE2P69 = EA运动活力2[平衡板](欧) +SE2P69 = EA运动活力2(欧) SE3E41 = 舞力全开2015(美) SE3P41 = 舞力全开2015(欧) SE8E41 = 舞力全开2018(美) SE8P41 = 舞力全开2018(欧) -SEAE69 = EA运动活力 更多锻炼[平衡板](美) -SEAJ13 = EA运动活力 更多锻炼[平衡板](日) -SEAP69 = EA运动活力 更多锻炼[平衡板](欧) +SEAE69 = EA运动活力 更多锻炼(美) +SEAJ13 = EA运动活力 更多锻炼(日) +SEAP69 = EA运动活力 更多锻炼(欧) SECE69 = EA创造(美) SECP69 = EA创造(欧) -SEGE6U = 瑜伽[平衡板](美) +SEGE6U = 瑜伽(美) SEGP6V = 瑜伽(欧) -SEKJ99 = 活祭之夜(日) +SEKJ99 = 活祭之夜(日或中) SELE69 = FIFA足球11(美) -SELP69 = FIFA足球11[WiFi](欧) -SELX69 = FIFA足球11[WiFi](欧) -SEME4Q = 米老鼠传奇(美) -SEMJ01 = 米老鼠传奇(日) -SEMP4Q = 米老鼠传奇(欧) -SEMX4Q = 米老鼠传奇(X) -SEMY4Q = 传奇米老鼠(欧) -SEMZ4Q = 传奇米老鼠(欧) -SEPE41 = 黑眼豆豆大体验(美) +SELP69 = FIFA足球11(欧) +SELX69 = FIFA足球11(X) +SEME4Q = 传奇米老鼠(美) +SEMJ01 = 传奇米老鼠(日) +SEMP4Q = 传奇米老鼠(欧) +SEMX4Q = 传奇米老鼠(X) +SEMY4Q = 传奇米老鼠(Y) +SEMZ4Q = 传奇米老鼠(Z) +SEPE41 = 黑眼豆豆 巨星体验(美) SEPP41 = 黑眼豆豆大体验(欧) -SEPZ41 = 黑眼豆豆大体验 特别版(美) +SEPZ41 = 黑眼豆豆 巨星体验特别版(Z) SERE4Q = 传奇米老鼠2 双重力量(美) -SERF4Q = 传奇米老鼠2:双重力量(欧) -SERP4Q = 传奇米老鼠2:双重力量(欧) -SERV4Q = 传奇米老鼠2:双重力量(欧) +SERF4Q = 传奇米老鼠2 双重力量(法) +SERK8M = 传奇米老鼠2 双重力量(韩) +SERP4Q = 传奇米老鼠2 双重力量(欧) +SERV4Q = 传奇米老鼠2 双重力量(V) +SESEWR = 芝麻街 准备就位葛罗弗(美) +SEVPEY = 夏威夷劫案(欧) SEZJHF = 闪电十一人 强袭者 2012极限版(日) SF2P64 = 星际大战 原力解放2(欧) SF4E20 = 横冲直撞(美) +SF4PXT = 横冲直撞(X) SF5E41 = 六步健身法(美) SF5J41 = 健身工坊(日) SF5P41 = 我的健身教练 俱乐部(欧) @@ -2533,20 +2562,21 @@ SFAJGD = 钢之炼金术师 黄昏少女(日) SFBE70 = 后院运动 菜鸟向前冲(美) SFDEAF = 活力生活 梦幻主题乐园(美) SFDJAF = 家庭训练机 梦幻主题乐园(日) -SFDPAF = 家庭訓練機 夢幻主題樂園(歐) -SFGE69 = 孩之宝 家庭游戏之夜4 游戏节目(美) +SFDPAF = 家庭教练 梦幻主题乐园(欧) +SFGE69 = 孩之宝 家庭游戏之夜4 游戏节目(美) +SFGP69 = 孩之宝 家庭游戏之夜4 游戏节目(欧) SFHEFP = 户外活动合集(美) SFIE01 = 神秘档案 百灵泉(美) SFIP01 = 神秘案件档案(欧) SFKEG9 = 家庭聚会 欢乐瘦身(美) -SFKPAF = 家庭派对 欢乐瘦身[平衡板](欧) +SFKPAF = 家庭派对 欢乐瘦身(欧) SFLDSV = 诅咒的复活节岛(德) SFOEAF = 网络食谱 烹饪对战(美) SFPPFR = 梦幻足球派对(欧) SFQE8P = 美国队长 超级士兵(美) SFQP8P = 美国队长 超级士兵(欧) -SFRDRV = 健身乐趣[平衡板](欧) -SFRPXT = 健身娱乐[平衡板](欧) +SFRDRV = 健身乐趣(欧) +SFRPXT = 健身乐趣(欧) SFSPGT = 全方位猎手(欧) SFTE78 = 财富之轮(美) SFTP78 = 财富之轮(欧) @@ -2557,8 +2587,8 @@ SFWJ13 = 2010南非世界杯足球赛(日) SFWK69 = 2010南非世界杯足球赛(韩) SFWP69 = 2010南非世界杯足球赛(欧) SFWX69 = 2010南非世界杯足球赛(法) -SFWY69 = 2010南非世界杯足球赛(欧) -SFWZ69 = 2010南非世界杯足球赛(美) +SFWY69 = 2010南非世界杯足球赛(Y) +SFWZ69 = 2010南非世界杯足球赛(Z) SFXPKM = 英国偶像(欧) SFXXKM = 英国偶像(欧) SFYEG9 = 家庭聚会 90个丰富好游戏(美) @@ -2566,8 +2596,8 @@ SFYPAF = 家庭聚会 90个丰富好游戏(欧) SFZEPZ = 雉鸡永存(美) SFZPXT = 雉鸡永存(欧) SG2EFS = 疯狂迷你高尔夫2(美) -SG2XUG = 疯狂迷你高尔夫2[MP](美) -SG3DSV = 德国顶级模特2010[平衡板](德) +SG2XUG = 疯狂迷你高尔夫2(X) +SG3DSV = 德国顶级模特2010(德) SG5PSV = 家庭测验(欧) SG6DSV = 伽利略家庭测验(欧) SG7E20 = 加菲猫 拉萨尼亚危机[MP][平衡板](美) @@ -2578,19 +2608,20 @@ SG9EYC = 捣蛋鬼 小魔怪(美) SGAE8P = 剑斗士传奇(美) SGAP8P = 剑斗士传奇(欧) SGBE5G = 极限漆球大赛2(美) +SGBPGT = 极限漆球大赛2(欧) SGCE20 = 冰川赛车2(美) SGDEJJ = 花园一起玩(美) SGDPKM = 花园一起玩(欧) SGEEG9 = 国家地理杂志问答 野生动物(美) SGEPLG = 国家地理杂志问答 野生动物(欧) SGHE41 = 汤姆克兰西 幽灵行动(美) -SGHP41 = 汤姆克兰西 幽灵行动[WiFi](欧) +SGHP41 = 汤姆克兰西 幽灵行动(欧) SGIEA4 = GTI汽车俱乐部 世界城市竞速(美) SGIJA4 = GTI汽车俱乐部 世界城市竞速(日) SGIPA4 = GTI汽车俱乐部 世界城市竞速(欧) SGJDSV = 神秘伽利略米达斯王冠(德) SGKEC8 = 冠军骑师 骑师之道&风速神驹(美) -SGKJC8 = 冠军骑师:风速神驹&骑师之道(日) +SGKJC8 = 冠军骑师 风速神驹&骑师之道(日) SGKPC8 = 冠军骑师 骑师之道&风速神驹(欧) SGLEA4 = 高米迪战士 自然之王(美) SGLPA4 = 高米迪战士 自然之王(欧) @@ -2598,11 +2629,11 @@ SGNE69 = 孩之宝 家庭游戏之夜超值包(美) SGODKP = 迷你高尔夫度假村(欧) SGOETV = 迷你高尔夫度假村(美) SGOPKP = 迷你高尔夫度假村(欧) -SGPEYG = 最强赛车大奖赛 GP经典(美) +SGPEYG = 急速赛车 GP经典(美) SGPPNG = 经典赛车大奖赛(欧) -SGQDSV = 德国顶级模特2011[平衡板](德) +SGQDSV = 德国顶级模特2011(德) SGREGT = 油脂劲歌热舞(美) -SGRPGT = 油脂劲歌热舞[平衡板](欧) +SGRPGT = 油脂劲歌热舞(欧) SGSESZ = 家庭游戏秀(美) SGSP7J = 家庭游戏秀(欧) SGTEFS = 我的私人高尔夫教练 IMG大卫利佰特高尔夫学院[MP][平衡板](美) @@ -2620,23 +2651,26 @@ SH2JMS = 轻松学跳草裙舞(日) SH3E54 = 北美冰球联盟2011[MP][WiFi](美) SH3P54 = 北美冰球联盟2011[MP][WiFi](欧) SH4EFP = 战火纷飞 阿富汗(美) -SH5E69 = 哈利波特与死亡圣器 下集(美) -SH5P69 = 哈利波特 死神的圣物 下集(美) -SH6E52 = 坎贝拉狩猎2012(美) -SH7ESZ = 本田热力四射(美) +SH4PNK = 战火纷飞 阿富汗(欧) +SH5E69 = 哈利·波特与死亡圣器 下集(美) +SH5P69 = 哈利·波特与死亡圣器 下集(欧) +SH6E52 = 坎贝拉猎人2012(美) +SH6P52 = 坎贝拉猎人2012(欧) +SH7ESZ = 狂热本田沙滩车(美) SH7PNJ = 狂热本田沙滩车(欧) SH8E52 = 坎贝拉冒险夏令营(美) -SH8P52 = 坎贝拉冒险夏令营(美) +SH8P52 = 坎贝拉冒险夏令营(欧) SH9ESZ = 希斯与利夫 火速狂飙(美) +SH9PNJ = 希斯与利夫 火速狂飙(欧) SHBE69 = 孩之宝 家庭游戏之夜3(美) SHBP69 = 孩之宝 家庭游戏之夜3(欧) SHDE52 = 驯龙高手(美) -SHDP52 = 驯龙高手(美) +SHDP52 = 驯龙高手(欧) SHEDRM = 农场(德) SHFE20 = 篮球名人堂 极限挑战(美) -SHGDRM = 假日游戏[MP](欧) -SHHE69 = 哈利波特与死亡圣器 上集(美) -SHHP69 = 哈利波特与死神的圣物 上集(欧) +SHGDRM = 假日游戏(德) +SHHE69 = 哈利·波特与死亡圣器 上集(美) +SHHP69 = 哈利·波特与死亡圣器 上集(欧) SHIJ2N = 有氧拳击2 Wii快乐瘦身(日) SHKE20 = 凯蒂猫 四季(美) SHKPNQ = 凯蒂猫 四季(欧) @@ -2648,11 +2682,12 @@ SHOXKR = 雨果 巨魔树林里的魔法(X) SHOYKR = 雨果 巨魔树林里的魔法(Y) SHPE5G = 我们的家 聚会[WiFi](美) SHSE20 = 超级战斗机(美) +SHSPXT = 超级战斗机(欧) SHTE20 = 马修斯狩猎弓(美) -SHUE52 = 坎贝拉危险狩猎 2011 特别版(美) +SHUE52 = 坎贝拉危险狩猎2011 特别版(美) SHVE78 = 风火轮赛车 赛道攻击(美) SHVP78 = 风火轮赛车 赛道攻击(欧) -SHVX78 = 风火轮赛车 赛道攻击(美) +SHVX78 = 风火轮赛车 赛道攻击(X) SHWE41 = 好莱坞广场(美) SHXEWR = 快乐大脚2(美) SHXPWR = 快乐大脚2(欧) @@ -2661,25 +2696,26 @@ SHYP69 = NHL冰球 强打(欧) SHZENR = 哈雷摩托公路狂飙(美) SI3E69 = FIFA足球12(美) SI3P69 = FIFA足球12(欧) -SI3X69 = FIFA足球12[WiFi](欧) -SIAE52 = 冰河世纪4 大陆漂移(美) -SIAI52 = 冰原历险记4 板块漂移(欧) -SIAP52 = 冰原历险记4 板块漂移(欧) +SI3X69 = FIFA足球12(X) +SIAE52 = 冰川时代4(美) +SIAI52 = 冰川时代4(意) +SIAP52 = 冰川时代4(欧) SIDE54 = 席德梅尔的海盗(美) SIDP54 = 席德梅尔的海盗(欧) SIFESZ = 弗兰克斯坦博士岛(美) SIFPNJ = 弗兰克斯坦博士岛(欧) -SIIE8P = 马里奥与索尼克在伦敦奥运[WiFi](美) -SIIJ01 = 马里奥与索尼克在伦敦奥运[WiFi](日) +SIHE4Z = 唱吧热门歌曲(美) +SIIE8P = 马里奥与索尼克在伦敦奥运(美) +SIIJ01 = 马里奥与索尼克在伦敦奥运(日) SIIP8P = 马里奥与索尼克在伦敦奥运(欧) SIJE52 = 我是凯利2 加入我们(美) SIJP52 = 我是凯利2 加入我们(欧) -SILE78 = 百战天虫 战斗岛[WiFi](美) -SILP78 = 百战天虫 战斗岛[WiFi](欧) -SIME69 = 模拟人生合集(美) +SILE78 = 百战天虫 战斗岛(美) +SILP78 = 百战天虫 战斗岛(欧) +SIME69 = 我的模拟人生合集(美) SINPNG = 我们歌唱 罗比 威廉斯(欧) SISENR = 伊莎贝拉公主 女巫的诅咒(美) -SISJ0Q = 骨盆瘦身[平衡板](日) +SISJ0Q = 骨盆瘦身(日) SISPUH = 伊莎贝拉公主 女巫的诅咒(欧) SITPNG = 我们歌唱 德国(欧) SIUUNG = 我们歌唱 南澳洲(欧) @@ -2687,19 +2723,19 @@ SJ2EWR = 史酷比 幽灵沼泽(美) SJ2PWR = 史酷比 幽灵沼泽(欧) SJ3JDA = 人生游戏 欢乐家庭(日) SJ5JDA = 人生游戏 快乐家庭 当地题材增量版(日) -SJ6E41 = 舞力全开:迪士尼派对 +SJ6E41 = 舞力全开 迪士尼派对(美) SJ6P41 = 舞力全开 迪士尼派对(欧) SJ7E41 = 舞力全开 儿童版2014(美) SJ7P41 = 舞力全开 儿童版2014(欧) SJ9E41 = 舞力全开 夏日派对(美) -SJ9P41 = 舞力全开2 额外的歌曲(欧) +SJ9P41 = 舞力全开2 补充歌曲(欧) SJAE5G = 大白鲨 终极猎食者(美) -SJBE52 = 詹姆斯邦德007 黄金眼(美) +SJBE52 = 007 黄金眼(美) SJBJ01 = 007 黄金眼(日) -SJBP52 = 詹姆斯邦德007 黄金眼(欧) +SJBP52 = 007 黄金眼(欧) SJCEZW = 杰里和狗足球(美) SJDE41 = 舞力全开3(美) -SJDJ01 = 舞力全开 Wii2(日) +SJDJ01 = 舞力全开 日本版2(日) SJDK41 = 舞力全开3(韩) SJDP41 = 舞力全开3(欧) SJDX41 = 舞力全开3 特别版(欧) @@ -2709,10 +2745,10 @@ SJEEPK = 开始行动 逃离冒险岛(美) SJFE4Z = 儿童健身岛度假村(美) SJFPGR = 幼儿健身教练(欧) SJFXGR = 幼儿健身教练(欧) -SJGEPK = 开始行动 家庭健身[平衡板](美) +SJGEPK = 开始行动 家庭健身(美) SJHE41 = 舞力全开 精选集(美) SJIEG9 = 吉利安 麦克尔的健身训练2011[MP][平衡板](美) -SJJEA4 = 吉米约翰的超级引擎(美) +SJJEA4 = 吉米·约翰的超级引擎(美) SJKEPK = 疯狂卡丁车(美) SJLEFS = 少年体育联赛(美) SJLPXT = 少年体育联赛(美) @@ -2727,12 +2763,12 @@ SJQEPZ = 宝石探秘三部曲(美) SJQPGR = 宝石探秘三部曲(美) SJREA4 = 说唱巨星(美) SJRPA4 = 说唱巨星(欧) -SJRXA4 = 说唱巨星(欧) -SJRYA4 = 说唱巨星(欧) -SJRZA4 = 说唱巨星(欧) +SJRXA4 = 说唱巨星(X) +SJRYA4 = 说唱巨星(Y) +SJRZA4 = 说唱巨星(Z) SJSEPK = 宠物营救(美) -SJUE20 = 恐龙快打(美) -SJUPXT = 恐龙快打(美) +SJUE20 = 恐龙快枪(美) +SJUPXT = 恐龙快枪(欧) SJVE20 = 肖恩约翰逊体操[平衡板](美) SJWJA4 = 胜利十一人2010 蓝武士的挑战(日) SJXD41 = 舞力全开4 特别版(欧) @@ -2760,8 +2796,9 @@ SKOEA4 = 卡拉OK革命 欢乐合唱团3(美) SKOPA4 = 卡拉OK革命欢乐合唱团3(美) SKREG9 = 假面骑士 龙骑士(美) SKSE54 = NBA 2K13(美) +SKSP54 = NBA 2K13(欧) SKTE78 = 全明星空手道(美) -SKTP78 = 全明星空手道[MP](欧) +SKTP78 = 全明星空手道(欧) SKUE78 = 功夫熊猫2(美) SKUP78 = 功夫熊猫2(欧) SKUZ78 = 功夫熊猫2(美) @@ -2781,8 +2818,9 @@ SLAE78 = 最后的气宗(美) SLAP78 = 最后的气宗(欧) SLAZ78 = 最后的气宗 玩具反斗城版(美) SLCEGN = 起舞吧(美) +SLCPGN = 起舞吧(欧) SLDEYG = 一起跳舞(美) -SLDPLG = 跟Mel B一起跳舞(欧) +SLDPLG = 与Mel B共舞(欧) SLEE78 = 乔布拉 促进大脑发展的冥想游戏(美) SLEP78 = 乔布拉 促进大脑发展的冥想游戏(欧) SLHEWR = 乐高哈利波特 下集(美) @@ -2794,26 +2832,26 @@ SLRPWR = 乐高指环王(欧) SLSEXJ = 最后的故事 SLSJ01 = 最后的故事(日) SLSP01 = 最后的故事(日) -SLTEJJ = 新优健身:瑜伽和普拉提[MP][平衡板](美) -SLTPLG = 新优健身 瑜珈和普拉提[MP][平衡板](欧) +SLTEJJ = 新优健身 瑜伽和普拉提(美) +SLTPLG = 新优健身 瑜珈和普拉提(欧) SLVP41 = 我们敢(欧) SLWE41 = 沃尔多在哪里? 梦幻之旅(美) SLYESZ = 丑恶人生(美) -SLYPNJ = 丑恶人生(美) +SLYPNJ = 丑恶人生(欧) SM2E52 = 十分钟快速健身(美) SM2P52 = 十分钟快速健身(欧) -SM4E20 = 大脚怪物卡车大破坏(美) +SM4E20 = 怪物卡车大破坏(美) SM5EAF = 侍战队真剑者(美) SM5PAF = 侍战队真剑者(欧) SM6PNK = 我的形体教练2 健身与舞蹈(欧) SM7E69 = 美式橄榄球大联盟12(美) -SM8D52 = 使命召唤 现代战争3(欧) +SM8D52 = 使命召唤 现代战争3(德) SM8E52 = 使命召唤 现代战争3(美) -SM8F52 = 使命召唤 现代战争3(欧) -SM8I52 = 使命召唤 现代战争 3(欧) +SM8F52 = 使命召唤 现代战争3(法) +SM8I52 = 使命召唤 现代战争3(意) SM8P52 = 使命召唤 现代战争3(欧) -SM8S52 = 使命召唤 现代战争 3(欧) -SM8X52 = 使命召唤 现代战争3(欧) +SM8S52 = 使命召唤 现代战争3(西) +SM8X52 = 使命召唤 现代战争3(X) SM9E54 = 职业棒球大联盟2K12(美) SMAENR = 海军陆战队 现代城市战(美) SMAPGN = 海军陆战队 现代城市战(欧) @@ -2839,8 +2877,8 @@ SMNJ01 = 新超级马里奥兄弟Wii(日) SMNK01 = 新超级马里奥兄弟Wii(韩) SMNP01 = 新超级马里奥兄弟Wii(欧) SMNW01 = 新超级马里奥兄弟Wii(中) -SMOE41 = 迈克尔杰克逊 生涯(美) -SMOJ41 = 迈克杰克逊 梦幻体验(日) +SMOE41 = 迈克尔·杰克逊 舞王体验(美) +SMOJ41 = 迈克尔·杰克逊 舞王体验(日) SMOP41 = 迈克尔杰克逊 生涯(欧) SMOX41 = 迈克尔杰克逊 生涯(美) SMOY41 = 迈克尔杰克逊 生涯(欧) @@ -2856,8 +2894,8 @@ SMVE54 = 职业棒球大联盟2K11(美) SMWE4Z = 荒岛求生(美) SMYE20 = 分秒必争(美) SMZE78 = 漫威超级英雄小队 漫画大战(美) -SMZP78 = 超级漫画英雄小队 漫画大战(美) -SN2E69 = 玩具枪大战 双重爆破合集(美) +SMZP78 = 超级漫画英雄小队 漫画大战(欧) +SN2E69 = 玩具枪大作战 双重爆破合集(美) SN3EYG = 急速赛车 拉力赛(美) SN3PNG = 急速赛车 拉力赛(欧) SN4EDA = 火影忍者疾风传 龙刃编年史(美) @@ -2877,13 +2915,13 @@ SNBE41 = 重返犯罪现场 NCIS(美) SNBP41 = 重返犯罪现场 NCIS(欧) SNCE8P = 索尼克 五彩缤纷(美) SNCJ8P = 索尼克 五彩缤纷(日) -SNCP8P = 索尼克 五彩缤纷[WiFi](欧) +SNCP8P = 索尼克 五彩缤纷(欧) SNDE20 = 一掷千金特别版(美) SNEENR = 北美狩猎盛典2(美) SNEPXT = 北美狩猎盛典2(欧) SNFE69 = EA运动活力 NFL训练营(美) SNGEJJ = 和Mel B一起健身(美) -SNGPLG = 跟Mel B一起减肥[MP][平衡板](欧) +SNGPLG = 和Mel B一起健身(欧) SNHE69 = 极品飞车 热力追踪(美) SNHJ13 = 极品飞车 热力追踪(日) SNHP69 = 极品飞车 热力追踪(欧) @@ -2895,23 +2933,25 @@ SNKX54 = 尼克罗顿健身[平衡板](欧) SNLE54 = 尼克罗顿舞蹈(美) SNLX54 = 尼克罗顿舞蹈(欧) SNMEAF = Namco博物馆 重制版(美) +SNPE52 = 云斯顿赛车 内线(美) SNQE7U = 国家地理大挑战(美) SNQPLG = 国家地理大挑战(欧) SNRE52 = 云斯顿赛车 快感释放(美) -SNSE52 = 云斯顿赛车 2011(美) +SNSE52 = 云斯顿赛车2011(美) SNTEXN = Netflix系统安装盘(美) SNUPJW = 快乐神经元学院(欧) -SNVE69 = 极速快感 亡命天涯(美) -SNVJ13 = 极速快感 亡命天涯(日) -SNVP69 = 极速快感 亡命天涯(欧) +SNVE69 = 极品飞车 亡命天涯(美) +SNVJ13 = 极品飞车 亡命天涯(日) +SNVP69 = 极品飞车 亡命天涯(欧) SNXJDA = 火影忍者疾风传 激斗忍者大战特别版(日) SNYEVZ = 精灵高中 13个愿望(美) SNZEVZ = 芭比梦幻屋派对(美) +SNZPVZ = 芭比梦幻屋派对(欧) SO3EE9 = 符文工房 蓝海奇缘(美) SO3J99 = 符文工房 蓝海奇缘(日) SOAE52 = 坎贝拉狩猎探险(美) SOCE4Z = 致命捕捞 混乱海域(美) -SOIEEB = 101合1 运动聚会游戏大合集(美) +SOIEEB = 101合1运动聚会游戏大合集(美) SOIPHZ = 101合1运动聚会游戏超级合集(欧) SOJE41 = 雷曼 起源(美) SOJP41 = 雷曼 起源(欧) @@ -2923,13 +2963,14 @@ SOMP01 = 大家的节奏天国(欧) SONDMR = 我的第一首卡拉OK(德) SONFMR = 我的第一首卡拉OK(法) SONPMR = 我的第一首卡拉OK(欧) +SORE4Z = 俄勒冈之旅(美) SOSEG9 = 极速蜗牛 超级特技队(美) SOTE52 = 勇敢向前冲(美) SOUE01 = 萨尔达传说 天空之剑(美) SOUJ01 = 塞尔达传说 天空之剑(日或中) SOUK01 = 萨尔达传说 天空之剑(韩) SOUP01 = 萨尔达传说 天空之剑(欧) -SP2E01 = Wii运动+Wii运动 度假胜地(欧) +SP2E01 = Wii运动+Wii运动 度假胜地(美) SP2P01 = Wii运动+Wii运动 度假胜地(欧) SP3E41 = 百万美金金字塔(美) SP4PJW = 法式滚球[MP](法) @@ -2950,6 +2991,7 @@ SPDP52 = 蜘蛛侠 破碎时空(欧) SPEE20 = 极速(美) SPEPXT = 极速(欧) SPGPPN = 粉红猪小妹2 快乐游戏(欧) +SPHPJW = 西部枪手(欧) SPIE18 = 装扮聚会(美) SPIJ18 = 家庭聚会100种(日) SPIP18 = 家庭聚会100种(欧) @@ -2973,20 +3015,21 @@ SQ2EPZ = 乡村舞蹈(美) SQ3EPZ = 乡村舞蹈(美) SQAE52 = 坎贝拉的非洲冒险(美) SQDE8P = 纽约风暴与洛杉矶机枪街机版(美) -SQDP8P = 纽约风暴与洛杉矶机枪街机版[WiFi](欧) +SQDP8P = 纽约风暴与洛杉矶机枪街机版(欧) SQFE5G = 飞哥与小佛 寻找酷的东西(美) SQIE4Q = 迪斯尼无限世界(美) SQKE5G = 料理妈妈2合1(美) -SQLE4Z = 卡通频道明星大乱斗 XL(美) -SQLPGN = 卡通频道大乱斗 -SQME52 = 蜘蛛侠:时间边缘(美) -SQMP52 = 蜘蛛人 时间裂痕(欧) +SQLE4Z = 卡通频道明星大乱斗(美) +SQLPGN = 卡通频道明星大乱斗(欧) +SQME52 = 蜘蛛侠 时间边缘(美) +SQMP52 = 蜘蛛侠 时间边缘(欧) SQPPX4 = 速度 2(欧) SQUDX3 = 测验派对(欧) SQUFX3 = 测验派对(欧) SQUPX3 = 测验派对(欧) -SQVE69 = FIFA 15(美) -SQVX69 = FIFA足球 15 +SQVE69 = FIFA足球15(美) +SQVP69 = FIFA足球15(欧) +SQVX69 = FIFA足球15(X) SR4E41 = 疯狂兔子 时空旅行(美) SR4J41 = 疯狂兔子:时光旅行[WiFi](日) SR4P41 = 疯狂兔子 时空旅行[MP][WiFi](欧) @@ -3015,7 +3058,7 @@ SRPE4Q = 迪斯尼 长发公主(美) SRPP4Q = 迪斯尼 长发公主(欧) SRQE41 = 球拍运动(美) SRQP41 = 球拍运动[MP](欧) -SRRENR = 消遣游戏室[MP](美) +SRRENR = 消遣游戏室(美) SRRPGN = 盛大聚会游戏(欧) SRSE20 = 超级音速赛车(美) SRUE4Z = 红鼻子驯鹿鲁道夫(美) @@ -3031,7 +3074,7 @@ SS3UWR = 芝麻街 埃尔默动物园历险记(欧) SS4EWR = 芝麻街 饼干计数嘉年华(美) SS4UWR = 芝麻街 饼干计数嘉年华(美) SS5ENR = 赛帝时尚公司(美) -SS6UHS = 实况橄榄球年度特别版(欧) +SS6UHS = 实况橄榄球年度特别版(U) SS7EFP = 雷明顿超级大满贯狩猎 非洲(美) SS7URN = 雷明顿超级大满贯狩猎 非洲(英) SS8E78 = 海绵宝宝 涂鸦裤子(美) @@ -3051,7 +3094,7 @@ SSEDNG = 我们唱歌 再来一曲[麦克风](欧) SSEPNG = 我们唱歌 再来一曲[麦克风](欧) SSGPNG = 我们唱歌[麦克风](欧) SSHPHH = 夏洛克福尔摩斯 银耳饰之案(欧) -SSIENR = 冬季爆发 九大冰雪运动[平衡板](美) +SSIENR = 冬季爆发 九大冰雪运动(美) SSJEJJ = 夏季明星 2012(美) SSJPKM = 夏季明星 2012(欧) SSLENR = 骑手的天堂(美) @@ -3059,22 +3102,24 @@ SSLPKM = 马术俱乐部(欧) SSMEYG = 美国门萨学院(美) SSMPGD = 门萨学院(欧) SSNEYG = 狙击精英(美) -SSNPHY = 狙击精英[WiFi](欧) -SSPP52 = 小龙斯派罗的大冒险(歐) -SSPX52 = 小龙斯派罗的大冒险(欧) +SSNPHY = 狙击精英(欧) +SSPE52 = 小龙斯派罗的大冒险(美) +SSPP52 = 小龙斯派罗的大冒险(欧) +SSPX52 = 小龙斯派罗的大冒险(X) SSQE01 = 马力欧派对9(美) SSQJ01 = 马力欧派对9(日) SSQP01 = 马里奥派对9(欧) SSQW01 = 马里奥派对9(中) SSRE20 = 狂野西部枪战(美) -SSRPXT = 狂野西部枪战(X) +SSRPXT = 狂野西部枪战(欧) +SSSEWR = 芝麻街 埃尔默的音乐怪兽(美) SSTEG9 = 小子历险记 天空上尉(美) SSTPY5 = 特技飞行 空中英雄(欧) SSUES5 = 回转寿司(美) SSVE52 = 勇敢向前冲3(美) -SSWDRM = 水上运动[平衡板](德) +SSWDRM = 水上运动(德) SSWEPZ = 水上运动(美) -SSWPGR = 水上运动[平衡板](欧) +SSWPGR = 水上运动(欧) SSZE5G = 剑(美) ST3J01 = 听力大考验(日) ST4PNX = 托马斯和伙伴们 铁路小英雄[MP](美) @@ -3083,15 +3128,16 @@ ST5E52 = 变形金刚 塞伯坦冒险(美) ST5P52 = 变形金刚 赛博坦大战(欧) ST6E78 = 减肥达人挑战赛(美) ST6P78 = 减肥达人挑战赛[平衡板](欧) -ST7E01 = 富豪街Wii[WiFi](美) +ST7E01 = 富豪街Wii(美) ST7JGD = 富豪街Wii(日或中) -ST7P01 = 富豪街Wii[WiFi](欧) +ST7P01 = 富豪街Wii(欧) ST9E52 = 顶级射手(美) STAE78 = 猜猜画画(美) STAP78 = 猜猜画画(欧) STAU78 = 猜猜画画(欧) STDEFP = 目标狙击(美) -STEETR = 俄罗斯方块派对 豪华版[WiFi][平衡板](美) +STDURN = 目标狙击(英) +STEETR = 俄罗斯方块派对 豪华版(美) STEJ18 = 俄罗斯方块派对奖金(日或中) STEPTR = 俄罗斯方块派对 豪华版[WiFi][平衡板](欧) STFE52 = 变形金刚:领袖(美) @@ -3112,7 +3158,7 @@ STNE41 = 丁丁历险记 独角兽号的秘密(美) STNP41 = 丁丁历险记 独角兽号的秘密(欧) STOE4Q = 汽车总动员 拖线狂想曲(美) STOP4Q = 汽车总动员 拖线狂想曲(欧) -STOX4Q = 汽车总动员 拖线狂想曲(欧) +STOX4Q = 汽车总动员 拖线狂想曲(X) STPPML = 宠物兽医 海洋巡防(欧) STQJHF = 闪电十一人 王牌前锋(日) STRE4Q = 电子世界争霸战(美) @@ -3126,7 +3172,7 @@ STSZ4Q = 玩具总动员3 玩具盒特别版(美) STTDRM = 隐藏的秘密 泰坦尼克号(德) STTE52 = 隐藏的秘密 泰坦尼克号(美) STTPGR = 隐藏的秘密 泰坦尼克号(欧) -STTXGR = 隐藏的秘密 泰坦尼克号(欧) +STTXGR = 隐藏的秘密 泰坦尼克号(X) STVDSV = 电视总事件(德) STWE69 = 泰格伍兹高尔夫巡回赛11[MP][WiFi](美) STWP69 = 泰格伍兹高尔夫巡回赛11[MP][WiFi](欧) @@ -3147,7 +3193,8 @@ SU3SMR = 你来唱2[WiFi][麦克风](西) SU3UMR = 你来唱2[WiFi][麦克风](欧) SU4E78 = UFC 私人教练(美) SU4P78 = UFC 私人教练[平衡板][Wi-Fi](欧) -SU5EVZ = 精灵高校 极限轮滑迷宫(美) +SU5EVZ = 精灵高中 极限轮滑迷宫(美) +SU5PVZ = 精灵高中 极限轮滑迷宫(欧) SU6E5G = 尊巴健身 核心版(美) SU6XGT = 尊巴瘦身:核心版 SU7EG9 = 守护者联盟(美) @@ -3158,45 +3205,59 @@ SUKJ01 = 星之卡比 重回梦幻岛(日或中) SUKP01 = 星之卡比 Wii(欧) SUMJC8 = 胜利赛马世界 2010(日) SUNEYG = 麋鹿猎人 传奇(美) +SUOE41 = 嘻哈舞蹈生涯(美) SUPE01 = Wii欢乐聚会(美) SUPJ01 = Wii派对(日或中) SUPK01 = Wii欢乐聚会(韩) SUPP01 = Wii欢乐聚会(欧) -SUREA4 = 热舞革命2(美) -SURPA4 = 热舞革命 5(欧) +SUREA4 = 劲舞革命2(美) +SURPA4 = 劲舞革命 劲爆舞会5(欧) SUSFMR = 环球歌唱 女孩之夜(法) SUSPMR = 环球歌唱 女孩之夜(欧) SUTESZ = 很久很久以前(美) SUUE78 = 天才小画家 即时艺术家(美) SUUP78 = 天才小画家 即时艺术家(欧) SUVE52 = 坎贝拉危险狩猎2013(美) +SUVP52 = 坎贝拉危险狩猎2013(欧) SUWE78 = 天才小画家(美) SUWP78 = 天才小画家(欧) -SUXEA4 = 实况足球2010[WiFi](美) +SUXEA4 = 实况足球2010(美) SUXJA4 = 实况足球2010[WiFi](日) SUXPA4 = 实况足球2010[WiFi](欧) SUXXA4 = 实况足球2010[WiFi](X) SUXYA4 = 实况足球2010[WiFi](Y) SV2E78 = 大沙滩运动2(美) -SV2P78 = 大沙滩运动2[平衡板](欧) +SV2P78 = 大沙滩运动2(欧) SV3EG9 = 马达加斯加3(美) SV3PAF = 马达加斯加3(欧) SV4E8P = VR网球4(美) SV4P8P = VR网球 4[MP][WiFi](欧) SVBE52 = 战舰(美) +SVBP52 = 战舰(欧) +SVCEPZ = 狂欢舞会(美) +SVCPXT = 狂欢舞会(欧) +SVDE52 = 海绵宝宝 痞老板机器人复仇(美) SVDP52 = 海绵宝宝 痞老板机器人复仇 +SVHE69 = FIFA足球14(美) +SVHP69 = FIFA足球14(欧) +SVHX69 = FIFA足球14(X) SVME01 = 超级马里奥25周年纪念包(美) SVMJ01 = 超级马里奥25周年纪念包(日) SVMP01 = 超级马里奥25周年纪念包(欧) SVPESZ = 维加斯聚会(美) SVPPNJ = 维加斯聚会(欧) SVQEVZ = 芭比姐妹之狗狗救援队(美) +SVQPVZ = 芭比姐妹之狗狗救援队(欧) +SVSPZX = 战斗版国际象棋(欧) SVTEXS = 超级线程(美) SVVEG9 = 疯狂原始人:史前派对(美) SVVPAF = 古魯家族(歐) SVWEQH = 蔬菜世界(美) +SVXE52 = 小龙斯派罗 交换力量(美) SVYEG9 = 少年骇客 全面进化2(美) +SVYPAF = 少年骇客 全面进化2(欧) SVZEVZ = 驯龙高手2(美) +SVZPVZ = 驯龙高手2(欧) SW2E52 = 勇敢向前冲2(美) SW3EJJ = 冬季滑雪明星(美) SW3PKM = 冬季滑雪明星(欧) @@ -3206,11 +3267,11 @@ SW6P78 = 美国职业摔角联盟12(欧) SW7EVN = 西部英雄(美) SW7PNK = 西部英雄(欧) SW9EVN = 怪物大轰炸(美) -SW9PYT = 怪物大轰炸(美) +SW9PYT = 怪物大轰炸(欧) SWAE52 = DJ英雄(美) -SWAP52 = DJ英雄[WiFi](欧) +SWAP52 = DJ英雄(欧) SWBE52 = DJ英雄2(美) -SWBP52 = DJ英雄2[WiFi](欧) +SWBP52 = DJ英雄2(欧) SX2PNG = 丛林赛车(欧) SX3J01 = 潘朵拉之塔 直到你身边(日) SX3P01 = 潘朵拉之塔 直到你身边 (歐) @@ -3219,23 +3280,23 @@ SX4J01 = 异度之刃(日或中) SX4P01 = 异度之刃(欧) SX5E4Z = 圣诞老人进城啰(美) SX6JAF = 光之美少女 全明星全员集合一起舞蹈(日) -SX7E52 = 忍者神龟 +SX7E52 = 忍者神龟(美) SX8E52 = X战警 命运(美) SX8P52 = X战警 命运(美) SXAE52 = 吉他英雄 世界巡演(美) SXAP52 = 吉他英雄 世界巡演[WiFi](欧) -SXBE52 = 吉他英雄 金属乐队[(美) -SXBP52 = 吉他英雄 金属乐队专辑[WiFi](欧) +SXBE52 = 吉他英雄 金属乐队(美) +SXBP52 = 吉他英雄 金属乐队(欧) SXCE52 = 吉他英雄 流行精选(美) -SXCP52 = 吉他英雄 流行精选[WiFi](欧) +SXCP52 = 吉他英雄 流行精选(欧) SXDE52 = 吉他英雄 范海伦(美) -SXDP52 = 吉他英雄 范海伦[WiFi](欧) +SXDP52 = 吉他英雄 范海伦(欧) SXEE52 = 吉他英雄5(美) -SXEP52 = 吉他英雄5[WiFi](欧) +SXEP52 = 吉他英雄5(欧) SXFE52 = 乐团英雄(美) -SXFP52 = 乐团英雄[WiFi](欧) -SXIE52 = 吉他英雄6 摇滚战士(美) -SXIP52 = 吉他英雄6 摇滚战士[WiFi](欧) +SXFP52 = 乐团英雄(欧) +SXIE52 = 吉他英雄 摇滚战士(美) +SXIP52 = 吉他英雄 摇滚战士(欧) SZ2E5G = 尊巴南美拉丁舞 2(美) SZ2P5G = 尊巴南美拉丁舞 2(欧) SZ2XGT = 尊巴南美拉丁舞 2(欧) @@ -3377,18 +3438,22 @@ CTHP00 = 自制 唱吧 Summer Party v2.0(欧) CTIP00 = 自制 唱吧 Rocks! Part. I v2.0(欧) CTJP00 = 自制 唱吧 Rocks! Part. II v2.0(欧) CVLE38 = 自制 马里奥赛车 胜利赛道(美) -DLCE41 = 舞力全开2015合集 +DLCE41 = 舞力全开2015 合集 DMKE01 = 自制 马里奥赛车Wii 2(美) DMSP4Q = 自制 迪斯尼电影 想唱就唱(欧) -DQAJSC = 水瓶座棒球 (貓星漢化版) +DQAJSC = 水瓶座棒球(中) DRP22Q = 自制 唱吧 下载版(欧) DUCE01 = 自制 马里奥赛车Wii(美) DUDE01 = 自制 新史酷比马里奥兄弟(美) FC2E41 = 舞力全开 Focus2 FF4ENG = 自制 零月蚀之假面(美) +G2MK01 = 密特罗德究极2 黑暗回声(韩) GH2E41 = 舞力全开 GH2 +GM8K01 = 密特罗德究极(韩) GMSE02 = 超級馬里奧陽光多人遊戲 HBWE01 = 自制 超级马里奥兄弟Wii 地狱男爵版(美) +J4EE41 = 舞力全开2024 +J5EE41 = 舞力全开2025 KMKE01 = 马里奥赛车Wii 自制版 L40P4Q = 自制 唱吧 下载版(欧) MDUE01 = 自制 马里奥赛车 Track Grand Priix[WiFi](美) @@ -3413,9 +3478,9 @@ PUTA01 = 自制 吉他英雄3 摇滚精选(?) R01PET = 自制 唱吧 下载版(欧) R02PEA = 自制 唱吧 下载版(欧) R15POH = 自制 唱吧 Radio 105(欧) -R24E01 = 用Wii游玩小小机器人(日) +R24E01 = 用Wii游玩小小机器人(美) R4ZE01 = 自制 零月蚀之假面(美) -R4ZP01 = 自制 零月蚀之假面(美) +R4ZP01 = 自制 零月蚀之假面(欧) R8FJSC = 匠餐厅大繁盛! 简体中文版 R8PC01 = 超级纸片马里奥(中) RCCR78 = 自制 吉他英雄3 Coheed与Cambria(欧) @@ -3472,7 +3537,6 @@ RMCP06 = 自制 Wiimm的马里奥赛车趣味2010-12(欧) RMCP07 = 自制 Wiimm的马里奥赛车 复古版2011-02(欧) RMCP08 = 自制 Wiimm的马里奥赛车趣味2011-03(欧) RMCP09 = 自制 Wiimm的马里奥赛车趣味2011-06(欧) -RMCPCA = 马力欧卡丁车Wii(加泰兰语) RMCPYP = 耀西赛车度假村Plus(欧) RMGC01 = 自制 超级马里奥银河(简) RMGE52 = 自制 吉他英雄3 Megadeth(美) @@ -3483,6 +3547,7 @@ RMMP52 = 自制 吉他英雄3 Metal Mayhem(欧) RNVW01 = 超级马里奥银河(中) ROMESD = 自制 怪物猎人 G(美) RQQE52 = 自制 吉他英雄 皇后乐团(美) +RS4PXS = 式神之城3(欧) RSFC99 = 胧村正(ACG汉化简体中文版) RSJESD = 自制 吉他英雄 System Of A Down(美) RSYP06 = 自制 任天堂明星大乱斗X YF06修改版(欧) @@ -3517,6 +3582,7 @@ SDUEO1 = 自制 新超级玛利欧兄弟DU版(欧) SDUPO1 = DU超级马里奥兄弟 SE1E41 = 舞力全开 East SEHE41 = 舞力全开 Epic Hits +SEKE99 = 活祭之夜(美) SEOP4Q = 自制 唱吧 下载版(欧) SGI1CL = 自制 唱吧 下载版(欧) SGI1DB = 自制 唱吧 下载版(欧) @@ -3565,7 +3631,7 @@ SISRP4 = 自制 唱吧 下载版(欧) SISSOH = 自制 唱吧 下载版(欧) SISTDK = 自制 唱吧 土耳其聚会(欧) SJDJ02 = 舞力全开 Flamengo -SJEE41 = 舞力全开2014合集 +SJEE41 = 舞力全开2014 合集 SJME89 = 舞力全开 Japan SL1E41 = 舞力全开 Starlight SM3E01 = 超级马里奥兄弟3+ @@ -3574,10 +3640,11 @@ SMIG3Q = 自制 唱吧 下载版(欧) SMMP01 = 新超级马里奥兄弟Wii ANDY AFRO的自制系列卷4 SMNC01 = 自制 新超级马里奥兄弟Wii(中) SMNE02 = 自制 新超级马里奥兄弟Remake版(美) -SMNE03 = 更新的超级马里奥兄弟Wii +SMNE03 = 超级马里奥兄弟Wii 更新版(美) SMNE07 = 更加新的超级马里奥兄弟Wii 佳节特辑 SMNE09 = 自制 老超级马里奥兄弟Wii(美) SMNE23 = 更加新的超级马里奥兄弟Wii 落叶 +SMNED3 = 新新超级马里奥兄弟Wii SMNEXE = 加强的超级马里奥兄弟.WIi豪华版 SMNP77 = 自制 新超级马里奥兄弟 阿卡迪亚(欧) SMNPO1 = 自制 新超级马里奥兄弟Wii定制版(欧) @@ -3586,6 +3653,7 @@ SMPP01 = 新超级马里奥兄弟Wii2 另一个P SMRE01 = 自制 新超级马里奥兄弟Wii 超级马里奥兄弟1自制(美) SNBE66 = 新超级马里奥兄弟wii启示录 SOME02 = 大家的节奏天国(美) +SOMR01 = 大家的节奏天国(俄) SOUE41 = 舞力全开 Ocean SP9P4Q = 自制 唱吧 下载版(欧) SRBP4Q = 自制 唱吧 下载版(欧) @@ -3788,7 +3856,6 @@ NATE = 马里奥网球(美) NATP = 马里奥网球(欧) NAUE = 马里奥高尔夫(美) NAUP = 马里奥高尔夫(欧) -NAYM = Ogre Battle 64: Person of Lordly Caliber EA2P = 合金弹头2(欧) EA4P = 侍魂III(欧) EA5P = 饿狼传说3 最终胜利之路(欧) @@ -3819,16 +3886,18 @@ HAGA = 新闻频道(美) HAGE = 新闻频道(美) HAGJ = 新闻频道(日) HAGP = 新闻频道(欧) -HAPE = Check Mii Out频道(美) -HAPP = Check Mii Out频道(欧) +HAKC = 使用协议 +HAPE = Mii交流频道(美) +HAPP = Mii交流频道(欧) HAYA = 照片频道 HAYC = 照片频道 HBNJ = 电视之友频道 +HCCJ = 地址设置 HCDJ = 数码相机打印频道 HCHJ = 送餐频道 HCIJ = Wii 房间 HCLE = Netflix系统安装盘(美) -HCMP = 卡比电视频道(欧) +HCMP = 卡比电视频道 9XGX = SNES9x超任模拟器(美) D64A = 任天堂N64模拟器(欧) DCRA = 都市打靶(欧) diff --git a/Data/Sys/wiitdb-zh_TW.txt b/Data/Sys/wiitdb-zh_TW.txt index bd7c0935b8..a20a9234e9 100644 --- a/Data/Sys/wiitdb-zh_TW.txt +++ b/Data/Sys/wiitdb-zh_TW.txt @@ -1,4 +1,4 @@ -TITLES = https://www.gametdb.com (type: Wii language: ZHTW_unique version: 20230727194247) +TITLES = https://www.gametdb.com (type: Wii language: ZHTW_unique version: 20241114210228) 410E01 = Wii 備份光碟 v1.31(美) D2AJAF = 運動生活 探險家 試玩版(日) D2SE18 = 運動大集錦2 試玩版(美) @@ -32,8 +32,8 @@ DXSE18 = 運動大集錦 試玩版(美) DZDE01 = 薩爾達傳說 曙光公主 試玩版(美) DZDP01 = 薩爾達傳說 曙光公主 試玩版(歐) R22E01 = 超級粉碎球 PLUS[MP](美) -R22J01 = 超級粉碎球 PLUS[MP](日) -R22P01 = 超級粉碎球 PLUS[MP](歐) +R22J01 = 超級粉碎球(日) +R22P01 = 超級粉碎球(歐) R23E52 = 芭比公主三劍客(美) R23P52 = 芭比公主三劍客(歐) R24J01 = 用Wii遊玩小小機器人(日) @@ -52,7 +52,7 @@ R2AX7D = 冰原歷險記2(X) R2DEEB = 多卡波王國(美) R2DJEP = 多卡波王國for Wii(日) R2DPJW = 多卡波王國(歐) -R2EJ99 = 魚之眼 Wii(日) +R2EJ99 = 魚之眼Wii(日) R2FE5G = 小魚弗雷迪 丟失的海藻種盒(美) R2FP70 = 小魚弗雷迪 丟失的海藻種盒(歐) R2GEXJ = 廢墟迷宮 再見月的廢墟(美) @@ -63,8 +63,8 @@ R2IE69 = 勁爆美式足球10(美) R2IP69 = 勁爆美式足球10[WiFi](歐) R2JJAF = 太鼓達人Wii(日) R2KE54 = 唐金拳擊(美) -R2KP54 = 唐金拳擊[平衡板](歐) -R2LJMS = 草裙舞Wii[平衡板](日) +R2KP54 = 唐金拳擊(歐) +R2LJMS = 草裙舞Wii(日) R2ME20 = M&M's巧克力豆大冒險(美) R2NE69 = 雲斯頓卡丁車大賽(美) R2OE68 = 中世紀遊戲(美) @@ -86,16 +86,16 @@ R2UJ8P = 一起來拍打(日或中) R2UP8P = 一起來敲打(歐) R2VE01 = 罪與罰2(美) R2VJ01 = 罪與罰 宇宙的繼承者(日) -R2VP01 = 罪與罰2[WiFi](歐) +R2VP01 = 罪與罰 宇宙的繼承者(歐) R2WEA4 = 實況足球2009[WiFi](美) R2WJA4 = 實況足球 中場指揮官 2009(日) R2WPA4 = 實況足球2009[WiFi](歐) R2WXA4 = 實況足球2009[WiFi](X) R2YE54 = 我的生日(美) R2YP54 = 我的生日(歐) -R32J01 = 用Wii玩銀河戰士Prime2黑暗回音(日) -R33E69 = 搖滾樂團 樂曲擴展包2(美) -R33P69 = 搖滾樂團 樂曲擴展包2(歐) +R32J01 = 密特羅德究極2 黑暗回声(日) +R33E69 = 搖滾樂團 實況樂曲擴展包(美) +R33P69 = 搖滾樂團 實況樂曲擴展包(歐) R34E69 = 搖滾樂團 鄉村音樂包(美) R35JC8 = 三國志11 威力加強版(日) R36E69 = 搖滾樂團 年輕歲月(美) @@ -122,18 +122,18 @@ R3FJA4 = 實況力量棒球大聯盟3(日) R3GXUG = 兒童高爾夫(X) R3HP6Z = 特工雨果 熱帶假期(歐) R3HX6Z = 特工雨果 熱帶假期(X) -R3IJ01 = 用Wii玩銀河戰士(日或中) +R3IJ01 = 密特羅德究極(日或中) R3JE5G = 去玩吧 馬戲團明星(美) R3KP6N = 摩天大樓(歐) R3LEWR = 綠光戰警 獵人的崛起(美) R3LPWR = 綠光戰警 獵人的崛起(歐) -R3ME01 = 銀河戰士三部曲(美) -R3MP01 = 銀河戰士Prime 三部曲(歐) +R3ME01 = 密特羅德究極三部曲(美) +R3MP01 = 密特羅德究極三部曲(歐) R3NEXS = 罪惡裝備XX Accent Core 加強版(美) R3NPH3 = 罪惡裝備XX Accent Core 加強版(歐) -R3OE01 = 銀河戰士 另一個 M(美) -R3OJ01 = 銀河戰士:另一個 M(日) -R3OP01 = 銀河戰士 另一個 M(美) +R3OE01 = 密特羅德 另一個M(美) +R3OJ01 = 密特羅德 另一個 M(日或中) +R3OP01 = 密特羅德 另一個M(歐) R3PEWR = 極速賽車手(美) R3PJ52 = 極速賽車手(日) R3PPWR = 極速賽車手(歐) @@ -154,18 +154,19 @@ R3YP70 = 妙探闖通關2 超越時空(歐) R3ZE69 = 搖滾樂隊樂曲包 經典搖滾(美) R42E69 = 模擬人生2 生存遊戲(美) R42P69 = 模擬人生2 生存遊戲(歐) -R43E69 = EA SPORTS 活力健身房 更多鍛鍊[平衡板](美) -R43J13 = EA SPORTS 活力健身房 30天生活改善程序[平衡板](日) +R43E69 = EA運動活力(美) +R43J13 = EA運動活力(日) R43P69 = EA運動活力(歐) R44J8P = 涼宮春日的并列(日) R46ENS = 通靈戰士Wii(美) R46JKB = 通靈戰士Wii(日) R47E20 = ATV沙灘車之王(美) +R47P20 = ATV沙灘車之王(歐) R48E7D = 奇幻精靈事件簿(美) R48P7D = 奇幻精靈事件簿(歐) -R49E01 = 大金剛森林節拍(美) +R49E01 = 大金剛 叢林節拍(美) R49J01 = 大金剛 叢林節拍(日) -R49P01 = 大金剛森林節拍(歐) +R49P01 = 大金剛 叢林節拍(歐) R4AE69 = 模擬動物(美) R4AJ13 = 模擬動物(日) R4AP69 = 模擬動物(歐) @@ -177,12 +178,12 @@ R4CK69 = 模擬城市 建筑大師[WiFi](韓) R4CP69 = 模擬城市 建筑大師[WiFi](歐) R4DDUS = 三個問號 高校之迷(德) R4EE01 = 永恆深藍 海洋的呼喚(美) -R4EJ01 = FOREVER BLUE 海洋的呼喚(日) +R4EJ01 = 永恆蔚藍2 海洋的呼喚(日) R4EP01 = 永恆深藍2 海洋的呼喚(歐) R4FE20 = 故事時間 童話故事(美) R4FP7J = 經典童話故事時間(歐) R4IPNK = 瘋狂玩具車(歐) -R4LPUG = 田徑豬派對(X) +R4LPUG = 田徑豬派對(歐) R4LXUG = 田徑豬派對(X) R4MJ0Q = 使頭腦變靈活Wii(日) R4NE5G = 大小調的莊嚴進行曲(美) @@ -194,12 +195,13 @@ R4QE01 = 瑪利歐足球前鋒 Charged[WiFi](美) R4QJ01 = 瑪利歐足球前鋒 Charged(日) R4QK01 = 瑪利歐足球前鋒 Charged[WiFi](韓) R4QP01 = 瑪利歐足球前鋒 Charged(歐) -R4RE69 = FIFA足球10[WiFi](美) -R4RJ13 = FIFA足球10[WiFi](日) +R4RE69 = FIFA足球10(美) +R4RJ13 = FIFA足球10(日) R4RK69 = FIFA足球10(韓) -R4RP69 = FIFA足球10[WiFi](歐) -R4RX69 = FIFA足球10[WiFi](X) -R4RY69 = FIFA足球10[WiFi](Y) +R4RP69 = FIFA足球10(歐) +R4RR69 = FIFA足球10(俄) +R4RX69 = FIFA足球10(X) +R4RY69 = FIFA足球10(Y) R4RZ69 = FIFA足球10(Z) R4SE54 = 美國職棒大聯盟 超級明星隊(美) R4VEA4 = 故事繪本工坊(美) @@ -219,16 +221,16 @@ R58DMR = 你來唱[麥克風](德) R58FMR = 你來唱[麥克風](法) R58PMR = 你來唱[麥克風](歐) R58SMR = 你來唱[麥克風](西) -R59D4Q = 企鵝俱樂部 遊戲日[WiFi](歐) +R59D4Q = 企鵝俱樂部 遊戲日(歐) R59E4Q = 企鵝俱樂部 遊戲日(美) -R59P4Q = 企鵝俱樂部 遊戲日[WiFi](歐) +R59P4Q = 企鵝俱樂部 遊戲日(歐) R5AE8P = 黃金羅盤(美) R5AP8P = 黃金羅盤(歐) R5AX8P = 黃金羅盤(X) R5DE5G = 弗利普的翻轉世界(美) R5EPMR = 倒計時(歐) R5FE41 = 冠軍學院 足球(美) -R5FP41 = 冠軍學院 足球[MP][平衡板](歐) +R5FP41 = 冠軍學院 足球(歐) R5GE78 = 你比五年級生聰明嗎(美) R5IE4Q = 玩具瘋狂總動員(美) R5IP4Q = 玩具瘋狂總動員(歐) @@ -239,17 +241,17 @@ R5MJAF = 語言解謎 文字拼詞Wii豪華版(日) R5NJN9 = 多阿拉Wii(日) R5OENR = 田徑豬派對(美) R5OXUG = 農場派對 奧林匹格主演(X) -R5PE69 = 哈利波特 鳳凰會的密令(美) -R5PJ13 = 哈利波特 鳳凰會的密令(日) -R5PP69 = 哈利波特 鳳凰會的密令(歐) -R5PX69 = 哈利波特 鳳凰會的密令(X) +R5PE69 = 哈利·波特 鳳凰會的密令(美) +R5PJ13 = 哈利·波特 鳳凰會的密令(日) +R5PP69 = 哈利·波特 鳳凰會的密令(歐) +R5PX69 = 哈利·波特 鳳凰會的密令(X) R5QPGT = 馬戲團遊戲(歐) R5SERW = 幽靈莊園的秘密(美) -R5TE69 = 大滿貫網球[MP][WiFi](美) +R5TE69 = 大滿貫網球(美) R5TJ13 = 大滿貫網球(日) R5TP69 = 大滿貫網球(歐) R5UE41 = CSI犯罪現場 致命意圖(美) -R5UP41 = CSI犯罪現場 致命意圖(歐) +R5UP41 = 犯罪現場調查 致命意圖(歐) R5VE41 = 阿凡達(美) R5VP41 = 阿凡達(歐) R5VX41 = 阿凡達(X) @@ -259,7 +261,7 @@ R5XJ13 = 我的模擬人生 特工(日) R5XP69 = 我的模擬人生 特工(歐) R5YD78 = 全明星啦啦隊2(德) R5YE78 = 全明星啦啦隊2(美) -R5YP78 = 全明星啦啦隊2[平衡板](歐) +R5YP78 = 全明星啦啦隊2(歐) R62E4Q = 迪士尼想唱就唱 流行節奏(美) R62P4Q = 迪士尼想唱就唱 流行節奏(歐) R63EG9 = 家庭聚會 30個戶外遊戲(美) @@ -318,11 +320,11 @@ R6XP69 = 孩之寶 家庭遊戲之夜2(歐) R6YEXS = 橡皮球聚會(美) R6YPH3 = 橡皮球聚會(歐) R72E5G = 蛋糕工坊 混合(美) -R72P5G = 蛋糕工坊 混合[WiFi](歐) +R72P5G = 蛋糕工坊 混合(歐) R74E20 = 商場射擊館(美) R75E20 = 夢幻沙龍(美) -R76E54 = NBA 2010[WiFi](美) -R76P54 = NBA 2010[WiFi](歐) +R76E54 = NBA 2K10(美) +R76P54 = NBA 2K10(歐) R77JAF = SD鋼彈G世代:世紀戰役(日) R79JAF = 機動戰士鋼彈 MS戰線0079(日) R7AE69 = 模擬動物 非洲(美) @@ -335,14 +337,14 @@ R7EE8P = 飛天幽夢 流星夜物語(美) R7EJ8P = 飛天幽夢 流星夜物語[WiFi](日) R7EP8P = 飛天幽夢 流星夜物語[WiFi](歐) R7FEGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮(美) -R7FJGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮[WiFi](日) -R7FPGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮[WiFi](歐) +R7FJGD = 太空戰士陸行鳥 忘卻時間的迷宮(日) +R7FPGD = 陸行鳥之不可思議迷宮 忘卻時間的迷宮(歐) R7GEAF = 七龍珠 天下第一大冒險(美) R7GJAF = 龍珠 天下第一大冒險(日或中) R7GPAF = 七龍珠 天下第一大冒險(歐) R7HE6K = 救兵總動員(美) R7IE69 = 魅力女孩俱樂部 睡衣派對(美) -R7IP69 = 魅力女孩俱樂部 睡衣派對[平衡板](歐) +R7IP69 = 魅力女孩俱樂部 睡衣派對(歐) R7KE6K = 岩石爆破(美) R7LP7J = 瑪格的困惑!(歐) R7MPFR = 音樂派對 搖滾房間(歐) @@ -383,11 +385,11 @@ R86E20 = 夢幻舞蹈啦啦隊(美) R87EVN = 斯基度雪地車挑戰賽(美) R88J2L = 麵包超人 微笑派對(日) R89JEL = 東京友好樂園2(日) -R8AE01 = 神奇寶貝樂園 Wii 皮卡丘的大冒險(美) +R8AE01 = 寶可夢公園Wii 皮卡丘的大冒險(美) R8AJ01 = 寶可夢公園Wii 皮卡丘的大冒險(日或中) -R8AP01 = 神奇寶貝樂園 Wii 皮卡丘的大冒險(歐) +R8AP01 = 寶可夢公園Wii 皮卡丘的大冒險(歐) R8BE41 = 保姆派對(美) -R8BP41 = 保姆派對[平衡板](歐) +R8BP41 = 保姆派對(歐) R8DEA4 = 遊戲王5D's 世界冠軍大會(美) R8DJA4 = 遊戲王5D's 決鬥狂熱者(日或中) R8DPA4 = 遊戲王5D's 決鬥狂熱者(歐) @@ -395,15 +397,16 @@ R8EJQC = 異星尋奇(日) R8FES5 = 快餐危機(美) R8FJHA = 匠餐廳大繁盛(日) R8FPNP = 快餐危機(歐) -R8GJC8 = GI騎師聯盟2008(日) -R8GPC8 = GI騎師聯盟2008[平衡板][WiFi](歐) -R8HE4Q = 汉娜·蒙塔娜 電影版(美) -R8HP4Q = 孟漢娜 電影版(歐) -R8HX4Q = 孟漢娜 電影版(X) -R8HY4Q = 孟漢娜 電影版(Y) -R8IE78 = 海綿寶寶 誠實還是正直[MP](美) -R8IP78 = 海綿寶寶 誠實還是正直[MP](歐) -R8IS78 = 海綿寶寶 誠實還是正直[MP](歐) +R8GJC8 = GI騎師Wii 2008(日) +R8GPC8 = G1騎師Wii 2008(歐) +R8HE4Q = 漢娜·蒙塔娜 電影版(美) +R8HP4Q = 漢娜·蒙塔娜 電影版(歐) +R8HX4Q = 漢娜·蒙塔娜 電影版(X) +R8HY4Q = 漢娜·蒙塔娜 電影版(Y) +R8HZ4Q = 漢娜·蒙塔娜 電影版(Z) +R8IE78 = 海綿寶寶 誠實還是正直(美) +R8IP78 = 海綿寶寶 誠實還是正直(歐) +R8IS78 = 海綿寶寶 誠實還是正直(西) R8JEWR = 魔戒 亞拉崗之旅(美) R8JPWR = 魔戒 亞拉崗之旅(歐) R8KPKM = 街頭足球(歐) @@ -418,7 +421,7 @@ R8PJ01 = 超級紙片瑪利歐(日) R8PK01 = 超級紙片瑪利歐(韓) R8PP01 = 超級紙片瑪利歐(歐) R8QPRT = 瘋狂問答(歐) -R8RP41 = 亞瑟與他的迷你王國2[平衡板](歐) +R8RP41 = 亞瑟與他的迷你王國2(歐) R8SE41 = 假日體育(美) R8SP41 = 假日體育(歐) R8SX41 = 假日體育(X) @@ -430,7 +433,7 @@ R8XE52 = 侏羅紀 獵殺(美) R8XZ52 = 頂級射手 恐龍獵人(美) R8YE52 = 坎貝拉獵人2010(美) R8ZE8P = 黛茜福恩特斯普拉提(美) -R8ZPGT = 黛茜福恩特斯普拉提[平衡板]((歐) +R8ZPGT = 黛茜福恩特斯普拉提((歐) R92E01 = 皮克敏2 R92J01 = 以 Wii 遊玩 皮克敏星球探險2(日) R92P01 = 以 Wii 遊玩 皮克敏星球探險2(歐) @@ -469,7 +472,7 @@ R9OE69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](美) R9OK69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](韓) R9OP69 = 老虎伍茲高爾夫巡迴賽10[MP][WiFi](歐) R9QPNG = 舞會俱樂部精選(歐) -R9RPNG = 舞蹈派對 流行精選[跳舞墊](歐) +R9RPNG = 舞蹈派對 流行精選(歐) R9SPPL = 球形數獨 偵探(歐) R9TE69 = 老虎伍茲高爾夫巡迴賽09[WiFi](美) R9TJ13 = 老虎伍茲高爾夫巡迴賽09(日) @@ -496,11 +499,11 @@ RB6J18 = 轟炸超人(日) RB7E54 = 惡霸魯尼 獎學金版(美) RB7P54 = 惡霸魯尼 獎學金版(歐) RB8E70 = 后院棒球09(美) -RB9D78 = 貝姿娃娃電影版(德) -RB9E78 = 貝姿娃娃電影版(美) -RB9P78 = 貝姿娃娃電影版(歐) -RB9X78 = 貝姿娃娃電影版(歐) -RB9Y78 = 貝姿娃娃電影版(歐) +RB9D78 = 貝茲娃娃電影版(德) +RB9E78 = 貝茲娃娃電影版(美) +RB9P78 = 貝茲娃娃電影版(歐) +RB9X78 = 貝茲娃娃電影版(X) +RB9Y78 = 貝茲娃娃電影版(Y) RBAE41 = 熾焰天使 二戰英豪(美) RBAP41 = 熾焰天使 二戰英豪(歐) RBBE18 = 轟炸超人樂園 Wii(美) @@ -530,17 +533,17 @@ RBLP8P = BLEACH死神 白刃閃耀圓舞曲(歐) RBME5G = 泡泡龍(美) RBMPGT = 泡泡龍(歐) RBNEG9 = 少年駭客 地球保衛者(美) -RBNPG9 = Ben 10 地球保衛者(歐) -RBNXG9 = Ben 10 地球保衛者(X) +RBNPG9 = 少年駭客 地球保衛者(歐) +RBNXG9 = 少年駭客 地球保衛者(X) RBOE69 = 布吉搖擺(美) RBOP69 = 布吉搖擺(歐) RBPE4Z = 布朗斯維克 職業保齡球賽(美) RBPPGT = 布朗斯維克 職業保齡球賽(歐) RBQENR = 經典英式賽車(美) RBQPUG = 經典英式賽車(歐) -RBRE5G = 轟炸使命[WiFi](美) -RBRP5G = 轟炸使命[WiFi](歐) -RBRX5G = 轟炸作業 建造 融化 摧毀(歐) +RBRE5G = 轟炸使命(美) +RBRP5G = 轟炸使命(歐) +RBRX5G = 轟炸使命(X) RBSJ08 = 戰國 BASARA 2 英雄外傳A(日) RBTE8P = 釣魚高手(美) RBTJ8P = 釣魚高手(日) @@ -553,7 +556,7 @@ RBVE52 = 芭比之森林公主(美) RBVP52 = 芭比 森林公主(歐) RBWE01 = 突擊FC大戰2(美) RBWJ01 = 突擊 FC 大戰2[[WiFi](日) -RBWP01 = 突擊 FC 大戰2[WiFi](歐) +RBWP01 = 突擊FC大戰2(歐) RBXJ8P = BLEACH死神 對決十刃[WiFi](日) RBYE78 = 瘋狂農場(美) RBYJ78 = 瘋狂農場(日) @@ -605,7 +608,7 @@ RCHPGT = 我們的啦啦隊(歐) RCIE41 = 犯罪現場調查 鐵證如山(美) RCIP41 = 犯罪現場調查 鐵證如山(歐) RCJE8P = 暗渠(美) -RCJP8P = 暗渠[WiFi](歐) +RCJP8P = 暗渠(歐) RCKPGN = 阿倫·漢森的運動挑戰(歐) RCLE4Q = 四眼天雞之動作天王(美) RCLP4Q = 四眼天雞之動作天王(歐) @@ -615,8 +618,8 @@ RCOPNP = 名偵探柯南 追憶的幻想(歐) RCPE18 = 轉轉球迷宮(美) RCPJ18 = 轉轉球迷宮(日) RCPP18 = 轉轉球迷宮(歐) -RCQEDA = 可愛賽車 Wii(美) -RCQJDA = 可愛賽車 Wii(日) +RCQEDA = 可愛賽車Wii(美) +RCQJDA = 可愛賽車Wii(日) RCRE5D = 特級飛車(美) RCRP5D = 特級飛車(歐) RCSE20 = 射雞英雄傳(美) @@ -627,17 +630,17 @@ RCUE52 = 坎貝拉傳奇冒險(美) RCVE41 = 孤島驚魂 復仇(美) RCVP41 = 孤島驚魂 復仇(歐) RCXE78 = 全明星拉拉隊(美) -RCXP78 = 全明星拉拉隊[平衡板](歐) -RCXX78 = 全明星拉拉隊[平衡板](歐) +RCXP78 = 全明星拉拉隊(歐) +RCXX78 = 全明星拉拉隊(X) RCYPGN = 切格的聚會迷題(歐) -RD2E41 = 赤色鋼鐵2(美) -RD2J41 = 赤色鋼鐵2(日) -RD2K41 = 赤色鋼鐵2(韓) -RD2P41 = 赤色鋼鐵 2(歐) -RD2X41 = 赤色鋼鐵 2(X) +RD2E41 = 赤鐵2(美) +RD2J41 = 赤鐵2(日) +RD2K41 = 赤鐵2(韓) +RD2P41 = 赤鐵2(歐) +RD2X41 = 赤鐵2(X) RD4EA4 = 熱舞革命 勁爆舞會2(美) RD4JA4 = 熱舞革命 盛況空前的勁爆舞會(日或中) -RD4PA4 = 熱舞革命 勁爆舞會2[跳舞墊](歐) +RD4PA4 = 勁舞革命 勁爆舞會2(歐) RD6EE9 = 動物王國 野生動物探索(美) RD6J8N = 動物奇想天外!在謎之樂園攝影(日) RD6PNP = 動物奇想天外!在謎之樂園攝影(歐) @@ -649,14 +652,14 @@ RDBJAF = 七龍珠 Z Sparking! NEO(日) RDBPAF = 七龍珠Z 電光火石2(歐) RDCE78 = 致命生物(美) RDCP78 = 致命生物(歐) -RDDEA4 = 熱舞革命 勁爆舞會(美) -RDDJA4 = 熱舞革命 勁爆舞會(日) +RDDEA4 = 勁舞革命 勁爆舞會(美) +RDDJA4 = 勁舞革命 勁爆舞會(日) RDEJ0A = 全日本貨柜車祭典(日) RDFE41 = 夏恩懷特滑雪板[平衡板](美) RDFP41 = 夏恩懷特滑雪板[平衡板](歐) RDGEA4 = 惡魔城 審判(美) -RDGJA4 = 惡魔城:審判(日) -RDGPA4 = 惡魔城 審判[WiFi](歐) +RDGJA4 = 惡魔城 審判(日) +RDGPA4 = 惡魔城 審判(歐) RDHE78 = 毀滅全人類 解放威廉(美) RDHP78 = 毀滅全人類 解放威廉(歐) RDIE41 = 寵物狗樂園(美) @@ -687,8 +690,8 @@ RDREA4 = 水精迪依大冒險(美) RDRJA4 = 水精迪依大冒險(日) RDRPA4 = 水精迪依大冒險(歐) RDSE70 = 七龍珠Z 電光火石3[WiFi](美) -RDSJAF = 七龍珠 Z Sparking! METEOR[WiFi](日) -RDSPAF = 七龍珠Z 電光火石3[WiFi](歐) +RDSJAF = 七龍珠Z 電光火石3(日) +RDSPAF = 七龍珠Z 電光火石3(歐) RDTEAF = 電子雞閃亮大總統(美) RDTJAF = 電子雞閃亮大總統(日) RDTPAF = 電子雞閃亮大總統(歐) @@ -706,7 +709,7 @@ RDYEGN = 人偶CID(美) RDZJ01 = 大災難 危機之日(日) RDZP01 = 大災難 危機之日(歐) RE3ENR = 空戰高手 二戰英雄(美) -RE4E08 = 惡靈古堡 復刻版(美) +RE4E08 = 惡靈古堡(美) RE4J08 = 惡靈古堡(日或中) RE4P08 = 惡靈古堡(歐) RE5PAF = 貪吃精靈(歐) @@ -719,29 +722,29 @@ REAP69 = 名人體育(歐) REBE4Z = 豆豆先生的古怪世界(美) REBPMT = 憨豆先生的古怪世界(歐) RECE6K = 間諜遊戲 電梯任務(美) -REDE41 = 赤色鋼鐵(美) -REDJ41 = 赤色鋼鐵(日) -REDP41 = 赤色鋼鐵(歐) +REDE41 = 赤鐵(美) +REDJ41 = 赤鐵(日) +REDP41 = 赤鐵(歐) REFP41 = 我的法語教練(歐) REGE36 = 緊急出動(美) REGP36 = 緊急出動(歐) REHE41 = 緊急英雄(美) REHP41 = 緊急英雄(歐) REJEAF = 家庭訓練機 極限挑戰(美) -REJJAF = 家庭訓練機2[跳舞墊](日) -REJPAF = 家庭訓練機 極限挑戰[跳舞墊](歐) +REJJAF = 家庭教練2(日) +REJPAF = 家庭教練 極限挑戰(歐) REKE41 = 金吉姆健身房 卡迪歐塑身(美) REKJ2N = 有氧拳擊 Wii快樂瘦身(日或中) REKP41 = 金牌吉姆卡迪歐塑身[平衡板](歐) -REKU41 = 我的健康教練 金牌吉姆卡迪歐塑身[平衡板](英) +REKU41 = 金吉姆健身房 卡迪歐塑身(U) RELEA4 = 能源小精靈(美) RELJA4 = 能源小精靈(日) RELKA4 = 能源小精靈(韓) RELPA4 = 能源小精靈(歐) REMJ8P = 哆啦A夢Wii 秘密道具王決定戰!(日) RENE8P = 音速小子與黑暗騎士(美) -RENJ8P = 音速小子與黑暗騎士[WiFi](日) -RENP8P = 音速小子與黑暗騎士[WiFi](歐) +RENJ8P = 音速小子與黑暗騎士(日或中) +RENP8P = 音速小子與黑暗騎士(歐) REQE54 = 迪亞哥 徒步旅行救難隊(美) REQP54 = 迪亞哥 徒步旅行救難隊(歐) REQX54 = 迪亞哥 徒步旅行救難隊(歐) @@ -768,32 +771,33 @@ RF4E36 = 超級水果瀑布(美) RF4P6M = 超級水果瀑布(歐) RF7J08 = 龍之子 VS. CAPCOM 英雄交鋒世代(日) RF8E69 = FIFA足球08(美) -RF8J13 = FIFA足球08[WiFi](日) -RF8K69 = FIFA足球08[WiFi](韓) -RF8P69 = FIFA足球08[WiFi](歐) -RF8X69 = FIFA足球08[WiFi](X) -RF8Y69 = FIFA足球08[WiFi](Y) +RF8J13 = FIFA足球08(日) +RF8K69 = FIFA足球08(韓) +RF8P69 = FIFA足球08(歐) +RF8X69 = FIFA足球08(X) +RF8Y69 = FIFA足球08(Y) RF9E69 = FIFA足球09(美) -RF9J13 = FIFA足球09[WiFi](日) -RF9K69 = FIFA足球09[WiFi](韓) -RF9P69 = FIFA足球09[WiFi](歐) -RF9X69 = FIFA足球09[WiFi](X) -RF9Y69 = FIFA足球09[WiFi](Y) +RF9J13 = FIFA足球09(日) +RF9K69 = FIFA足球09(韓) +RF9P69 = FIFA足球09(歐) +RF9R69 = FIFA足球09(俄) +RF9X69 = FIFA足球09(X) +RF9Y69 = FIFA足球09(Y) RFAEAF = 活力生活 戶外挑戰(美) -RFAJAF = 家庭訓練機(日) -RFAPAF = 家庭教練[跳舞墊](歐) +RFAJAF = 家庭教練(日) +RFAPAF = 家庭教練(歐) RFBE01 = 永恒蔚藍(美) -RFBJ01 = 永恒蔚藍[WiFi](日) -RFBP01 = 永恒蔚藍[WiFi](歐) +RFBJ01 = 永恒蔚藍(日) +RFBP01 = 永恒蔚藍(歐) RFCEGD = 太空戰士 水晶編年史 水晶持有者(美) RFCJGD = 太空戰士 水晶編年史 水晶持有者(日) RFCPGD = 太空戰士 水晶編年史 水晶持有者(歐) RFEE01 = 聖火降魔錄 曉之女神(美) RFEJ01 = 聖火降魔錄 曉之女神(日) RFEP01 = 聖火降魔錄 曉之女神(歐) -RFFEGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](美) -RFFJGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](日) -RFFPGD = 太空戰士 水晶編年史 時間的共鳴[WiFi](歐) +RFFEGD = 太空戰士水晶編年史 時間的共鳴(美) +RFFJGD = 太空戰士水晶編年史 時間的共鳴(日) +RFFPGD = 太空戰士水晶編年史 時間的共鳴(歐) RFJJAF = 家庭賽馬(日) RFKE41 = 我的健身教練(美) RFKP41 = 我的健康教練(歐) @@ -831,13 +835,13 @@ RFWE5Z = 野外探險 非洲(美) RFWPNK = 非洲徒步大冒險(歐) RFYFMR = 博涯堡壘 開戰(法) RFZE41 = 想象 時尚聚會(美) -RFZP41 = 想象 時尚偶像[平衡板](歐) +RFZP41 = 想象 時尚偶像(歐) RG2EXS = 罪惡裝備XX(美) RG2JJF = 聖騎士之戰XX ΛCore(日) RG2PGT = 罪惡裝備XX(歐) RG4JC0 = 電車向前走!新幹線EX 山陽新幹線(日) RG5EWR = 吉尼斯世界紀錄 電視遊戲(美) -RG5PWR = 吉尼斯世界紀錄 電視遊戲[WiFi](歐) +RG5PWR = 吉尼斯世界紀錄 電視遊戲(歐) RG6E69 = 搖滾樂超級明星(美) RG6P69 = 搖滾樂超級明星(歐) RG7EQH = 城市建設者(美) @@ -847,7 +851,7 @@ RG9E54 = 嘉年華遊戲 迷你高爾夫(美) RG9P54 = 嘉年華遊戲 迷你高爾夫(歐) RGAE8P = 51號星球(美) RGAP8P = 51號星球(歐) -RGBE08 = 哈維博德曼 律師(美) +RGBE08 = 哈維·博德曼 律師(美) RGCEXS = 遙控直升機Wii 飛行大冒險(美) RGCJJF = 遙控直升機Wii 飛行大冒險(日) RGCPGT = 遙控直升機Wii 飛行大冒險(歐) @@ -861,15 +865,15 @@ RGFS69 = 教父 黑手黨(西) RGGJAF = GeGeGe的鬼太郎 妖怪大運動會(日) RGHE52 = 吉他英雄3 搖滾傳奇(美) RGHJ52 = 吉他英雄3 搖滾傳奇[WiFi](日) -RGHK52 = 吉他英雄3 搖滾傳奇[WiFi](韓) -RGHP52 = 吉他英雄3 搖滾傳奇[WiFi](歐) -RGIJC8 = G1騎師Wii(日) +RGHK52 = 吉他英雄3 搖滾傳奇(韓) +RGHP52 = 吉他英雄3 搖滾傳奇(歐) +RGIJC8 = GI騎師Wii(日) RGIPC8 = G1騎師Wii(歐) RGJE4Z = 森林泰山 探秘(美) RGJP7U = 森林泰山 探秘(歐) RGKENR = 兒童高爾夫(美) RGLE7D = 幾何戰爭 銀河(美) -RGLP7D = 幾何戰爭 銀河[WiFi](歐) +RGLP7D = 幾何戰爭 銀河(歐) RGME5D = 企鵝也瘋狂(美) RGMP5D = 企鵝也瘋狂(歐) RGNJAF = 銀魂(日) @@ -877,15 +881,15 @@ RGOJJ9 = 金蛋世界(日) RGPJAF = 機動戰士高達2 哀.戰士篇(日) RGQE70 = 魔鬼剋星(美) RGQP70 = 魔鬼剋星(歐) -RGSE8P = 幽靈小隊[WiFi](美) +RGSE8P = 幽靈小隊(美) RGSJ8P = 幽靈小隊(日或中) -RGSP8P = 幽靈小隊[WiFi](歐) +RGSP8P = 幽靈小隊(歐) RGTE41 = GT職業賽車(美) RGTJBL = GT職業賽車(日) RGTP41 = GT職業賽車(歐) RGVE52 = 吉他英雄 空中鐵匠樂隊(美) -RGVJ52 = 吉他英雄 空中鐵匠樂隊專輯[WiFi](日) -RGVP52 = 吉他英雄 空中鐵匠樂隊專輯[WiFi](歐) +RGVJ52 = 吉他英雄 空中鐵匠樂隊(日) +RGVP52 = 吉他英雄 空中鐵匠樂隊(歐) RGWE41 = 瘋狂兔子歸鄉記[WiFi](美) RGWJ41 = 瘋狂兔子 歸鄉記[WiFi](日) RGWP41 = 瘋狂兔子 歸鄉記[WiFi](歐) @@ -904,9 +908,9 @@ RH3P4Q = 歌舞青春3 畢業舞會(歐) RH4XUG = 倉鼠英雄(X) RH5EVN = 小馬人生歷險記(美) RH5PKM = 愛倫懷塔克的小馬生活(歐) -RH6E69 = 哈利波特 混血王子的背叛(美) -RH6K69 = 哈利波特 混血王子的背叛(韓) -RH6P69 = 哈利波特 混血王子的背叛(歐) +RH6E69 = 哈利·波特與混血王子(美) +RH6K69 = 哈利·波特與混血王子(韓) +RH6P69 = 哈利·波特與混血王子(歐) RH7J8P = Sammy合集 北斗神拳[WiFi](日) RH8E4F = 古墓奇兵 地城奪寶(美) RH8JEL = 古墓奇兵 地城奪寶(日) @@ -946,10 +950,10 @@ RHOE8P = 死亡之屋 過度殺戮(美) RHOJ8P = 死亡之屋 過度殺戮(日) RHOP8P = 死亡之屋 過度殺戮(歐) RHPJ8N = 現子麻將~作弊流浪記~(日) -RHQE4Q = 汉娜·蒙塔娜 萬眾矚目全球巡演歌唱大賽(美) -RHQP4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(歐) -RHQX4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(歐) -RHQY4Q = 孟漢娜萬眾矚目全球巡演歌唱大賽(Y) +RHQE4Q = 漢娜·蒙塔娜 萬眾矚目全球巡演歌唱大賽(美) +RHQP4Q = 漢娜·蒙塔娜 萬眾矚目全球巡演歌唱大賽(歐) +RHQX4Q = 汉娜·蒙塔娜 萬眾矚目全球巡演歌唱大賽(X) +RHQY4Q = 漢娜·蒙塔娜 萬眾矚目全球巡演歌唱大賽(Y) RHRJ99 = 家庭教師REBORN 超夢幻決勝(日或中) RHSE36 = 熱導追蹤(美) RHSP36 = 熱導追蹤(歐) @@ -978,10 +982,10 @@ RI7E4Z = 怪物大破壞 製作和戰鬥(美) RI8E41 = 戰火兄弟連 進軍30高地(美) RI8P41 = 戰火兄弟連 進軍30高地(歐) RI9EGT = 女孩冰上公主(美) -RI9PGT = 女孩冰上公主[平衡板](歐) -RIAE52 = 冰河世紀3 恐龍的黎明(美) -RIAI52 = 冰河世紀3 恐龍的黎明(意) -RIAP52 = 冰河世紀3 恐龍的黎明(歐) +RI9PGT = 女孩冰上公主(歐) +RIAE52 = 冰原歷險記3(美) +RIAI52 = 冰原歷險記3(意) +RIAP52 = 冰原歷險記3(歐) RIBES5 = 異想天開(美) RIBPKM = 異想天開(歐) RICENR = 美國鐵人料理 頂級烹飪法(美) @@ -1011,7 +1015,7 @@ RIPJAF = 航海王 無盡的冒險(日) RIQPUJ = 冰上炫舞(歐) RIRE8P = 鋼鐵人(美) RIRP8P = 鋼鐵人(歐) -RITFMR = 城市之間[平衡板](法) +RITFMR = 城市之間(法) RIUJAF = 航海王 無限巡航 第二章 覺醒的勇者(日) RIUPAF = 航海王 無限巡航 第二章 覺醒的勇者(歐) RIVEXJ = 奇異鳥伊維(美) @@ -1023,9 +1027,9 @@ RIXP7J = 道奇賽車 掌控者與挑戰者(歐) RIYE52 = 太空營地(美) RIYP52 = 太空營地(歐) RIZENR = 印第500賽車(美) -RJ2E52 = 詹姆士龐德007 量子危機(美) -RJ2JGD = 詹姆士龐德 007 量子危機[WiFi](日) -RJ2P52 = 詹姆士龐德 007 量子危機[WiFi](歐) +RJ2E52 = 007 量子危機(美) +RJ2JGD = 007 量子危機(日) +RJ2P52 = 007 量子危機(歐) RJ3E20 = 吉普越野賽車(美) RJ3P7J = 吉普越野賽車(歐) RJ4ENR = 珠寶大師 羅馬發源地(美) @@ -1038,10 +1042,10 @@ RJ8P64 = 印第安納瓊斯與帝王手杖(歐) RJ9FMR = 思考 邏輯訓練(法) RJ9PFR = 思考邏輯訓練器(歐) RJ9XML = 思考 邏輯訓練(X) -RJAD52 = 決勝時刻4 現代戰爭[WiFi](德) +RJAD52 = 決勝時刻 現代戰爭(德) RJAE52 = 決勝時刻 現代戰爭(美) -RJAP52 = 決勝時刻4 現代戰爭[WiFi](歐) -RJAX52 = 決勝時刻4 現代戰爭[WiFi](X) +RJAP52 = 決勝時刻 現代戰爭(歐) +RJAX52 = 決勝時刻 現代戰爭(X) RJBJAF = 大怪獸對決 超人力霸王競技場(日) RJCE52 = Baja 1000越野拉力賽(美) RJCP52 = Baja 1000越野拉力賽(歐) @@ -1065,9 +1069,9 @@ RJOP99 = 恐怖體感 咒怨(歐) RJPJA4 = 實況棒球Wii(日) RJQE5G = 睡衣山姆 別怕黑(美) RJQP70 = 睡衣山姆 別怕黑(歐) -RJREA4 = 熱舞革命 勁爆舞會3(美) -RJRJA4 = 熱舞革命 勁爆舞會3(日) -RJRPA4 = 熱舞革命 勁爆舞會 3[跳舞墊]]平衡板](歐) +RJREA4 = 勁舞革命 勁爆舞會3(美) +RJRJA4 = 勁舞革命 音樂塑身(日) +RJRPA4 = 勁舞革命 勁爆舞會3(歐) RJSENR = 川崎水上摩托車(美) RJSPUG = 川崎水上摩托車(歐) RJSXUG = 川崎水上摩托車(X) @@ -1079,7 +1083,7 @@ RJXE5G = 去玩吧 伐木工(美) RJYE5Z = 費茲維澤醫生的動物大拯救(美) RJZP7U = SNK街機經典Vol1(歐) RK2EEB = 超執刀 新血[WiFi](美) -RK2JEB = 超執刀 新血[WiFi](日) +RK2JEB = 超執刀 新血(日) RK2P01 = 超執刀 新血[WiFi](歐) RK3J01 = 安藤檢索(日) RK4JAF = 結界師 黑芒樓之影(日) @@ -1125,8 +1129,8 @@ RKPE52 = 功夫熊貓(美) RKPJ52 = 功夫熊貓(日) RKPK52 = 功夫熊貓(韓) RKPP52 = 功夫熊貓(歐) -RKPV52 = 功夫熊貓(歐) -RKPX52 = 功夫熊貓(Y) +RKPV52 = 功夫熊貓(V) +RKPX52 = 功夫熊貓(X) RKPY52 = 功夫熊貓(Y) RKQENR = 糖果工廠(美) RKSENR = 兒童籃球(美) @@ -1144,13 +1148,14 @@ RKZEA4 = 迷失蔚藍Wii(美) RKZJA4 = 倖存少年Wii(日或中) RKZPA4 = 迷失蔚藍Wii(歐) RL2E78 = 我的馴馬場(美) +RL2HMN = 我的馴馬場(荷) RL2PFR = 我的馴馬場(歐) RL3EMJ = 金字塔祖瑪 3(美) RL4E64 = 樂高印地安納瓊斯大冒險2 冒險再續(美) RL4P64 = 樂高印地安納瓊斯大冒險2 冒險再續(歐) RL5E52 = 愛卡莉(美) RL5P52 = 愛卡莉(歐) -RL6E69 = 玩具槍大戰2 精英(美) +RL6E69 = 玩具槍大作戰 精英(美) RL7E69 = 小小寵物店 朋友(美) RL7P69 = 小小寵物店 朋友(歐) RL8E54 = 實況野球大聯盟2008(美) @@ -1196,6 +1201,7 @@ RLTENR = 倫敦計程車 尖峰時刻(美) RLTXUG = 倫敦計程車 尖峰時刻(X) RLUE4Q = 雷霆戰狗Bolt(美) RLUP4Q = 雷霆戰狗Bolt(歐) +RLUR4Q = 閃電狗(俄) RLUX4Q = 雷霆戰狗Bolt(X) RLUY4Q = 雷霆戰狗Bolt(Y) RLVE78 = 降世神通 最後的氣宗(美) @@ -1218,9 +1224,9 @@ RM2J13 = 榮譽勳章 鐵膽英豪2(日) RM2P69 = 榮譽勛章 英雄2[WiFi](歐) RM2U69 = 榮譽勛章 英雄2[WiFi](英) RM2X69 = 榮譽勛章 英雄2[WiFi](X) -RM3E01 = 銀河戰士3 墮落(美) -RM3J01 = 銀河戰士3 墮落(日) -RM3P01 = 銀河戰士3 墮落(歐) +RM3E01 = 密特羅德究極3 墮落(美) +RM3J01 = 密特羅德究極3 墮落(日) +RM3P01 = 密特羅德究極3 墮落(歐) RM4E41 = 怪物四驅 世界巡迴賽(美) RM4J41 = 怪獸卡車4×4 世界巡迴賽(日) RM4P41 = 怪物四驅 世界巡迴賽(歐) @@ -1273,8 +1279,8 @@ RMMP7U = 水銀融化 革命(歐) RMNDFR = 我的寵物旅店(德) RMNHMN = 我的寵物旅店(荷) RMNPFR = 我的寵物旅店(歐) -RMOE52 = 怪獸大卡車(美) -RMOP52 = 怪獸大卡車(歐) +RMOE52 = 怪物卡車(美) +RMOP52 = 怪物卡車(歐) RMPE54 = 實況野球大聯盟(美) RMQENR = 神話創造者 命運水晶(美) RMQPUG = 神話創造者 命運水晶(歐) @@ -1282,7 +1288,7 @@ RMRE5Z = 小魔怪魔法馬戲團(美) RMRPNK = 小魔怪魔法馬戲團(歐) RMRXNK = 小魔怪魔法馬戲團(X) RMSE52 = 漫威終極聯盟2(美) -RMSP52 = 漫畫英雄 終極聯盟 2([WiFi]歐) +RMSP52 = 漫威終極聯盟2(歐) RMTJ18 = 桃太郎電鐵16北海道大移動[WiFi](日) RMUE52 = 漫威終極聯盟(美) RMUJ2K = 漫畫英雄 終極聯盟(日) @@ -1292,11 +1298,11 @@ RMVP69 = 榮譽勛章 先遣部隊(歐) RMVX69 = 榮譽勛章 先遣部隊(X) RMWE20 = M&M's巧克力豆卡丁賽車(美) RMXE78 = 極限越野 突破[(美) -RMXF78 = 極限越野 突破[WiFi](法) +RMXF78 = 極限越野 突破(法) RMXP78 = 極限越野 突破(歐) RMYE5Z = 超級卡丁車GP(美) RMYPUG = 超級卡丁車GP(歐) -RMYXUG = 超級卡丁車GP(歐) +RMYXUG = 超級卡丁車GP(X) RMZE5Z = 神話制造者 崔克茜在玩具島(美) RMZPUG = 神話制造者 崔克茜在玩具島(歐) RN2EAF = 拿姆科遊戲博物館經典合集(美) @@ -1318,9 +1324,9 @@ RN9E4F = 巨蟲魔島(美) RN9JEL = 巨蟲魔島(日) RN9P4F = 巨蟲魔島(歐) RNAE69 = 美國大學橄欖球2009(美) -RNBE69 = 美國職業籃球2008[WiFi](美) -RNBP69 = 美國職業籃球2008[WiFi](歐) -RNBX69 = 美國職業籃球2008[WiFi](X) +RNBE69 = NBA 2008(美) +RNBP69 = NBA 2008(歐) +RNBX69 = NBA 2008(X) RNCEH4 = SNK街機經典Vol1(美) RNDJAF = 交響情人夢 夢之☆管弦樂(日) RNEEDA = 火影忍者疾風傳 激鬪忍者大戰3(美) @@ -1336,7 +1342,7 @@ RNHP99 = 英雄不再(歐) RNIPGT = 心靈、身體、靈魂 的營養健康[平衡板](歐) RNJE4F = 迷你忍者(美) RNJP4F = 迷你忍者(歐) -RNKE69 = 玩具槍大戰(美) +RNKE69 = 玩具槍大作戰(美) RNKP69 = 玩具槍大戰(歐) RNLE54 = 勁爆冰上曲棍球2009[WiFi](美) RNLP54 = 勁爆冰上曲棍球2009[WiFi](歐) @@ -1357,9 +1363,9 @@ RNPK69 = 極速快感 職業街頭(韓) RNPP69 = 極速快感 職業街頭(歐) RNPX69 = 極速快感 職業街頭(X) RNPY69 = 極速快感 職業街頭(Y) -RNRE41 = 爆衝機車[WiFi](美) +RNRE41 = 爆衝機車(美) RNRJ41 = 爆衝機車[WiFi](日) -RNRP41 = 爆衝機車[WiFi](歐) +RNRP41 = 爆衝機車(歐) RNSD69 = 極速快感 玩命山道(德) RNSE69 = 極速快感 玩命山道(美) RNSF69 = 極速快感 玩命山道(法) @@ -1417,8 +1423,8 @@ ROHJAF = 快樂組舞(日) ROJE52 = 拉帕拉 大眾釣魚(美) ROJP52 = 惠寶來 大家來釣魚(歐) ROKJ18 = 卡拉OK 歡樂之聲Wii(日) -ROLE8P = 瑪利歐與音速小子在溫哥華冬奧會[WiFi][平衡板](美) -ROLJ01 = 瑪利歐與音速小子在溫哥華冬季奧運(日) +ROLE8P = 瑪利歐與音速小子在溫哥華冬奧(美) +ROLJ01 = 瑪利歐與音速小子在溫哥華冬奧(日) ROLK01 = 瑪利歐與音速小子在溫哥華冬奧會[WiFi][平衡板](韓) ROLP8P = 瑪利歐與音速小子在溫哥華冬奧(歐) ROMJ08 = 魔物獵人G[WiFi](日) @@ -1448,7 +1454,7 @@ RP2E69 = 冷知識遊戲(美) RP2P69 = 冷知識遊戲(歐) RP3JAF = 高爾夫球選手猿(日) RP4E69 = 我的模擬聚會(美) -RP4J13 = 我的模擬聚會[WiFi](日) +RP4J13 = 我的模擬聚會(日) RP4P69 = 我的模擬聚會[WiFi](歐) RP5JA4 = 實況強力職棒15(日) RP6E41 = 寵物 瘋狂的猴子(美) @@ -1459,9 +1465,9 @@ RP9ERS = 太空黑猩猩(美) RP9PRS = 太空黑猩猩(歐) RP9XRS = 太空黑猩猩(X) RPAF70 = 船槳男孩 迷失(法) -RPBE01 = 神奇寶貝 戰鬥革命(美) -RPBJ01 = 神奇寶貝 戰鬥革命[WiFi](日) -RPBP01 = 神奇寶貝 戰鬥革命[WiFi](歐) +RPBE01 = 寶可夢 戰鬥革命(美) +RPBJ01 = 寶可夢 戰鬥革命(日) +RPBP01 = 寶可夢 戰鬥革命(歐) RPCE20 = 難題收藏(美) RPCP41 = 難題收藏(歐) RPCX7J = 難題收藏(X) @@ -1473,8 +1479,8 @@ RPFU52 = 森林尋寶 大冒險(英) RPGE5D = 怪獸大破壞(美) RPGP5D = 怪獸大破壞(歐) RPHPPN = 粉紅豬小妹 遊戲(歐) -RPIE52 = MTV 幫你改裝車(美) -RPIP52 = MTV 幫你改裝車(歐) +RPIE52 = MTV幫你改裝車(美) +RPIP52 = MTV幫你改裝車(歐) RPJE7U = 弧光幻想曲(美) RPJJ99 = 弧光幻想曲(日) RPKE52 = 世界撲克冠軍聯賽2007(美) @@ -1521,17 +1527,17 @@ RQ6XKM = 妖山詛咒(X) RQ7E20 = 火星人的恐慌(美) RQ8E08 = 世界摩托車錦標賽 08(美) RQ8P08 = 世界摩托車錦標賽 08(歐) -RQ9E69 = 美國職業籃球2009[WiFi](美) -RQ9F69 = 美國職業籃球2009[WiFi](法) -RQ9P69 = 美國職業籃球2009[WiFi](歐) -RQ9S69 = 美國職業籃球2009[WiFi](西) -RQBENR = 川崎4X4沙灘車(美) -RQBPUG = 川崎4X4沙灘車(歐) -RQBXUG = 川崎4X4沙灘車(X) +RQ9E69 = NBA 2009(美) +RQ9F69 = NBA 2009(法) +RQ9P69 = NBA 2009(歐) +RQ9S69 = NBA 2009(西) +RQBENR = 川崎沙灘車(美) +RQBPUG = 川崎沙灘車(歐) +RQBXUG = 川崎沙灘車(X) RQCEAF = 貪吃精靈(美) RQCJAF = 貪吃精靈(日) RQEE6U = 阿加莎·克里斯蒂 艷陽下的謀殺案(美) -RQEP6V = 阿加莎克里斯蒂 艷陽下的謀殺案(歐) +RQEP6V = 阿加莎·克里斯蒂 艷陽下的謀殺案(歐) RQFE6U = 破箱人 終極難題冒險(美) RQFP6V = 破箱人 終極難題冒險(歐) RQGE69 = 我的模擬人生 賽車(美) @@ -1540,7 +1546,7 @@ RQGP69 = 我的模擬人生 賽車(歐) RQIJ01 = NHK紅白猜謎合戰(日) RQJE7D = 古惑狼 泰坦巨人(美) RQJP7D = 古惑狼之泰坦巨人(歐) -RQJX7D = 古惑狼之泰坦巨人[WiFi](X) +RQJX7D = 古惑狼 泰坦巨人(X) RQKE41 = 馬戲團遊戲(美) RQKP41 = 聚會遊樂園(歐) RQLE64 = 星際大戰複製人之戰 共和國英雄(美) @@ -1554,8 +1560,8 @@ RQOJ13 = 孢子英雄(日) RQOP69 = 孢子英雄(歐) RQPE52 = 坎貝拉的獵鹿(美) RQPP52 = 坎貝拉的獵鹿(歐) -RQPZ52 = 坎貝拉鹿獵(歐) -RQQE70 = 後院橄欖球2009(美) +RQPZ52 = 坎貝拉的獵鹿人(Z) +RQQE70 = 後院橄欖球09(美) RQREXJ = 空中殺手 無罪王牌(美或中) RQRJAF = 空中殺手:無瑕王牌(日) RQRPAF = 空中殺手 無罪王牌(歐) @@ -1570,8 +1576,8 @@ RQWEG9 = 益智之迷 戰神的挑戰(美) RQWPG9 = 益智之迷 戰神的挑戰(歐) RQXP70 = 奧運會上的阿斯特里克斯(歐) RQYENR = 夢幻水族世界(美) -RQZE41 = 異形4X4特技賽車(美) -RQZP41 = 怪獸4X4特級賽車(歐) +RQZE41 = 怪物四驅 特技賽車(美) +RQZP41 = 怪物四驅 特技賽車(歐) RR2ENR = 裝載卡車競賽2(美) RR2PUG = 裝載卡車競賽2(歐) RR2XUG = 裝載卡車競賽2(歐) @@ -1615,6 +1621,7 @@ RRLX78 = 貝茲娃娃 女孩本搖滾(X) RRLY78 = 貝茲娃娃 女孩本搖滾(Y) RRLZ78 = 貝茲娃娃 女孩本搖滾(Z) RRME69 = 孩之寶 家庭遊戲之夜(美) +RRMI69 = 孩之寶 家庭遊戲之夜(意) RRMP69 = 孩之寶 家庭遊戲之夜(歐) RRMX69 = 孩之寶 家庭遊戲之夜(X) RRPE41 = 正確定價(美) @@ -1651,7 +1658,7 @@ RS3P52 = 蜘蛛人3(歐) RS3X52 = 蜘蛛人3(X) RS4EXS = 式神之城3(美) RS4JJF = 式神之城3(日) -RS4PXS = 式神之城3(歐) +RS4PH3 = 式神之城3(歐) RS5EC8 = 戰國無雙KATANA(美) RS5JC8 = 戰國無雙 KATANA(日) RS5PC8 = 戰國無雙 KATANA(歐) @@ -1659,12 +1666,12 @@ RS7J01 = 光速蒙面俠21 賽場上的最強戰士(日) RS8J8N = 上海(日) RS9E8P = 音速小子滑板競速 流星故事(美) RS9J8P = 音速小子滑板競速 流星故事(日) -RS9P8P = 音速小子滑板競速 流星故事[WiFi](歐) +RS9P8P = 音速小子滑板競速 流星故事(歐) RSAE78 = 海綿寶寶 亞特蘭堤斯(美) RSAP78 = 海綿寶寶 亞特蘭蒂斯(歐) RSBE01 = 任天堂明星大亂鬪X(美) RSBJ01 = 任天堂明星大亂鬪X(日) -RSBK01 = 任天堂明星大亂鬪X[WiFi](韓) +RSBK01 = 任天堂明星大亂鬪X(韓) RSBP01 = 任天堂明星大亂鬪X[WiFi](歐) RSCD7D = 疤面煞星 掌握世界(德) RSCE7D = 疤面煞星 掌握世界(美) @@ -1708,7 +1715,7 @@ RSPP01 = Wii運動(歐) RSPW01 = Wii運動(中) RSQEAF = 家庭滑雪(美) RSQJAF = 家庭滑雪(日) -RSQPAF = 家庭滑雪[平衡板](歐) +RSQPAF = 家庭滑雪(歐) RSRE8P = 音速小子 索尼克與秘密的戒指(美) RSRJ8P = 音速小子 索尼克與秘密的戒指(日) RSRP8P = 音速小子 索尼克與秘密的戒指(歐) @@ -1773,7 +1780,7 @@ RTFK52 = 變形金剛(韓) RTFP52 = 變形金剛(歐) RTFX52 = 變形金剛(X) RTFY52 = 變形金剛(Y) -RTGJ18 = 嚴選桌面遊戲 Wii +RTGJ18 = 嚴選桌面遊戲Wii(日) RTHE52 = 托尼霍克滑板(美) RTHP52 = 托尼霍克滑板(歐) RTIE8P = 古怪世界運動會(美) @@ -1794,8 +1801,8 @@ RTNJCQ = 天誅4(日或中) RTNP41 = 天誅4(歐) RTOJ8P = 428 被封鎖的涉谷(日) RTPP41 = 王牌冒險(歐) -RTQENR = 怪物卡車 越野賽(美) -RTQPUG = 怪物卡車 越野賽(歐) +RTQENR = 怪物卡車越野賽(美) +RTQPUG = 怪物卡車越野賽(歐) RTQXUG = 怪物卡車 越野賽(X) RTRE18 = 垂釣大師(美) RTRJ18 = 垂釣大師(日) @@ -1840,6 +1847,7 @@ RUCPRT = 冬季運動會 終極挑戰 2008(歐) RUCXRT = 冬季運動會 終極挑戰 2008(X) RUEE4Q = 鼠膽妙算(美) RUEP4Q = 鼠膽妙算(歐) +RUER4Q = 鼠膽妙算(俄) RUEX4Q = 鼠膽妙算(X) RUEY4Q = 鼠膽妙算(歐) RUFEMV = 符文工廠 未知大地(美) @@ -1850,7 +1858,7 @@ RUGP5G = 雞皮疙瘩恐怖樂園(歐) RUHE52 = 爆丸 戰鬥對決(美) RUHP52 = 爆丸 戰鬥對決(歐) RUHX52 = 爆丸 戰鬥對決(X) -RUHZ52 = 爆丸 戰鬥對決(歐) +RUHZ52 = 爆丸 戰鬥對決(Z) RUIE4Q = 迪斯尼 想唱就唱(美) RUIP4Q = 迪斯尼 想唱就唱(歐) RUIX4Q = 迪斯尼 想唱就唱(X) @@ -1858,7 +1866,7 @@ RUKEGT = 我們來搖滾吧 鼓王(美) RUKPGT = 我們來搖滾吧 鼓王(歐) RULE4Q = 終極樂隊[WiFi](美) RULP4Q = 終極樂隊[WiFi](歐) -RUME5Z = 滑雪射擊[平衡板](美) +RUME5Z = 滑雪射擊(美) RUMPFR = 夏季田徑運動會(歐) RUNJ0Q = 新 右腦達人Wii(日) RUOEPL = 閣樓里的外星人(美) @@ -1880,10 +1888,10 @@ RUSX78 = 海綿寶寶 致命水珠(X) RUSY78 = 海綿寶寶 致命水珠(Y) RUUE01 = 動物之森 城市大家庭(美) RUUJ01 = 動物之森 城市大家庭(日) -RUUK01 = 動物之森 城市大家庭[WiFi](韓) -RUUP01 = 動物之森 城市大家庭[WiFi](歐) +RUUK01 = 動物之森 城市大家庭(韓) +RUUP01 = 動物之森 城市大家庭(歐) RUWJC8 = 賽馬大亨世界(日) -RUXPUG = 都市極限飚車 街道之怒(X) +RUXPUG = 都市極限飚車 街道之怒(歐) RUXXUG = 都市極限飚車 街道之怒(X) RUYE41 = 英雄不再2 垂死掙扎(美) RUYJ99 = 英雄不再2:垂死掙扎(日) @@ -1896,8 +1904,8 @@ RV3P6N = 聰明的孩子 嚇人的爬行動物(歐) RV7SMR = 幸存者[平衡板](歐) RV8E20 = 夏日海灘趣味挑戰(美) RV8PRT = 海灘暑假快樂挑戰(歐) -RV9E78 = 降世神通 地獄之炎(美) -RV9P78 = 降世神通 地獄之炎(歐) +RV9E78 = 降世神通 地獄之戰(美) +RV9P78 = 降世神通 地獄之戰(歐) RVAE78 = 降世神通 燃燒的大地(美) RVAP78 = 降世神通 燃燒的大地(歐) RVBERS = 鼠來寶(美) @@ -1907,7 +1915,6 @@ RVEFMR = 歡迎來到北方(法) RVFE20 = 大腳車 碰撞航向(美) RVFP7J = 大腳車 碰撞航向(歐) RVGE78 = 默夫格里芬縱橫字迷(美) -RVGP78 = 默夫格里芬縱橫字迷(歐) RVHP41 = 斯塊博拼字 互動2009[WiFi][平衡板](歐) RVIE4F = 樂高生化戰士(美) RVIP4F = 樂高生化戰士(歐) @@ -1915,12 +1922,12 @@ RVJPFR = 金髮美女 回到小島(歐) RVKEXJ = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](美) RVKJ99 = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](日) RVKKZA = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](韓) -RVKP99 = 瓦爾哈拉騎士 艾德爾傳奇[WiFi](歐) +RVKP99 = 瓦爾哈拉騎士 艾德爾傳奇(歐) RVLPA4 = 搖滾革命(歐) -RVNE20 = 加爾文塔克的鄉村狂歡(美) -RVNP7J = 加爾文塔克的鄉村狂歡(歐) -RVOEPL = 眩暈滾球[平衡板](美) -RVOPPL = 眩暈滾球[平衡板](歐) +RVNE20 = 加爾文·塔克的鄉村狂歡(美) +RVNP7J = 加爾文·塔克的鄉村狂歡(歐) +RVOEPL = 眩暈滾球(美) +RVOPPL = 眩暈滾球(歐) RVPEFS = 明星吉他(美) RVPPFS = 明星吉他(歐) RVQE41 = 電影遊戲(美) @@ -1933,18 +1940,18 @@ RVSP69 = 極限滑板[平衡板](歐) RVTFMR = 真實故事 獸醫(法) RVTPMR = 我的寵物俱樂部(歐) RVTXMR = 真實故事 獸醫(X) -RVUE8P = 威力網球 2009[MP][WiFi](美) +RVUE8P = 威力網球2009(美) RVUP8P = 威力網球 2009[MP][WiFi](歐) RVVE78 = 大沙灘運動(美) RVVP78 = 大沙灘運動(歐) RVXFRT = 現代冬季兩項2009[平衡板](法) RVXPRT = 現代冬季兩項2009[平衡板](歐) -RVYD52 = 決勝時刻 戰爭世界[WiFi](德) +RVYD52 = 決勝時刻 戰爭世界(德) RVYE52 = 決勝時刻 戰爭世界(美) -RVYK52 = 決勝時刻 世界大戰[WiFi](韓) -RVYP52 = 決勝時刻 世界大戰[WiFi](歐) -RVYX52 = 決勝時刻 世界大戰[WiFi](X) -RVYY52 = 決勝時刻 世界大戰[WiFi](Y) +RVYK52 = 決勝時刻 世界大戰(韓) +RVYP52 = 決勝時刻 戰爭世界(歐) +RVYX52 = 決勝時刻 世界大戰(X) +RVYY52 = 決勝時刻 世界大戰(Y) RVZE52 = 怪獸大戰外星人(美) RVZP52 = 怪獸大戰外星人(歐) RW3E4Q = 神鬼奇航 世界的盡頭(美) @@ -2003,10 +2010,10 @@ RWRE4F = 古怪賽車 衝撞(美) RWRP4F = 古怪賽車 衝撞(歐) RWSE8P = 瑪利歐與音速小子在北京奧運(美) RWSJ01 = 瑪利歐與音速小子在北京奧運(日) -RWSK01 = 瑪利歐與音速小子在北京奧運[WiFi](韓) -RWSP8P = 瑪利歐與音速小子在北京奧運[WiFi](歐) +RWSK01 = 瑪利歐與音速小子在北京奧運(韓) +RWSP8P = 瑪利歐與音速小子在北京奧運(歐) RWTEG9 = 少年駭客 外星英雄(美) -RWTPG9 = BEN 10 外星神力(歐) +RWTPG9 = 少年駭客 外星英雄(歐) RWUE52 = X戰警 金鋼狼(美) RWUP52 = X戰警 金鋼狼(歐) RWUX52 = X戰警 金鋼狼(X) @@ -2020,8 +2027,8 @@ RWYPHH = 逃亡 海龜之夢(歐) RWZE5G = 奇跡世界遊樂園(美) RWZP5G = 奇跡世界遊樂園(歐) RWZX5G = 奇跡世界遊樂園(X) -RX2E70 = 我和我的小馬2(美) -RX2P70 = 我和我的小馬2(歐) +RX2E70 = 馬兒與我2(美) +RX2P70 = 馬兒與我2(歐) RX3E01 = 激情漫游 特技競速(美) RX3J01 = 激情漫遊:特技競速(日) RX4E4Z = 鬼馬小精靈 鬼怪運動日(美) @@ -2053,6 +2060,7 @@ RXDY4Q = 靈機一動(Y) RXEJDA = 棒球大聯盟Wii(日) RXFEVN = 近海大亨(美) RXGE6K = 吉綸立方(美) +RXGP6K = 吉綸立方(歐) RXHF5D = 混沌之家(法) RXIE52 = 變形金剛2 復仇之戰[WiFi](美) RXIP52 = 變形金剛2 復仇之戰[WiFi](歐) @@ -2067,14 +2075,14 @@ RXNEXS = 再次體感釣魚(美) RXNJJF = 鱸魚釣手Wii 世界錦標賽 (日) RXNPGT = 巴斯釣魚2(歐) RXPEXS = 實感釣魚 上鉤了(美) -RXPJJF = 實感釣魚[WiFi](日) -RXPPGT = 實感釣魚[WiFi](歐) +RXPJJF = 實感釣魚(日) +RXPPGT = 實感釣魚(歐) RXQEWR = 野獸冒險樂園(美) RXQPWR = 野獸冒險樂園(歐) RXRERS = 雙鼠記(美) RXRPRS = 浪漫鼠德佩羅(歐) RXRXRS = 浪漫的老鼠(歐) -RXSPA4 = 熱舞生涯 勁爆舞會[跳舞墊](歐) +RXSPA4 = 勁舞革命 勁爆舞會(歐) RXUE41 = 衝浪季節(美) RXUP41 = 衝浪季節(歐) RXUX41 = 衝浪季節(X) @@ -2087,7 +2095,7 @@ RXYE4Z = 更多的難題挑戰(美) RXYP4Z = 更多的難題挑戰(歐) RXZE52 = 坎貝拉危險狩獵2009(美) RXZP52 = 坎貝拉危險狩獵2009(歐) -RY2E41 = 雷曼超人 瘋狂兔子2[WiFi](美) +RY2E41 = 雷曼超人 瘋狂兔子2(美) RY2J41 = 雷曼超人 瘋狂兔子2[WiFi](日) RY2K41 = 雷曼超人 瘋狂兔子2[WiFi](韓) RY2P41 = 瘋狂兔子2(歐) @@ -2103,14 +2111,14 @@ RY6EA4 = 去戶外吧(美) RY6PA4 = 節拍漫步(歐) RY7PHZ = 忍者首領(歐) RY8EFS = 巴斯專業店 魚餌(美) -RY9E69 = FIFA足球09[WiFi](美) +RY9E69 = FIFA足球09(美) RYAJDA = 小雙俠Wii 驚心動魄機器猛競速(日或中) RYBE69 = 轟炸方塊 猛擊聚會(美) -RYBP69 = 轟炸方塊 猛擊聚會[WiFi](歐) +RYBP69 = 轟炸方塊 猛擊聚會(歐) RYDELT = 寵物伴侶 動物醫生(美) RYDP6V = 寵物伴侶 動物醫生(歐) -RYEEEB = 101合1 聚會遊戲大合集(美) -RYEPHZ = 101合1 聚會遊戲大合集(歐) +RYEEEB = 101合1聚會遊戲大合集(美) +RYEPHZ = 101合1聚會遊戲大合集(歐) RYGE9B = 阿格斯戰士 肌肉衝擊(美) RYGJ9B = 阿格斯戰士 肌肉衝擊(日) RYGP99 = 阿格斯戰士 肌肉衝擊(歐) @@ -2119,15 +2127,16 @@ RYHPS5 = 虛擬宇宙 扭曲之塔(歐) RYIE9B = 涂鴉王子(美) RYIPNK = 涂鴉王子(歐) RYJPTV = 莉莉菲公主 魔法小仙女(歐) -RYKEAF = 世界滑雪&滑雪板[平衡板](美) -RYKJAF = 家庭滑雪:世界滑雪&滑雪板(日) -RYKPAF = 世界滑雪&滑雪板[平衡板](歐) +RYKEAF = 家庭滑雪&滑雪板(美) +RYKJAF = 家庭滑雪&滑雪板(日) +RYKK01 = 家庭滑雪&滑雪板(韓) +RYKPAF = 家庭滑雪&滑雪板(歐) RYLDSV = 德國頂級模特(德) RYNE6U = 哈迪男孩 隱藏的盜竊(美) RYNP6V = 哈迪男孩 隱藏的盜竊(歐) -RYOEA4 = 遊戲王5D's 破碎轉輪(美) +RYOEA4 = 遊戲王5D's 騎乘決鬥者(美) RYOJA4 = 遊戲王5D's 騎乘決鬥者(日或中) -RYOPA4 = 遊戲王5D's破碎轉輪(歐) +RYOPA4 = 遊戲王5D's 騎乘決鬥者(歐) RYQE69 = 棋盤問答(美) RYQP69 = 棋盤問答(歐) RYQX69 = 棋盤問答(X) @@ -2186,10 +2195,10 @@ RZREGT = 蒙面俠蘇洛的宿命(美) RZRPGT = 蒙面俠蘇洛的宿命(歐) RZSEGJ = 極速地帶(美) RZSP68 = 飛速賽車(歐) -RZTE01 = Wii運動 度假勝地[MP](美) -RZTJ01 = Wii運動 度假勝地[MP](日) -RZTK01 = Wii運動 度假勝地[MP](韓) -RZTP01 = Wii運動 度假勝地[MP](歐) +RZTE01 = Wii運動 度假勝地(美) +RZTJ01 = Wii運動 度假勝地(日) +RZTK01 = Wii運動 度假勝地(韓) +RZTP01 = Wii運動 度假勝地(歐) RZTW01 = Wii運動 度假勝地(中) RZUE4Z = 彩色之旅(美) RZYE41 = 我的單詞教練(美) @@ -2200,20 +2209,22 @@ RZZE8P = 瘋狂世界(美) RZZJEL = 瘋狂世界(日) RZZP8P = 瘋狂世界(歐) S22JAF = 家庭釣魚(日) +S22K01 = 家庭釣魚(韓) S25JGD = 勇者鬥惡龍25周年紀念 FC & SFC 勇者鬥惡龍1、2、3 (日) S2AEAF = 運動生活 探險家(美) S2AJAF = 運動生活 探險家(日) -S2APAF = 運動生活 探險家(歐) +S2APAF = 家庭教练 探險家(歐) S2BEPZ = 鄉村舞蹈2(美) S2CE54 = 新遊戲狂歡節[MP](美) S2CP54 = 新遊戲狂歡節[MP](歐) S2DPML = 跳舞這是你的舞台(歐) -S2EE41 = ABBA: You Can Dance(美) -S2EP41 = ABBA: You Can Dance(歐) +S2EE41 = 舞力全開 ABBA(美) +S2EP41 = 舞力全開 ABBA(歐) S2HE70 = 鬼屋(美) S2HP70 = 鬼屋(歐) S2IE8P = 鋼鐵人2(美) S2IP8P = 鋼鐵人2(歐) +S2IZ8P = 鋼鐵人2 沃爾瑪版(美) S2LE01 = 寶可夢公園2 在世界的彼端 (美) S2LJ01 = 神奇寶貝樂園2 在世界的彼端(日) S2LP01 = 神奇寶貝樂園2 在世界的彼端 (歐) @@ -2226,36 +2237,38 @@ S2PXA4 = 實況足球 2012(歐) S2PYA4 = 實況足球 2012(歐) S2QE54 = NBA 2K12(美) S2QP54 = NBA 2K12(歐) -S2RPNK = 目標狙擊(美) +S2RPNK = 目標狙擊(歐) S2TJAF = 太鼓達人Wii 大張旗鼓!二代目(日) S2UE41 = 舞力全開2020(美) S2UP41 = 舞力全開2020(歐) S2WE78 = WWE激爆職業摔角 全明星大賽(美) S2WP78 = WWE激爆職業摔角 全明星大賽(歐) -S2XE41 = 藍色小精靈2(美) +S2XE41 = 藍精靈2(美) S2XP41 = 藍色小精靈2(歐) S2ZE52 = 開心鼠園2(美) S2ZP52 = 開心鼠園2(歐) S3AE5G = 3D電影大射擊(美) -S3APGT = 3D電影大射擊(美) +S3APGT = 3D電影大射擊(歐) S3BEWR = 蝙蝠俠 勇者無懼(美) S3BPWR = 蝙蝠俠 勇者無懼(歐) S3CENR = 三冠王滑雪錦標賽[平衡板](美) S3DE18 = 運動大集錦3 Wii的十項運動[MP][WiFi](美) -S3DJ18 = 運動大集錦3 Wii的十項運動[MP][WiFi](日) +S3DJ18 = 運動大集錦3 Wii的十項運動(日) S3DP18 = 運動大集錦3 Wii的十項運動[MP][WiFi]((歐) S3EE78 = 芭比娃娃 時尚風格(美) S3EP78 = 芭比娃娃 時尚風格(歐) S3FE69 = FIFA足球13(美) -S3FP69 = FIFA 足球 13 +S3FP69 = FIFA足球13(歐) +S3FX69 = FIFA足球13(X) S3GE20 = 極地越野賽3(美) +S3GPXT = 極地越野賽3(歐) S3HJ08 = 戰國 BASARA 3 宴(日) S3IPA4 = 實況足球2013(歐) S3ME69 = 模擬市民3(美) S3MP69 = 模擬市民3(歐) S3PE4Q = 迪士尼公主 我的童話冒險(美) S3PP4Q = 迪士尼公主 我的童話冒險(歐) -S3PX4Q = 迪士尼公主 我的童話冒險(歐) +S3PX4Q = 迪士尼公主 我的童話冒險(X) S3RJMS = 一閃女皇(日) S3SJ18 = 卡拉OK Joysound Wii超級DX版 好歌一起唱(日) S3TJAF = 太鼓達人Wii 大家的聚會!三代目(日) @@ -2269,21 +2282,24 @@ S59E01 = 戰國無雙 3(美) S59JC8 = 戰國無雙 3(日) S59P01 = 戰國無雙 3(歐) S5BETL = 回到未來(美) +S5BPKM = 回到未來(歐) S5DE41 = 舞力全開 迪士尼派對2(美) S5DP41 = 舞力全開 迪士尼派對2(歐) S5EE41 = 舞力全開2019(美) S5EP41 = 舞力全開2019(歐) S5KJAF = 太鼓達人Wii 超豪華版(日) S5QJC8 = 戰國無雙3 猛將傳(日) +S5RESZ = 拉姆賽車(美) S5RPNJ = 拉姆賽車(歐) S5SJHF = 閃電十一人GO時空之石 王牌前鋒 2013(日) S5TEG9 = 少年駭客 全面進化(美) +S5TPAF = 少年駭客 全面進化(歐) S5WE20 = 世界各地的50款遊戲(美) S6BE4Q = 勇敢傳說(美) S6BP4Q = 勇敢傳說(歐) S6BX4Q = 勇敢傳說(歐) S6IE78 = 迪斯尼公主故事書(美) -S6IP78 = 迪斯尼公主故事書(美) +S6IP78 = 迪斯尼公主故事書(歐) S6RE52 = 無敵破壞王(美) S6RP52 = 無敵破壞王(歐) S72E01 = 星之卡比 20週年紀念合集(美) @@ -2296,15 +2312,18 @@ S7BE69 = 棋盤遊戲(美) S7BP69 = 棋盤遊戲(歐) S7CJAF = 假面騎士 巔峰英雄 Fourze(日) S7DE52 = 憤怒的小鳥 星球大戰(美) +S7DP52 = 憤怒的小鳥 星球大戰(歐) SA3E5G = 鼠來寶3(美) +SA3P5G = 鼠來寶3(歐) +SA3XGT = 鼠來寶3(X) SA5E78 = 你比五年級生聰明嗎3(美) SA6EG9 = 少年駭客 銀河賽車(美) -SA6PAF = Ben 10 銀河賽車(美) +SA6PAF = 少年駭客 銀河賽車(歐) SA7ESZ = 小熊軟糖 魔法勳章(美) SABENR = 外星怪獸保齡球聯賽(美) -SABPJG = 外星怪物保齡球聯賽[MP](歐) +SABPJG = 外星怪物保齡球聯賽(歐) SADE70 = 後院運動 沙地強打者(美) -SAFUHS = 澳大利亞澳式足球聯盟(英) +SAFUHS = 澳大利亞橄欖球聯盟(U) SAGE41 = 驚險大挑戰(美) SAHE69 = 孩之寶 家庭遊戲之夜樂趣包(美) SAJE52 = 坎貝拉生存大冒險 卡特邁的陰影(美) @@ -2318,11 +2337,11 @@ SAOP78 = 怪物美少女 屍鬼精靈(歐) SAOXVZ = 怪物美少女 屍鬼精靈(歐) SAQE5G = 好萊塢明星私教(美) SARE4Z = 阿拉丁魔毯競速(美) -SARPNK = 阿拉丁魔毯競速[平衡板](歐) +SARPNK = 阿拉丁魔毯競速(歐) SATE6K = 查克奶酪的超級收藏(美) SAUJ8P = 魔法氣泡!! 20周年紀念版(日) SAVE5G = 鼠來寶2(美) -SAVX5G = 鼠來寶明星俱樂部(歐) +SAVX5G = 鼠來寶2(X) SAWE52 = 憤怒的小鳥 三部曲(美) SAWP52 = 憤怒的小鳥 三部曲(歐) SAYE20 = 新兵訓練營學院(美) @@ -2345,17 +2364,19 @@ SB6E52 = 爆丸 核心守護者(美) SB6P52 = 爆丸 核心守護者(歐) SB8EQH = 漢堡博特(美) SB9E78 = 芭比娃娃 照顧小狗(美) +SB9EVZ = 芭比娃娃 照顧小狗(美) SB9P78 = 芭比娃娃 照顧小狗(歐) -SB9X78 = 芭比娃娃 照顧小狗(美) +SB9X78 = 芭比娃娃 照顧小狗(X) +SB9YVZ = 芭比娃娃 照顧小狗(Y) SBAJGD = 勇者鬥惡龍 怪獸戰鬥之路 勝利(日) SBBE18 = 戰鬥陀螺 爆神須佐之男來襲(美) SBBJ18 = 戰鬥陀螺 對決大賽(日) SBBP18 = 戰鬥陀螺 爆神須佐之男來襲(歐) SBCJ2N = 比利的訓練營Wii 享受減肥(日) -SBDE08 = 惡靈古堡 暗黑編年史(美或中) -SBDJ08 = 惡靈古堡 暗黑歷代記[WiFi](日) -SBDK08 = 惡靈古堡 黑暗歷代記[WiFi](韓) -SBDP08 = 惡靈古堡 黑暗歷代記[WiFi](歐) +SBDE08 = 惡靈古堡 暗黑歷代記(美或中) +SBDJ08 = 惡靈古堡 暗黑歷代記(日) +SBDK08 = 惡靈古堡 暗黑歷代記(韓) +SBDP08 = 惡靈古堡 暗黑歷代記(歐) SBEPSV = 百慕大三角 拯救珊瑚礁(歐) SBFE70 = 后院橄欖球10(美) SBHEFP = 雷明頓美洲獵鳥記(美) @@ -2363,20 +2384,20 @@ SBHPNK = 雷明頓美洲獵鳥記(美) SBIEVZ = 勤勞理發師(美) SBIPVZ = 勤勞理發師(歐) SBJEG9 = 少年駭客 終極異形之宇宙毀滅(美) -SBJPAF = BEN 10 外星神力 終極異型(歐) +SBJPAF = 少年駭客 終極異形之宇宙毀滅(歐) SBKEPZ = 布朗斯維克 宇宙領域保齡球(美) SBLE5G = 一個男孩和他的軟泥(美) SBLP5G = 一個男孩和他的軟泥(歐) -SBNEG9 = 少年駭客 外星英雄之魔賈斯襲擊(美) -SBNPG9 = BEN 10 外星神力 魔賈斯的反擊(歐) +SBNEG9 = 少年駭客 外星英雄之魔賈斯的襲擊(美) +SBNPG9 = 少年駭客 外星英雄之魔賈斯的襲擊(歐) SBQE4Z = 雄鹿獵人(美) SBREJJ = 一起跳芭蕾舞(美) -SBRPKM = 一起跳芭蕾舞(歐) -SBSEFP = 雷明頓狩獵北美超級大滿貫(美) -SBSURN = 雷明頓狩獵北美超級大滿貫(歐) +SBRPKM = 一起跳芭蕾(歐) +SBSEFP = 雷明頓超級大滿貫狩獵 北美(美) +SBSURN = 雷明頓超級大滿貫狩獵 北美(英) SBVE78 = 海綿寶寶 碰碰船競賽(美) SBVP78 = 海綿寶寶 碰碰船競賽(歐) -SBVS78 = 海綿寶寶 碰碰船競賽(歐) +SBVS78 = 海綿寶寶 碰碰船競賽(西) SBWE5G = 妙廚老媽 育兒媽媽(美) SBWJRA = 育兒媽媽(日或中) SBWPGT = 妙廚老媽 育兒媽媽(歐) @@ -2385,7 +2406,7 @@ SBYE41 = 起舞百老匯(美) SBYP41 = 百老匯舞蹈(美) SBZESZ = 百慕大三角 拯救珊瑚礁(美) SC2E8P = 暗渠2(美) -SC2P8P = 暗渠2[MP][WiFi](歐) +SC2P8P = 暗渠2(歐) SC4E64 = 樂高星際大戰3 複製人戰爭(美) SC4P64 = 樂高星際大戰3 複製人戰爭(歐) SC5PGN = 挑戰自我 填字遊戲(歐) @@ -2400,19 +2421,20 @@ SC7Z52 = 決勝時刻 黑色行動(英) SC8E01 = Wii遙控器Plus 動感歡樂組合[MP](美) SC8J01 = Wii控制器加強版 動感歡樂組合(日或中) SC8P01 = Wii遙控器Plus 動感歡樂組合[MP](歐) -SC9P52 = 坎貝拉獵人2010(美) +SC9P52 = 坎貝拉獵人2010(歐) SCAE18 = 鬼來電 黑暗來信(美) -SCAJ18 = 鬼來電 黑暗來信(日) +SCAJ18 = 鬼來電 黑暗來信(日或中) SCAP18 = 鬼來電 黑暗來信(歐) SCBPNK = 自行車運動(歐) SCDE52 = 坎貝拉危險狩獵2011(美) -SCDP52 = 坎貝拉危險狩獵 2011(歐) +SCDP52 = 坎貝拉危險狩獵2011(歐) SCEE6K = 查克奶酪的派對遊戲(美) SCFPNK = 魔怪狂歡節(歐) -SCGE20 = 加爾文塔克的鄉村狂歡 農場動物賽車錦標賽(美) +SCGE20 = 加爾文·塔克的農場動物賽車錦標賽(美) +SCGPXT = 加爾文·塔克的農場動物賽車錦標賽(歐) SCHEQH = 加拿大狩獵(美) -SCIE41 = CSI 犯罪現場 致命殺機(美) -SCIP41 = CSI 犯罪現場 致命殺機(歐) +SCIE41 = 犯罪現場調查 致命殺機(美) +SCIP41 = 犯罪現場調查 致命殺機(歐) SCJE4Q = 樂高神鬼奇航(美) SCJP4Q = 樂高神鬼奇航(歐) SCKE6K = 查克奶酪運動遊戲(美) @@ -2422,23 +2444,24 @@ SCNPA4 = 暮光之城(歐) SCPE70 = 蜈蚣大侵襲(美) SCREJH = 小雞大暴亂(美) SCRPJH = 小雞大暴亂(歐) -SCSE52 = 巡洋艦度假遊戲[MP](美) +SCSE52 = 巡洋艦度假遊戲(美) SCSPGR = 遊輪度假(歐) SCTPNK = 小魔怪驚喜(歐) SCUPFR = 瘋狂小雞嘉年華派對(歐) SCWE41 = 金吉姆健身房 舞蹈鍛煉(美) SCWP41 = 我的健身房教練 舞蹈鍛鍊(歐) SCXESZ = 雪佛蘭Camaro 野外駕駛(美) -SCXPNJ = 雪佛蘭Camaro 野外駕駛(美) +SCXPNJ = 雪佛蘭Camaro 野外駕駛(歐) SCYE4Q = 汽車總動員2(美) SCYP4Q = 汽車總動員2(歐) -SCYX4Q = 汽車總動員2(歐) -SCYY4Q = 汽車總動員2(歐) -SCYZ4Q = 汽車總動員2(歐) +SCYR4Q = 汽車總動員2(俄) +SCYX4Q = 汽車總動員2(X) +SCYY4Q = 汽車總動員2(Y) +SCYZ4Q = 汽車總動員2(Z) SCZEMH = 瘋狂機器(美) SCZPFR = 瘋狂機器(歐) SD2E41 = 舞力全開2(美) -SD2J01 = 舞力全開 Wii (日) +SD2J01 = 舞力全開 日本版(日) SD2K41 = 舞力全開2(韓) SD2P41 = 舞力全開2(歐) SD2Y41 = 舞力全開2 百思買版(美) @@ -2452,7 +2475,7 @@ SDBE78 = 顏料寶貝2(美) SDBP78 = 顏料寶貝2(歐) SDDPML = 終極的兩性大戰(歐) SDEE5G = 舞感(美) -SDEPGT = 舞感(美) +SDEPGT = 舞感(歐) SDFE4Q = 迪斯尼想唱就唱 家庭版(美) SDFP4Q = 迪斯尼想唱就唱 家庭版(歐) SDGE4Q = 迪斯尼全明星派對(美) @@ -2469,13 +2492,13 @@ SDNP41 = 舞力全開(歐) SDOPLR = 神秘博士 重返地球(歐) SDPE54 = 愛探險的朵拉 生日大冒險(美) SDPP54 = 愛探險的朵拉 生日大冒險(歐) -SDREYG = 最強賽車大獎賽 改裝車賽(美) -SDRPNG = 改裝車賽(歐) +SDREYG = 急速賽車 改裝車賽(美) +SDRPNG = 急速賽車 改裝車賽(歐) SDSPNG = We Dance(歐) SDTPGN = PDC世界飛鏢錦標賽(歐) -SDUE41 = 藍色小精靈 舞蹈派對(美) -SDUP41 = 藍色小精靈(歐) -SDUX41 = 藍色小精靈 舞蹈派對(美) +SDUE41 = 藍精靈舞蹈派對(美) +SDUP41 = 藍精靈舞蹈派對(歐) +SDUX41 = 藍精靈舞蹈派對 沃爾瑪版(美) SDVE41 = 極道車魂 舊金山(美) SDVP41 = 極道車魂 舊金山(歐) SDWE18 = 黑影之塔(美) @@ -2483,48 +2506,50 @@ SDWJ18 = 黑影之塔(日) SDWP18 = 黑影之塔(歐) SDXE4Q = 迪士尼世界(美) SDXP4Q = 迪士尼世界(歐) -SDYEA4 = 熱舞革命[跳舞墊][平衡板](美) -SDYPA4 = 熱舞革命 勁爆舞會4(歐) +SDYEA4 = 勁舞革命(美) +SDYPA4 = 勁舞革命 勁爆舞會4(歐) SDZE41 = 舞力全開 兒童版(美) SDZP41 = 舞蹈少年(歐) SE2E69 = EA SPORTS 活力健身房 2.0(美) -SE2P69 = EA SPORTS 活力健身房 2.0(歐) +SE2P69 = EA運動活力2(歐) SE3E41 = 舞力全開2015(美) SE3P41 = 舞力全開2015(歐) SE8E41 = 舞力全開2018(美) SE8P41 = 舞力全開2018(歐) SEAE69 = EA運動活力 6星期練出好身材[平衡板](美) -SEAJ13 = EA運動活力 6星期練出好身材[平衡板](日) -SEAP69 = EA運動活力 6星期練出好身材[平衡板](歐) +SEAJ13 = EA運動活力 6星期練出好身材(日) +SEAP69 = EA運動活力 6星期練出好身材(歐) SECE69 = 小小設計師(美) SECP69 = 小小設計師(歐) -SEGE6U = 瑜伽[平衡板](美) +SEGE6U = 瑜伽(美) SEGP6V = 瑜伽(歐) -SEKJ99 = 活祭之夜(日) +SEKJ99 = 活祭之夜(日或中) SELE69 = FIFA足球11(美) -SELP69 = FIFA足球11[WiFi](歐) -SELX69 = FIFA足球11(歐) +SELP69 = FIFA足球11(歐) +SELX69 = FIFA足球11(X) SEME4Q = 傳奇米老鼠(美) SEMJ01 = 傳奇米老鼠(日) SEMP4Q = 傳奇米老鼠(歐) SEMX4Q = 傳奇米老鼠(X) -SEMY4Q = 傳奇米老鼠(歐) -SEMZ4Q = 傳奇米老鼠(歐) -SEPE41 = 黑眼豆豆巨星體驗 特別版(美) +SEMY4Q = 傳奇米老鼠(Y) +SEMZ4Q = 傳奇米老鼠(Z) +SEPE41 = 黑眼豆豆 巨星體驗(美) SEPP41 = 黑眼豆豆大體驗(歐) -SEPZ41 = 黑眼豆豆巨星體驗 特別版(美) -SERE4Q = 傳奇米奇 2 二人之力(美) -SERF4Q = 傳奇米奇 2 二人之力(歐) -SERP4Q = 傳奇米奇 2 二人之力(歐) -SERV4Q = 傳奇米奇 2 二人之力(歐) +SEPZ41 = 黑眼豆豆 巨星體驗特別版(Z) +SERE4Q = 傳奇米奇2 二人之力(美) +SERF4Q = 傳奇米奇2 二人之力(法) +SERK8M = 傳奇米奇2 二人之力(韓) +SERP4Q = 傳奇米奇2 二人之力(歐) +SERV4Q = 傳奇米奇2 二人之力(V) SEZJHF = 閃電十一人 王牌前鋒 2012終極版(日) SF2P64 = 星際大戰 原力解放2(歐) SF4E20 = 橫衝直撞(美) +SF4PXT = 橫衝直撞(X) SF5E41 = 塑身教練俱樂部(美) SF5J41 = 健身工坊(日) SF5P41 = 我的健身教練 俱樂部(歐) SF7E41 = 家庭問答2012(美) -SF8E01 = 大金剛再起(美或中) +SF8E01 = 大金剛國度 回歸(美或中) SF8J01 = 大金剛再起(日) SF8P01 = 大金剛再起(歐) SFAE41 = 家庭問答2011(美) @@ -2532,7 +2557,9 @@ SFAJGD = 鋼之煉金術師 黃昏少女(日) SFBE70 = 後院運動 菜鳥向前衝(美) SFDEAF = 家庭訓練機 夢幻主題樂園(美) SFDJAF = 家庭訓練機 夢幻主題樂園(日) -SFGE69 = 孩之寶 家庭遊戲之夜4 遊戲節目(美) +SFDPAF = 家庭教練 夢幻主題樂園(歐) +SFGE69 = 孩之寶 家庭遊戲之夜4 遊戲節目(美) +SFGP69 = 孩之寶 家庭遊戲之夜4 遊戲節目(歐) SFHEFP = 戶外活動合集(美) SFIE01 = 神秘案件檔案 百靈泉(美) SFIP01 = 神秘案件檔案(歐) @@ -2543,8 +2570,8 @@ SFOEAF = 網絡食譜 烹飪對戰(美) SFPPFR = 夢幻足球派對(歐) SFQE8P = 美國隊長 超級士兵(美) SFQP8P = 美國隊長 超級士兵(歐) -SFRDRV = 健身適合樂趣(歐) -SFRPXT = 健身娛樂[平衡板](歐) +SFRDRV = 健身樂趣(歐) +SFRPXT = 健身樂趣(歐) SFSPGT = 全方位獵手(歐) SFTE78 = 財富之輪(美) SFTP78 = 財富之輪(歐) @@ -2555,8 +2582,8 @@ SFWJ13 = FIFA 世界盃足球賽 2010(日) SFWK69 = 2010南非世界盃足球賽(韓) SFWP69 = 2010南非世界盃足球賽(歐) SFWX69 = 2010南非世界盃足球賽(歐) -SFWY69 = 2010南非世界盃足球賽(歐) -SFWZ69 = 2010南非世界盃足球賽(美) +SFWY69 = 2010南非世界盃足球賽(Y) +SFWZ69 = 2010南非世界盃足球賽(Z) SFXPKM = 英國偶像(歐) SFXXKM = 英國偶像(歐) SFYEG9 = 家庭聚會 90 個豐富好遊戲(美) @@ -2564,8 +2591,8 @@ SFYPAF = 家庭聚會 90 個豐富好遊戲(歐) SFZEPZ = 雉雞永存(美) SFZPXT = 雉雞永存(歐) SG2EFS = 瘋狂迷你高爾夫2(美) -SG2XUG = 瘋狂迷你高爾夫2[MP](美) -SG3DSV = 德國頂級模特兒(歐) +SG2XUG = 瘋狂迷你高爾夫2(X) +SG3DSV = 德國頂級模特2010(歐) SG5PSV = 家庭測驗(歐) SG6DSV = 伽利略家庭測驗(歐) SG7E20 = 加菲貓 拉薩尼亞危機(美) @@ -2576,6 +2603,7 @@ SG9EYC = 搗蛋鬼 小精靈(美) SGAE8P = 劍鬥士傳奇(美) SGAP8P = 劍鬪士傳奇(歐) SGBE5G = 極限漆彈大賽2(美) +SGBPGT = 極限漆彈大賽2(歐) SGCE20 = 極地越野賽2(美) SGDEJJ = 花園一起玩(美) SGDPKM = 花園一起玩(歐) @@ -2588,7 +2616,7 @@ SGIJA4 = GTI汽車俱樂部 世界城市競速(日) SGIPA4 = GTI汽車俱樂部 世界城市競速(歐) SGJDSV = 神秘伽利略米達斯王冠(德) SGKEC8 = 冠軍騎師 騎師之道&風速神駒(美) -SGKJC8 = 冠軍騎師:風速神駒&騎師之道(日) +SGKJC8 = 冠軍騎師 風速神駒&騎師之道(日) SGKPC8 = 冠軍騎師 騎師之道&風速神駒(歐) SGLEA4 = 高米迪戰士 自然之王(歐) SGLPA4 = 高米迪戰士 自然之王(歐) @@ -2596,9 +2624,9 @@ SGNE69 = 孩之寶 家庭遊戲之夜超值包(美) SGODKP = 迷你高爾夫度假勝地(歐) SGOETV = 迷你高爾夫度假勝地(美) SGOPKP = 迷你高爾夫度假勝地(歐) -SGPEYG = 最強賽車大獎賽 GP經典(美) +SGPEYG = 急速賽車 GP經典(美) SGPPNG = 經典賽車大獎賽(歐) -SGQDSV = 德國超級名模生死鬥 2011(德) +SGQDSV = 德國頂級模特2011(德) SGREGT = 油脂勁歌熱舞(美) SGRPGT = 油脂勁歌熱舞(美) SGSESZ = 家庭遊戲秀(美) @@ -2618,23 +2646,26 @@ SH2JMS = 輕鬆學跳草裙舞(日) SH3E54 = 勁爆冰上曲棍球2011[MP](美) SH3P54 = 勁爆冰上曲棍球2011[MP](歐) SH4EFP = 戰火紛飛 阿富汗(美) -SH5E69 = 哈利波特與死亡聖器 下集(美) -SH5P69 = 哈利波特 死神的聖物 下集(美) -SH6E52 = 坎貝拉狩獵2012(美) +SH4PNK = 戰火紛飛 阿富汗(歐) +SH5E69 = 哈利·波特與死亡聖器 下集(美) +SH5P69 = 哈利·波特 死神的聖物 下集(歐) +SH6E52 = 坎貝拉獵人2012(美) +SH6P52 = 坎貝拉獵人2012(歐) SH7ESZ = 狂熱本田沙灘車(美) SH7PNJ = 狂熱本田沙灘車(歐) SH8E52 = 坎貝拉冒險夏令營(美) -SH8P52 = 坎貝拉冒險夏令營(美) +SH8P52 = 坎貝拉冒險夏令營(歐) SH9ESZ = 希斯與利夫 火速狂飆(美) +SH9PNJ = 希斯與利夫 火速狂飆(歐) SHBE69 = 孩之寶家庭遊戲之夜3(美) SHBP69 = 孩之寶家庭遊戲之夜3(歐) SHDE52 = 馴龍高手(美) -SHDP52 = 馴龍高手(美) +SHDP52 = 馴龍高手(歐) SHEDRM = 農場(歐) SHFE20 = 籃球名人堂 極限挑戰(美) -SHGDRM = 假日遊戲(歐) -SHHE69 = 哈利波特與死亡聖器 上集(美) -SHHP69 = 哈利波特 死神的聖物 上集(歐) +SHGDRM = 假日遊戲(德) +SHHE69 = 哈利·波特與死亡聖器 上集(美) +SHHP69 = 哈利·波特 死神的聖物 上集(歐) SHIJ2N = 節奏拳擊2 用Wii享瘦(日) SHKE20 = 凱蒂貓 四季(美) SHKPNQ = 凱蒂貓 四季(歐) @@ -2646,11 +2677,12 @@ SHOXKR = 雨果 巨魔樹林里的魔法(X) SHOYKR = 雨果 巨魔樹林里的魔法(歐) SHPE5G = 我們的家 聚會[WiFi](美) SHSE20 = 超級戰鬥機(美) +SHSPXT = 超級戰鬥機(歐) SHTE20 = 馬修斯狩獵弓(美) -SHUE52 = 坎貝拉危險狩獵 2011 特別版(美) +SHUE52 = 坎貝拉危險狩獵2011 特別版(美) SHVE78 = 風火輪賽車 賽道攻擊(美) SHVP78 = 風火輪賽車 賽道攻擊(歐) -SHVX78 = 風火輪賽車 賽道攻擊(美) +SHVX78 = 風火輪賽車 賽道攻擊(X) SHWE41 = 好萊塢廣場(美) SHXEWR = 快樂腳2(美) SHXPWR = 快樂腳2(歐) @@ -2659,16 +2691,16 @@ SHYP69 = NHL冰上曲棍球 强打(歐) SHZENR = 哈雷摩托公路狂飆(美) SI3E69 = FIFA足球12(美) SI3P69 = FIFA足球12(歐) -SI3X69 = FIFA足球12[WiFi](歐) -SIAE52 = 冰原歷險記4 板塊漂移(美) -SIAI52 = 冰原歷險記4 板塊漂移(歐) -SIAP52 = 冰原歷險記4 板塊漂移(歐) +SI3X69 = FIFA足球12(X) +SIAE52 = 冰原歷險記4(美) +SIAI52 = 冰原歷險記4(意) +SIAP52 = 冰原歷險記4(歐) SIDE54 = 席德梅爾的海盜(美) SIDP54 = 席德梅爾的海盜(歐) SIFESZ = 弗蘭克斯坦博士島(美) SIFPNJ = 弗蘭克斯坦博士島(歐) -SIIE8P = 瑪利歐與音速小子在倫敦奧運[WiFi](美) -SIIJ01 = 瑪利歐與音速小子在倫敦奧運[WiFi](日) +SIIE8P = 瑪利歐與音速小子在倫敦奧運(美) +SIIJ01 = 瑪利歐與音速小子在倫敦奧運(日) SIIP8P = 瑪利歐與音速小子在倫敦奧運(歐) SIJE52 = 我是凱利2 加入我們(美) SIJP52 = 我是凱利2 加入我們(歐) @@ -2677,25 +2709,25 @@ SILP78 = 百戰天蟲 戰鬥島(歐) SIME69 = 我的模擬人生合集(美) SINPNG = 大家唱 羅比威廉姆斯(歐) SISENR = 公主伊莎貝拉之巫師詛咒(美) -SISJ0Q = 骨盆瘦身[平衡板](日) +SISJ0Q = 骨盆瘦身(日) SISPUH = 伊莎貝拉公主 女巫的詛咒(歐) SIUUNG = 我們歌唱 南澳洲(歐) SJ2EWR = 史酷比 幽靈沼澤(美) SJ2PWR = 史酷比 幽靈沼澤(歐) SJ3JDA = 人生遊戲 歡樂家庭(日) SJ5JDA = 人生遊戲 快樂家庭 當地題材增量版(日) -SJ6E41 = 舞力全开:迪士尼派对 +SJ6E41 = 舞力全開 迪士尼派對(美) SJ6P41 = 舞力全開 迪士尼派對(歐) SJ7E41 = 舞力全開 兒童版2014(美) SJ7P41 = 舞力全開 兒童版2014(歐) SJ9E41 = 舞力全開 夏日派對(美) -SJ9P41 = 舞力全開2 額外的歌曲(歐) +SJ9P41 = 舞力全開2 補充歌曲(歐) SJAE5G = 大白鯊 終極獵食者(美) -SJBE52 = 詹姆士龐德007 黃金眼(美) +SJBE52 = 007 黃金眼(美) SJBJ01 = 007 黃金眼(日) -SJBP52 = 詹姆士龐德007 黃金眼(歐) +SJBP52 = 007 黃金眼(歐) SJDE41 = 舞力全開3(美) -SJDJ01 = 舞力全開 Wii2(日) +SJDJ01 = 舞力全開 日本版2(日) SJDK41 = 舞力全開3(韓) SJDP41 = 舞力全開3(歐) SJDX41 = 舞力全開3 特別版(歐) @@ -2708,7 +2740,7 @@ SJFXGR = 幼兒健身教練(歐) SJGEPK = 開始行動 家庭健身[平衡板](美) SJHE41 = 舞力全開 精選集(美) SJIEG9 = 吉利安 麥可斯健身最後通牒2011[MP][平衡板](美) -SJJEA4 = 吉米約翰的超級引擎(美) +SJJEA4 = 吉米·約翰的超級引擎(美) SJKEPK = 瘋狂卡丁車(美) SJLEFS = 少年體育聯賽(美) SJLPXT = 少年體育聯賽(美) @@ -2723,12 +2755,12 @@ SJQEPZ = 寶石方塊三部曲(美) SJQPGR = 寶石方塊三部曲(美) SJREA4 = 說唱巨星(美) SJRPA4 = 說唱巨星(歐) -SJRXA4 = 說唱巨星(歐) -SJRYA4 = 說唱巨星(歐) -SJRZA4 = 說唱巨星(歐) +SJRXA4 = 說唱巨星(X) +SJRYA4 = 說唱巨星(Y) +SJRZA4 = 說唱巨星(Z) SJSEPK = 寵物營救(美) -SJUE20 = 恐龍快打(美) -SJUPXT = 恐龍快打(美) +SJUE20 = 恐龍快槍(美) +SJUPXT = 恐龍快槍(歐) SJVE20 = 肖恩約翰遜體操[平衡板](美) SJWJA4 = 實況足球2010 藍武士的挑戰(日) SJXD41 = 舞力全開4 特別版(歐) @@ -2755,6 +2787,7 @@ SKMJAF = 假面騎士 巔峰英雄W(日) SKOEA4 = 卡拉OK革命 歡樂合唱團3(美) SKOPA4 = 卡拉OK革命歡樂合唱團3(美) SKREG9 = 假面騎士 龍騎士(美) +SKSP54 = NBA 2K13(歐) SKTE78 = 全明星空手道(美) SKTP78 = 全明星空手道(歐) SKUE78 = 功夫熊貓2(美) @@ -2776,6 +2809,7 @@ SLAE78 = 最後的氣宗(美) SLAP78 = 最後的氣宗(歐) SLAZ78 = 最後的氣宗 玩具反斗城版(美) SLCEGN = 起舞吧(美) +SLCPGN = 起舞吧(歐) SLDEYG = 一起跳舞(美) SLEE78 = 喬布拉 促進大腦發展的冥想遊戲(美) SLEP78 = 喬布拉 促進大腦發展的冥想遊戲(歐) @@ -2788,26 +2822,26 @@ SLRPWR = 樂高魔戒(歐) SLSEXJ = 最后的故事 SLSJ01 = 夢幻終章(日) SLSP01 = 夢幻終章(日) -SLTEJJ = 新U健身 瑜珈和普拉提[MP][平衡板](美) -SLTPLG = 新U健身 瑜珈和普拉提[MP][平衡板](歐) +SLTEJJ = 新U健身 瑜珈和普拉提(美) +SLTPLG = 新U健身 瑜珈和普拉提(歐) SLVP41 = 我們的性感轟趴派對(歐) SLWE41 = 瓦爾多在哪里?奇幻旅程(美) SLYESZ = 野獸情人(美) -SLYPNJ = 野獸情人(美) +SLYPNJ = 野獸情人(歐) SM2E52 = 十分鐘快速健身(美) SM2P52 = 十分鐘快速健身(歐) -SM4E20 = 大腳怪物卡車大破壞(美) +SM4E20 = 怪物卡車大破壞(美) SM5EAF = 侍戰隊真劍者(美) SM5PAF = 侍戰隊真劍者(歐) SM6PNK = 我的形體教練2 健身與舞蹈(歐) SM7E69 = 勁爆美式橄欖球12(美) -SM8D52 = 決勝時刻 現代戰爭3(歐) +SM8D52 = 決勝時刻 現代戰爭3(德) SM8E52 = 決勝時刻 現代戰爭3(美) -SM8F52 = 決勝時刻 現代戰爭3(歐) -SM8I52 = 決勝時刻 現代戰爭 3(歐) +SM8F52 = 決勝時刻 現代戰爭3(法) +SM8I52 = 決勝時刻 現代戰爭3(意) SM8P52 = 決勝時刻 現代戰爭3(歐) -SM8S52 = 決勝時刻 現代戰爭 3(歐) -SM8X52 = 決勝時刻 現代戰爭3(歐) +SM8S52 = 決勝時刻 現代戰爭3(西) +SM8X52 = 決勝時刻 現代戰爭3(X) SM9E54 = 職業棒球大聯盟2K12(美) SMAENR = 海軍陸戰隊 現代城市戰(美) SMAPGN = 海軍陸戰隊 現代城市戰(歐) @@ -2833,8 +2867,8 @@ SMNJ01 = 新超級瑪利歐兄弟Wii(日) SMNK01 = 新超級瑪利歐兄弟Wii(韓) SMNP01 = 新超級瑪利歐兄弟Wii(歐) SMNW01 = 新超級瑪利歐兄弟Wii(中) -SMOE41 = 麥可傑克森 舞王體驗(美) -SMOJ41 = 麥可傑克森 夢幻體驗(日) +SMOE41 = 麥可·傑克森 舞王體驗(美) +SMOJ41 = 麥可·傑克森 舞王體驗(日) SMOP41 = 麥可傑克森 舞王體驗(美) SMOX41 = 麥可傑克森 舞王體驗(美) SMOY41 = 麥可傑克森 舞王體驗(美) @@ -2850,8 +2884,8 @@ SMVE54 = 職業棒球大聯盟2K11(美) SMWE4Z = 荒島求生(美) SMYE20 = 分秒必爭(美) SMZE78 = Q版超級英雄大戰 漫畫大戰(美) -SMZP78 = Q版超級英雄大戰 漫畫大戰(美) -SN2E69 = 玩具槍大戰 雙重爆破合集(美) +SMZP78 = Q版超級英雄大戰 漫畫大戰(歐) +SN2E69 = 玩具槍大作戰 雙重爆破合集(美) SN3EYG = 急速賽車 拉力賽(美) SN3PNG = 急速賽車 拉力賽(歐) SN4EDA = 火影忍者疾風傳 龍刃記(美) @@ -2877,7 +2911,7 @@ SNEENR = 北美狩獵盛典2(美) SNEPXT = 北美狩獵盛典2(歐) SNFE69 = EA SPORTS 活力健身房 NFL訓練營(美) SNGEJJ = 和Mel B一起健身(美) -SNGPLG = 跟Mel B一起减肥[MP][平衡板](歐) +SNGPLG = 和Mel B一起健身(歐) SNHE69 = 極速快感 超熱力追緝(美) SNHJ13 = 極速快感:超熱力追緝(日) SNHP69 = 極速快感 超熱力追緝(歐) @@ -2892,7 +2926,7 @@ SNMEAF = 拿姆科博物館 經典合集(美) SNQE7U = 國家地理大挑戰(美) SNQPLG = 國家地理大挑戰(歐) SNRE52 = 雲斯頓賽車 快感釋放(美) -SNSE52 = 雲斯頓賽車 2011(美) +SNSE52 = 雲斯頓賽車2011(美) SNTEXN = Netflix系統安裝光碟(美) SNUPJW = 快樂神經元學院(歐) SNVE69 = 極速快感 亡命天涯(美) @@ -2900,11 +2934,12 @@ SNVJ13 = 極速快感 亡命天涯(日) SNVP69 = 極速快感 亡命天涯(歐) SNXJDA = 火影忍者疾風傳 激鬥忍者大戰特別版(日) SNZEVZ = 芭比夢幻屋派對(美) +SNZPVZ = 芭比夢幻屋派對(歐) SO3EE9 = 符文工廠 藍海奇緣(美) SO3J99 = 符文工廠 藍海奇緣(日) SOAE52 = 坎貝拉狩獵探險(美) SOCE4Z = 致命捕撈 混亂海域(美) -SOIEEB = 101合1 運動聚會遊戲大合集(美) +SOIEEB = 101合1運動聚會遊戲大合集(美) SOIPHZ = 101合1 運動聚會遊戲大合集(歐) SOJE41 = 雷射超人 起源(美) SOJP41 = 雷射超人 起源(歐) @@ -2916,13 +2951,14 @@ SOMP01 = 大家的節奏天國(歐) SONDMR = 我的第一個卡拉OK(歐) SONFMR = 我的第一個卡拉OK(歐) SONPMR = 我的第一個卡拉OK(歐) +SORE4Z = 俄勒岡之旅(美) SOSEG9 = 極速蝸牛 超級特技隊(美) SOTE52 = 失敗比賽(美) SOUE01 = 薩爾達傳說 天空之劍(美) SOUJ01 = 薩爾達傳說 天空之劍(日或中) SOUK01 = 薩爾達傳說 天空之劍(韓) SOUP01 = 薩爾達傳說 天空之劍(歐) -SP2E01 = Wii運動+Wii運動 度假勝地(歐 +SP2E01 = Wii運動+Wii運動 度假勝地(美) SP2P01 = Wii運動+Wii運動 度假勝地(歐 SP3E41 = 百萬美金金字塔(美) SP4PJW = 法式滾球(法) @@ -2942,6 +2978,7 @@ SPDP52 = 蜘蛛人 破碎次元(歐) SPEE20 = 速度(美) SPEPXT = 速度(歐) SPGPPN = 粉紅豬小妹 遊戲2(歐) +SPHPJW = 西部槍手(歐) SPIE18 = 裝扮聚會(美) SPIJ18 = 派對遊戲100種(日) SPIP18 = 遊戲島(歐) @@ -2967,16 +3004,17 @@ SQDE8P = 紐約風暴與洛杉磯機槍街機版(美) SQDP8P = 紐約風暴與洛杉磯機槍街機版(歐) SQFE5G = 飛哥與小佛 尋找酷的東西(美) SQIE4Q = 迪士尼無限世界(美) -SQLE4Z = 卡通頻道明星大亂鬪 XL(美) -SQLPGN = 卡通频道大乱斗 +SQLE4Z = 卡通頻道明星大亂鬪(美) +SQLPGN = 卡通頻道明星大亂鬥(歐) SQME52 = 蜘蛛人 時間裂痕(美) SQMP52 = 蜘蛛人 時間裂痕(歐) SQPPX4 = 速度 2(歐) SQUDX3 = 測驗派對(歐) SQUFX3 = 測驗派對(歐) SQUPX3 = 測驗派對(歐) -SQVE69 = FIFA 15(美) -SQVX69 = FIFA足球 15 +SQVE69 = FIFA足球15(美) +SQVP69 = FIFA足球15(歐) +SQVX69 = FIFA足球15(X) SR4E41 = 雷曼超人 瘋狂兔子時空旅行(美) SR4J41 = 瘋狂兔子:時光旅行[WiFi](日) SR4P41 = 雷曼超人 瘋狂兔子時空旅行(歐) @@ -3005,7 +3043,7 @@ SRPE4Q = 迪士尼 魔髮奇緣(美) SRPP4Q = 迪士尼 魔髮奇緣(歐) SRQE41 = 球拍運動(美) SRQP41 = 球拍運動[MP](歐) -SRRENR = 消遣遊戲室[MP](美) +SRRENR = 消遣遊戲室(美) SRRPGN = 盛大聚會遊戲(歐) SRSE20 = 超級音速賽車(美) SRUE4Z = 紅鼻子馴鹿魯道夫(美) @@ -3021,7 +3059,7 @@ SS3UWR = 芝麻街埃爾默動物園歷險記(歐) SS4EWR = 芝麻街餅乾計數嘉年華(美) SS4UWR = 芝麻街餅乾計數嘉年華(美) SS5ENR = 盡顯時尚(美) -SS6UHS = 實況橄欖球年度特別版(歐) +SS6UHS = 實況橄欖球年度特別版(U) SS7EFP = 雷明頓超級大滿貫狩獵 非洲(美) SS7URN = 雷明頓超級大滿貫狩獵 非洲(英) SS8E78 = 海綿寶寶 塗鴉褲子(美) @@ -3049,20 +3087,21 @@ SSLPKM = 馬術俱樂部(歐) SSMPGD = 門薩學院(歐) SSNEYG = 狙擊精英(美) SSNPHY = 狙擊精英(歐) +SSPE52 = 小龍斯派羅的大冒險(美) SSPP52 = 小龍斯派羅的大冒險(歐) -SSPX52 = 小龍斯派羅的大冒險(歐) +SSPX52 = 小龍斯派羅的大冒險(X) SSQE01 = 瑪利歐派對9(美) SSQJ01 = 瑪利歐派對9(日) SSQP01 = 瑪利歐派對9(歐) SSQW01 = 瑪利歐派對9(中) SSRE20 = 狂野西部槍戰(美) -SSRPXT = 狂野西部槍戰(X) +SSRPXT = 狂野西部槍戰(歐) SSTEG9 = 兒童冒險 天空隊長(美) SSTPY5 = 特技飛行 空中英雄(歐) SSUES5 = 迴轉壽司(美) SSWDRM = 水上運動(德) SSWEPZ = 水上運動(美) -SSWPGR = 水上運動[平衡板](歐) +SSWPGR = 水上運動(歐) SSZE5G = 劍(美) ST3J01 = 聽力大考驗(日) ST4PNX = 湯瑪士小火車 鐵路小英雄(歐) @@ -3071,14 +3110,15 @@ ST5E52 = 變形金剛 賽博坦大戰(美) ST5P52 = 變形金剛 賽博坦大戰(歐) ST6E78 = 減肥達人挑戰賽(美) ST6P78 = 減肥達人挑戰賽[平衡板](歐) -ST7E01 = 富豪街Wii[WiFi](美) +ST7E01 = 富豪街Wii(美) ST7JGD = 富豪街Wii(日或中) -ST7P01 = 富豪街Wii[WiFi](歐) +ST7P01 = 富豪街Wii(歐) ST9E52 = 頂級射手(美) STAE78 = 猜猜畫畫(美) STAP78 = 猜猜畫畫(歐) STAU78 = 猜猜畫畫(歐) STDEFP = 目標狙擊(美) +STDURN = 目標狙擊(英) STEETR = 俄羅斯方塊聚會 豪華版[WiFi][平衡板](美) STEJ18 = 俄羅斯方塊派對獎金(日或中) STEPTR = 俄羅斯方塊派對(歐) @@ -3100,7 +3140,7 @@ STNE41 = 丁丁歷險記 獨角獸號的秘密(美) STNP41 = 丁丁歷險記 獨角獸號的秘密(歐) STOE4Q = 汽車總動員 拖線狂想曲(美) STOP4Q = 汽車總動員 拖線狂想曲(歐) -STOX4Q = 汽車總動員 拖線狂想曲(歐) +STOX4Q = 汽車總動員 拖線狂想曲(X) STPPML = 寵物獸醫 海洋巡防(歐) STQJHF = 閃電十一人 王牌前鋒(日) STRE4Q = 電子世界爭霸戰 進化(美) @@ -3114,7 +3154,7 @@ STSZ4Q = 玩具總動員3 玩具盒特別版(美) STTDRM = 隱藏的秘密 鐵達尼號(歐) STTE52 = 隱藏的秘密 鐵達尼號(美) STTPGR = 隱藏的秘密 鐵達尼宿命航行的秘密(歐) -STTXGR = 隱藏的秘密 鐵達尼宿命航行的秘密(歐) +STTXGR = 隱藏的秘密 鐵達尼號(X) STVDSV = 電視總事件(德) STWE69 = 老虎伍茲高爾夫PGA巡迴賽11(美) STWP69 = 老虎伍茲高爾夫PGA巡迴賽11(歐) @@ -3148,14 +3188,15 @@ SUPE01 = Wii 派對(美) SUPJ01 = Wii派對(日或中) SUPK01 = Wii 派對(韓) SUPP01 = Wii 派對(歐) -SUREA4 = 熱舞革命2(美) -SURPA4 = 熱舞革命 5(歐) +SUREA4 = 勁舞革命2(美) +SURPA4 = 勁舞革命 勁爆舞會5(歐) SUSFMR = 環球歌唱 強尼哈勒戴(歐) SUSPMR = 環球歌唱 女孩之夜(歐) SUTESZ = 很久很久以前(美) SUUE78 = 天才小畫家 即時藝術家(美) SUUP78 = 天才小畫家 即時藝術家(歐) SUVE52 = 坎貝拉危險狩獵2013(美) +SUVP52 = 坎貝拉危險狩獵2013(歐) SUWE78 = 天才小畫家(美) SUWP78 = 天才小畫家(歐) SUXEA4 = 實況足球2010[WiFi](美) @@ -3170,19 +3211,30 @@ SV3PAF = 馬達加斯加3(歐) SV4E8P = 威力網球4(美) SV4P8P = 威力網球 4[MP][WiFi](歐) SVBE52 = 战舰(美) +SVBP52 = 戰艦(歐) +SVCEPZ = 狂歡舞會(美) +SVCPXT = 狂歡舞會(歐) SVDP52 = 海綿寶寶 痞老闆機器人復仇 +SVHE69 = FIFA足球14(美) +SVHP69 = FIFA足球14(歐) +SVHX69 = FIFA足球14(X) SVME01 = 超級瑪利歐收藏集 特別包(美) SVMJ01 = 超級瑪利歐收藏集(日) SVMP01 = 超級瑪利歐收藏集 特別包(歐) SVPESZ = 維加斯聚會(美) SVPPNJ = 維加斯聚會(歐) SVQEVZ = 芭比姐妹之狗狗救援隊(美) +SVQPVZ = 芭比姐妹之狗狗救援隊(歐) +SVSPZX = 戰鬥版國際象棋(歐) SVTEXS = 超級線程(美) SVVEG9 = 古魯家族(美) SVVPAF = 古魯家族(歐) SVWEQH = 蔬菜世界(美) +SVXE52 = 小龍斯派羅 交換力量(美) SVYEG9 = 少年駭客 全面進化2(美) +SVYPAF = 少年駭客 全面進化2(歐) SVZEVZ = 馴龍高手2(美) +SVZPVZ = 馴龍高手2(歐) SW2E52 = 百戰鐵人王 2(美) SW3EJJ = 冬季滑雪明星(美) SW3PKM = 冬季滑雪明星(歐) @@ -3192,11 +3244,11 @@ SW6P78 = WWE 激爆職業摔角 12(歐) SW7EVN = 西部英雄(美) SW7PNK = 西部英雄(歐) SW9EVN = 怪物大轟炸(美) -SW9PYT = 怪物大轟炸(美) +SW9PYT = 怪物大轟炸(歐) SWAE52 = DJ英雄(美) -SWAP52 = DJ英雄[WiFi](歐) +SWAP52 = DJ英雄(歐) SWBE52 = DJ 英雄2(美) -SWBP52 = DJ 英雄2[WiFi]((歐) +SWBP52 = DJ英雄2((歐) SX2PNG = 叢林賽車(歐) SX3J01 = 潘朵拉之塔 回到你身邊(日) SX3P01 = 潘朵拉之塔 直到你身邊 (欧) @@ -3205,21 +3257,21 @@ SX4J01 = 異域神劍(日或中) SX4P01 = 異域神劍(歐) SX5E4Z = 聖誕老人進城囉(美) SX6JAF = 光之美少女 全明星全員集合一起舞蹈(日) -SX7E52 = 忍者神龜 +SX7E52 = 忍者神龜(美) SX8E52 = X戰警 命運(美) SX8P52 = X戰警 命運(美) SXAE52 = 吉他英雄 世界巡演(美) SXAP52 = 吉他英雄 世界巡演[WiFi](歐) SXBE52 = 吉他英雄 金屬樂隊(美) -SXBP52 = 吉他英雄 金屬樂隊專輯[WiFi](歐) +SXBP52 = 吉他英雄 金屬樂隊(歐) SXCE52 = 吉他英雄 流行精選(美) -SXCP52 = 吉他英雄 流行精選[WiFi](歐) +SXCP52 = 吉他英雄 流行精選(歐) SXDE52 = 吉他英雄 范海倫(美) -SXDP52 = 吉他英雄 范海倫[WiFi](歐) +SXDP52 = 吉他英雄 范海倫(歐) SXEE52 = 吉他英雄5(美) -SXEP52 = 吉他英雄5[WiFi](歐) +SXEP52 = 吉他英雄5(歐) SXFE52 = 樂團英雄(美) -SXFP52 = 樂團英雄[WiFi](歐) +SXFP52 = 樂團英雄(歐) SXIE52 = 吉他英雄 搖滾鬥士(美) SXIP52 = 吉他英雄 搖滾鬥士(歐) SZ2E5G = 尊巴南美拉丁舞 2(美) @@ -3313,15 +3365,19 @@ CKBE88 = 瑪莉歐賽車黑化版(美) CLAPSI = 自制 唱吧 下載版(歐) CMDE52 = 自制 吉他英雄3 下載版(美) CVLE38 = 瑪利歐賽車 勝利賽道[WiFi](美) -DLCE41 = 舞力全開2015合集 +DLCE41 = 舞力全開2015 合集 DMSP4Q = 迪斯尼電影 想唱就唱(歐) -DQAJSC = 水瓶座棒球 (猫星汉化版) +DQAJSC = 水瓶座棒球(中) DRP22Q = 自制 唱吧 下載版(歐) FC2E41 = 舞力全開 Focus2 FF4ENG = 零月蝕之假面(美) +G2MK01 = 密特羅德究極2 黑暗回声(韓) GH2E41 = 舞力全開 GH2 +GM8K01 = 密特羅德究極(韓) GMSE02 = 超级马里奥阳光多人游戏 HBWE01 = 超級瑪利歐兄弟Wii Hellboy Edition(美) +J4EE41 = 舞力全開2024 +J5EE41 = 舞力全開2025 KMKE01 = 瑪利歐賽車Wii 自製版 L40P4Q = 自制 唱吧 下載版(歐) MDUE01 = 瑪利歐賽車 Track Grand Priix[WiFi](美) @@ -3340,9 +3396,9 @@ PUTA01 = 自製 吉他英雄3 搖滾精選(?) R01PET = 自制 唱吧 下載版(歐) R02PEA = 自制 唱吧 下載版(歐) R15POH = 自製 唱吧 Radio 105(歐) -R24E01 = 用Wii遊玩小小機器人(日) +R24E01 = 用Wii遊玩小小機器人(美) R4ZE01 = 零月蝕之假面(美) -R4ZP01 = 零月蝕之假面(美) +R4ZP01 = 零月蝕之假面(歐) R8PC01 = 超級紙片瑪利歐(中) RCOC99 = 名偵探柯南 追憶的幻想(中) RDUE01 = DU超級瑪利歐兄弟 尋找公主 @@ -3385,7 +3441,6 @@ RMCEYP = 耀西賽車度假村Plus(美) RMCJ12 = 瑪俐歐賽車Wii 自製版(2011-11 Wiimm)(日) RMCJYP = 耀西賽車度假村Plus(日) RMCKYP = 耀西賽車度假村Plus(韓) -RMCPCA = 瑪利歐賽車Wii(加泰蘭語) RMCPYP = 耀西賽車度假村Plus(歐) RMGC01 = 超級瑪利歐銀河(中) RMGE52 = 自制 吉他英雄3 麥加帝斯合唱團(美) @@ -3394,6 +3449,7 @@ RMKE02 = 自製 瑪利歐賽車(美) RNVW01 = 超級瑪利歐銀河(中) ROMESD = 魔物獵人G(美) RQQE52 = 吉他英雄 皇后樂團(美) +RS4PXS = 式神之城3(歐) RSJESD = 自製 吉他英雄 墮落體制合唱團(美) RU1P4Q = 自制 迪斯尼想唱就唱 下載版(歐) RU2P4Q = 自制 迪斯尼想唱就唱 下載版(歐) @@ -3424,6 +3480,7 @@ SDUEO1 = 新超級瑪利歐兄弟Wii DU版(歐) SDUPO1 = DU超級瑪利歐兄弟 SE1E41 = 舞力全開 East SEHE41 = 舞力全開 Epic Hits +SEKE99 = 活祭之夜(美) SEOP4Q = 自制 唱吧 下載版(歐) SGI1CL = 自制 唱吧 下載版(歐) SGI1DB = 自制 唱吧 下載版(歐) @@ -3463,20 +3520,22 @@ SISRP4 = 自制 唱吧 下載版(歐) SISSOH = 自制 唱吧 下載版(歐) SISTDK = 迪斯尼 想唱就唱 土耳其聚會(歐) SJDJ02 = 舞力全開 Flamengo -SJEE41 = 舞力全開2014合集 +SJEE41 = 舞力全開2014 合集 SJME89 = 舞力全開 Japan SL1E41 = 舞力全開 Starlight SM3E01 = 超級瑪利歐兄弟3+ SMIG3Q = 自制 唱吧 下載版(歐) SMMP01 = 新超級瑪利歐兄弟Wii ANDY AFRO的自製系列卷4 SMNC01 = 新超級瑪利歐兄弟Wii(中) -SMNE03 = 更新的超級瑪利歐兄弟Wii +SMNE03 = 超級瑪利歐兄弟Wii 更新版(美) +SMNED3 = 新新超級瑪利歐兄弟Wii SMNEXE = 加強的超級馬里奧兄弟.WIi豪華版 SMNPO1 = 新超級瑪利歐兄弟Wii定製版(歐) SMOT3Q = 自制 唱吧 下載版(歐) SMPP01 = 新超級瑪利歐兄弟Wii2 另一個P SNBE66 = 新超級馬里奧兄弟wii啟示錄 SOME02 = 全民節奏天國(美) +SOMR01 = 大家的節奏天國(俄) SOUE41 = 舞力全開 Ocean SP9P4Q = 自制 唱吧 下載版(歐) SRBP4Q = 自制 唱吧 下載版(歐) @@ -3561,11 +3620,12 @@ HAGA = 新聞頻道(美) HAGE = 新聞頻道(美) HAGJ = 新聞頻道(美) HAGP = 新聞頻道(歐) -HAPE = Check Mii Out頻道(美) -HAPP = Check Mii Out頻道(歐) +HAPE = Mii競賽頻道(美) +HAPP = Mii競賽頻道(歐) HAYA = 照片頻道 +HCCJ = 地址設置 HCLE = Netflix系統安裝光碟(美) -HCMP = 卡比電視頻道(歐) +HCMP = 星之卡比TV頻道 RFPW = Wii Fit Plus頻道 9XGX = SNES9x超任模擬器(美) D64A = 任天堂N64模擬器(歐) From 62d7166e6a25962e0a204a0a64bd72ec7e70cebd Mon Sep 17 00:00:00 2001 From: mitaclaw <140017135+mitaclaw@users.noreply.github.com> Date: Fri, 15 Nov 2024 14:55:00 -0800 Subject: [PATCH 19/40] GDBStub: Signal Breakpoint Changes To Host --- Source/Android/jni/MainAndroid.cpp | 4 ++++ Source/Core/Core/Host.h | 1 + Source/Core/Core/PowerPC/GDBStub.cpp | 2 ++ Source/Core/DolphinNoGUI/MainNoGUI.cpp | 4 ++++ Source/Core/DolphinQt/Host.cpp | 6 ++++++ Source/Core/DolphinTool/ToolHeadlessPlatform.cpp | 4 ++++ Source/DSPTool/StubHost.cpp | 3 +++ Source/UnitTests/StubHost.cpp | 3 +++ 8 files changed, 27 insertions(+) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index bc6205e190..b6468ed85c 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -101,6 +101,10 @@ void Host_PPCSymbolsChanged() { } +void Host_PPCBreakpointsChanged() +{ +} + void Host_RefreshDSPDebuggerWindow() { } diff --git a/Source/Core/Core/Host.h b/Source/Core/Core/Host.h index 9fd6a3c35f..5fc1fc1ee9 100644 --- a/Source/Core/Core/Host.h +++ b/Source/Core/Core/Host.h @@ -57,6 +57,7 @@ bool Host_TASInputHasFocus(); void Host_Message(HostMessageID id); void Host_PPCSymbolsChanged(); +void Host_PPCBreakpointsChanged(); void Host_RefreshDSPDebuggerWindow(); void Host_RequestRenderWindowSize(int width, int height); void Host_UpdateDisasmDialog(); diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index bbd72b8391..349f35254c 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -178,6 +178,7 @@ static void RemoveBreakpoint(BreakpointType type, u32 addr, u32 len) INFO_LOG_FMT(GDB_STUB, "gdb: removed a memcheck: {:08x} bytes at {:08x}", len, addr); } } + Host_PPCBreakpointsChanged(); } static void Nack() @@ -896,6 +897,7 @@ static bool AddBreakpoint(BreakpointType type, u32 addr, u32 len) INFO_LOG_FMT(GDB_STUB, "gdb: added {} memcheck: {:08x} bytes at {:08x}", static_cast(type), len, addr); } + Host_PPCBreakpointsChanged(); return true; } diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 33490265b3..539bbe769f 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -61,6 +61,10 @@ void Host_PPCSymbolsChanged() { } +void Host_PPCBreakpointsChanged() +{ +} + void Host_RefreshDSPDebuggerWindow() { } diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp index f936986b5f..a81924cfd8 100644 --- a/Source/Core/DolphinQt/Host.cpp +++ b/Source/Core/DolphinQt/Host.cpp @@ -271,6 +271,12 @@ void Host_PPCSymbolsChanged() QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->PPCSymbolsChanged(); }); } +void Host_PPCBreakpointsChanged() +{ + QueueOnObject(QApplication::instance(), + [] { emit Host::GetInstance()->PPCBreakpointsChanged(); }); +} + // We ignore these, and their purpose should be questioned individually. // In particular, RequestRenderWindowSize, RequestFullscreen, and // UpdateMainFrame should almost certainly be removed. diff --git a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp index 6e3f590a2d..59495a7d43 100644 --- a/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp +++ b/Source/Core/DolphinTool/ToolHeadlessPlatform.cpp @@ -25,6 +25,10 @@ void Host_PPCSymbolsChanged() { } +void Host_PPCBreakpointsChanged() +{ +} + void Host_RefreshDSPDebuggerWindow() { } diff --git a/Source/DSPTool/StubHost.cpp b/Source/DSPTool/StubHost.cpp index 8fcd5d8d76..eb263d904c 100644 --- a/Source/DSPTool/StubHost.cpp +++ b/Source/DSPTool/StubHost.cpp @@ -16,6 +16,9 @@ std::vector Host_GetPreferredLocales() void Host_PPCSymbolsChanged() { } +void Host_PPCBreakpointsChanged() +{ +} void Host_RefreshDSPDebuggerWindow() { } diff --git a/Source/UnitTests/StubHost.cpp b/Source/UnitTests/StubHost.cpp index 19d833bde3..ffbb0c41c2 100644 --- a/Source/UnitTests/StubHost.cpp +++ b/Source/UnitTests/StubHost.cpp @@ -16,6 +16,9 @@ std::vector Host_GetPreferredLocales() void Host_PPCSymbolsChanged() { } +void Host_PPCBreakpointsChanged() +{ +} void Host_RefreshDSPDebuggerWindow() { } From f642cd465828e3f70b0ef5f992c5e1389c307c9a Mon Sep 17 00:00:00 2001 From: dreamsyntax Date: Sat, 16 Nov 2024 20:52:08 -0700 Subject: [PATCH 20/40] Externals: Update SDL to 2.30.9 --- CMakeLists.txt | 2 +- Externals/SDL/CMakeLists.txt | 2 +- Externals/SDL/SDL | 2 +- Flatpak/SDL2/SDL2.json | 21 +++++++++++++++++++++ Flatpak/org.DolphinEmu.dolphin-emu.yml | 3 +++ 5 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 Flatpak/SDL2/SDL2.json diff --git a/CMakeLists.txt b/CMakeLists.txt index 636d5473e3..3495e3b2b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -585,7 +585,7 @@ if(UNIX) endif() if(ENABLE_SDL) - dolphin_find_optional_system_library(SDL2 Externals/SDL 2.30.6) + dolphin_find_optional_system_library(SDL2 Externals/SDL 2.30.9) endif() if(ENABLE_ANALYTICS) diff --git a/Externals/SDL/CMakeLists.txt b/Externals/SDL/CMakeLists.txt index c30d8ae979..185f1ed930 100644 --- a/Externals/SDL/CMakeLists.txt +++ b/Externals/SDL/CMakeLists.txt @@ -9,7 +9,7 @@ option(SDL_TEST "Build the SDL2_test library" OFF) option(SDL_TEST_ENABLED_BY_DEFAULT "" OFF) # SDL fails to clean up old headers after version upgrades, so do that manually -set(EXPECTED_SDL_REVISION "SDL-release-2.30.6-0") +set(EXPECTED_SDL_REVISION "SDL-release-2.30.9-0") if (EXISTS "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL2/SDL_revision.h") file(READ "${CMAKE_CURRENT_BINARY_DIR}/SDL/include/SDL2/SDL_revision.h" ACTUAL_SDL_REVISION) if (NOT "${ACTUAL_SDL_REVISION}" MATCHES "${EXPECTED_SDL_REVISION}") diff --git a/Externals/SDL/SDL b/Externals/SDL/SDL index ba2f78a006..c98c4fbff6 160000 --- a/Externals/SDL/SDL +++ b/Externals/SDL/SDL @@ -1 +1 @@ -Subproject commit ba2f78a0069118a6c583f1fbf1420144ffa35bad +Subproject commit c98c4fbff6d8f3016a3ce6685bf8f43433c3efcc diff --git a/Flatpak/SDL2/SDL2.json b/Flatpak/SDL2/SDL2.json new file mode 100644 index 0000000000..4c1821b742 --- /dev/null +++ b/Flatpak/SDL2/SDL2.json @@ -0,0 +1,21 @@ +{ + "name": "SDL2", + "buildsystem": "autotools", + "config-opts": ["--disable-static"], + "sources": [ + { + "type": "dir", + "path": "../../Externals/SDL/SDL" + } + ], + "cleanup": [ "/bin/sdl2-config", + "/include", + "/lib/libSDL2.la", + "/lib/libSDL2main.a", + "/lib/libSDL2main.la", + "/lib/libSDL2_test.a", + "/lib/libSDL2_test.la", + "/lib/cmake", + "/share/aclocal", + "/lib/pkgconfig"] +} diff --git a/Flatpak/org.DolphinEmu.dolphin-emu.yml b/Flatpak/org.DolphinEmu.dolphin-emu.yml index 7afef2504d..a1266b5df5 100644 --- a/Flatpak/org.DolphinEmu.dolphin-emu.yml +++ b/Flatpak/org.DolphinEmu.dolphin-emu.yml @@ -47,6 +47,9 @@ modules: url: https://github.com/Unrud/xdg-screensaver-shim/archive/0.0.2.tar.gz sha256: 0ed2a69fe6ee6cbffd2fe16f85116db737f17fb1e79bfb812d893cf15c728399 + # build the vendored SDL2 from Externals until the runtime gets 2.30.9 + - SDL2/SDL2.json + - name: dolphin-emu buildsystem: cmake-ninja config-opts: From 82c3a844c421cf94a9ae0478a41fd67e7bf55ca1 Mon Sep 17 00:00:00 2001 From: vaguerant Date: Tue, 19 Nov 2024 23:24:22 +1100 Subject: [PATCH 21/40] fix SUKP01 metafortress bypass --- Data/Sys/GameSettings/SUKP01.ini | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Data/Sys/GameSettings/SUKP01.ini b/Data/Sys/GameSettings/SUKP01.ini index 607777a654..917450f19c 100644 --- a/Data/Sys/GameSettings/SUKP01.ini +++ b/Data/Sys/GameSettings/SUKP01.ini @@ -3,7 +3,7 @@ [OnFrame] $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x80176000:dword:0x48000084 -0x80176728:dword:0x60000000 +0x80176730:dword:0x60000000 0x80176B6C:dword:0x60000000 0x80176E88:dword:0x48000090 0x80177160:dword:0x60000000 @@ -48,7 +48,7 @@ $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x80181974:dword:0x60000000 0x80181930:dword:0x48000024 0x80181D94:dword:0x60000000 -0x80181FD0:dword:0x48000090 +0x80181FE0:dword:0x48000090 0x801821BC:dword:0x60000000 0x80182374:dword:0x4800009C 0x8018250C:dword:0x60000000 @@ -198,7 +198,7 @@ $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x80210090:dword:0x60000000 0x80210A10:dword:0x60000000 0x80210D84:dword:0x48000090 -0x802113B8:dword:0x48000094 +0x802115B0:dword:0x48000094 0x80211ABC:dword:0x4800008C 0x80211F34:dword:0x60000000 0x80216AB0:dword:0x60000000 @@ -1141,7 +1141,7 @@ $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x8069ED00:dword:0x48000088 0x8069EEB4:dword:0x60000000 0x8069F38C:dword:0x60000000 -0x8069FC4C:dword:0x60000000 +0x8069FC50:dword:0x60000000 0x8069FE88:dword:0x48000090 0x806A0C74:dword:0x7C600050 0x806A0DA8:dword:0x60000000 @@ -1206,12 +1206,12 @@ $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x806C3EE0:dword:0x48000088 0x806C421C:dword:0x48000084 0x806C4750:dword:0x4800009C -0x806C4D04:dword:0x48000090 +0x806C4CE8:dword:0x48000090 0x806C54E8:dword:0x4800008C 0x806C7C48:dword:0x48000090 0x806C8088:dword:0x60000000 0x806C89A8:dword:0x48000094 -0x806C8F34:dword:0x60000000 +0x806C8F5C:dword:0x60000000 0x806CA060:dword:0x7C800050 0x806CAC60:dword:0x60000000 0x806CADE4:dword:0x60000000 @@ -1233,7 +1233,7 @@ $Bypass Metafortress [crediar, ported by RedStoneMatt] 0x806CE150:dword:0x48000088 0x806CE7F8:dword:0x60000000 0x806CEC18:dword:0x48000094 -0x806CDCB4:dword:0x48000088 +0x806CEDF0:dword:0x48000088 0x806CFD04:dword:0x60000000 0x806CFEE8:dword:0x48000090 0x806D0CD4:dword:0x60000000 From ea93b65d217db7956efc1d58c2477afd7f3fbe4f Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sun, 24 Nov 2024 18:59:18 -0600 Subject: [PATCH 22/40] DolphinQt: Make mapping window spinboxes horizontally expanding. --- Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp index 96a5040704..ae4095a82c 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.cpp @@ -228,6 +228,8 @@ void MappingWidget::AddSettingWidgets(QFormLayout* layout, ControllerEmu::Contro const auto hbox = new QHBoxLayout; hbox->addWidget(setting_widget); + setting_widget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + hbox->addWidget(CreateSettingAdvancedMappingButton(*setting)); layout->addRow(tr(setting->GetUIName()), hbox); From 26f2e5f022074fd991902012c4114064649f92b0 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 25 Nov 2024 14:38:32 -0600 Subject: [PATCH 23/40] DolphinQt: Make mapping indicators compatible with a variable update frequency. --- .../Config/Mapping/MappingIndicator.cpp | 131 +++++++++++------- .../Config/Mapping/MappingIndicator.h | 20 ++- 2 files changed, 97 insertions(+), 54 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp index 6a7fbb6ad9..cc38a9382b 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp @@ -5,7 +5,6 @@ #include #include -#include #include @@ -19,12 +18,10 @@ #include "Core/HW/WiimoteEmu/Camera.h" -#include "InputCommon/ControlReference/ControlReference.h" #include "InputCommon/ControllerEmu/Control/Control.h" #include "InputCommon/ControllerEmu/ControlGroup/Cursor.h" #include "InputCommon/ControllerEmu/ControlGroup/Force.h" #include "InputCommon/ControllerEmu/ControlGroup/MixedTriggers.h" -#include "InputCommon/ControllerEmu/Setting/NumericSetting.h" #include "InputCommon/ControllerInterface/CoreDevice.h" #include "DolphinQt/Config/Mapping/MappingWidget.h" @@ -289,7 +286,14 @@ void GenerateFibonacciSphere(int point_count, F&& callback) void MappingIndicator::paintEvent(QPaintEvent*) { + constexpr float max_elapsed_seconds = 0.1f; + + const auto now = Clock::now(); + const float elapsed_seconds = std::chrono::duration_cast(now - m_last_update).count(); + m_last_update = now; + const auto lock = ControllerEmu::EmulatedController::GetStateLock(); + Update(std::min(elapsed_seconds, max_elapsed_seconds)); Draw(); } @@ -321,7 +325,7 @@ void SquareIndicator::TransformPainter(QPainter& p) p.setRenderHint(QPainter::Antialiasing, true); p.setRenderHint(QPainter::SmoothPixmapTransform, true); - p.translate(width() / 2, height() / 2); + p.translate(width() / 2.0, height() / 2.0); const auto scale = GetContentsScale(); p.scale(scale, scale); } @@ -413,10 +417,13 @@ void AnalogStickIndicator::Draw() (adj_coord.x || adj_coord.y) ? std::make_optional(adj_coord) : std::nullopt); } +void TiltIndicator::Update(float elapsed_seconds) +{ + WiimoteEmu::EmulateTilt(&m_motion_state, &m_group, elapsed_seconds); +} + void TiltIndicator::Draw() { - WiimoteEmu::EmulateTilt(&m_motion_state, &m_group, 1.f / INDICATOR_UPDATE_FREQ); - auto adj_coord = Common::DVec2{-m_motion_state.angle.y, m_motion_state.angle.x} / MathUtil::PI; // Angle values after dividing by pi. @@ -564,28 +571,54 @@ void SwingIndicator::DrawUnderGate(QPainter& p) } } +void SwingIndicator::Update(float elapsed_seconds) +{ + WiimoteEmu::EmulateSwing(&m_motion_state, &m_swing_group, elapsed_seconds); +} + void SwingIndicator::Draw() { - auto& force = m_swing_group; - WiimoteEmu::EmulateSwing(&m_motion_state, &force, 1.f / INDICATOR_UPDATE_FREQ); - - DrawReshapableInput(force, SWING_GATE_COLOR, + DrawReshapableInput(m_swing_group, SWING_GATE_COLOR, Common::DVec2{-m_motion_state.position.x, m_motion_state.position.z}); } +void ShakeMappingIndicator::Update(float elapsed_seconds) +{ + WiimoteEmu::EmulateShake(&m_motion_state, &m_shake_group, elapsed_seconds); + + for (auto& sample : m_position_samples) + sample.age += elapsed_seconds; + + m_position_samples.erase( + std::ranges::find_if(m_position_samples, + [](const ShakeSample& sample) { return sample.age > 1.f; }), + m_position_samples.end()); + + constexpr float MAX_DISTANCE = 0.5f; + + m_position_samples.push_front(ShakeSample{m_motion_state.position / MAX_DISTANCE}); + + const bool any_non_zero_samples = + std::any_of(m_position_samples.begin(), m_position_samples.end(), + [](const ShakeSample& s) { return s.state.LengthSquared() != 0.0; }); + + // Only start moving the line if there's non-zero data. + if (m_grid_line_position || any_non_zero_samples) + { + m_grid_line_position += elapsed_seconds; + + if (m_grid_line_position > 1.f) + { + if (any_non_zero_samples) + m_grid_line_position = std::fmod(m_grid_line_position, 1.f); + else + m_grid_line_position = 0; + } + } +} + void ShakeMappingIndicator::Draw() { - constexpr std::size_t HISTORY_COUNT = INDICATOR_UPDATE_FREQ; - - WiimoteEmu::EmulateShake(&m_motion_state, &m_shake_group, 1.f / INDICATOR_UPDATE_FREQ); - - constexpr float MAX_DISTANCE = 0.5f; - - m_position_samples.push_front(m_motion_state.position / MAX_DISTANCE); - // This also holds the current state so +1. - if (m_position_samples.size() > HISTORY_COUNT + 1) - m_position_samples.pop_back(); - QPainter p(this); DrawBoundingBox(p); TransformPainter(p); @@ -610,15 +643,7 @@ void ShakeMappingIndicator::Draw() p.drawPoint(QPointF{-0.5 + c * 0.5, raw_coord.data[c]}); } - // Grid line. - if (m_grid_line_position || - std::any_of(m_position_samples.begin(), m_position_samples.end(), - [](const Common::Vec3& v) { return v.LengthSquared() != 0.0; })) - { - // Only start moving the line if there's non-zero data. - m_grid_line_position = (m_grid_line_position + 1) % HISTORY_COUNT; - } - const double grid_line_x = 1.0 - m_grid_line_position * 2.0 / HISTORY_COUNT; + const double grid_line_x = 1.0 - m_grid_line_position * 2.0; p.setPen(QPen(GetRawInputColor(), 0)); p.drawLine(QPointF{grid_line_x, -1.0}, QPointF{grid_line_x, 1.0}); @@ -629,12 +654,8 @@ void ShakeMappingIndicator::Draw() { QPolygonF polyline; - int i = 0; for (auto& sample : m_position_samples) - { - polyline.append(QPointF{1.0 - i * 2.0 / HISTORY_COUNT, sample.data[c]}); - ++i; - } + polyline.append(QPointF{1.0 - sample.age * 2.0, sample.state.data[c]}); p.setPen(QPen(component_colors[c], 0)); p.drawPolyline(polyline); @@ -692,7 +713,7 @@ void AccelerometerMappingIndicator::Draw() p.setBrush(Qt::NoBrush); p.resetTransform(); - p.translate(width() / 2, height() / 2); + p.translate(width() / 2.0, height() / 2.0); // Red dot upright target. p.setPen(GetAdjustedInputColor()); @@ -717,6 +738,28 @@ void AccelerometerMappingIndicator::Draw() fmt::format("{:.2f} g", state.Length() / WiimoteEmu::GRAVITY_ACCELERATION))); } +void GyroMappingIndicator::Update(float elapsed_seconds) +{ + const auto gyro_state = m_gyro_group.GetState(); + const auto angular_velocity = gyro_state.value_or(Common::Vec3{}); + m_state *= WiimoteEmu::GetRotationFromGyroscope(angular_velocity * Common::Vec3(-1, +1, -1) * + elapsed_seconds); + m_state = m_state.Normalized(); + + // Reset orientation when stable for a bit: + constexpr float STABLE_RESET_SECONDS = 1.f; + // Consider device stable when data (with deadzone applied) is zero. + const bool is_stable = !angular_velocity.LengthSquared(); + + if (!is_stable) + m_stable_time = 0; + else if (m_stable_time < STABLE_RESET_SECONDS) + m_stable_time += elapsed_seconds; + + if (m_stable_time >= STABLE_RESET_SECONDS) + m_state = Common::Quaternion::Identity(); +} + void GyroMappingIndicator::Draw() { const auto gyro_state = m_gyro_group.GetState(); @@ -725,23 +768,9 @@ void GyroMappingIndicator::Draw() const auto jitter = raw_gyro_state - m_previous_velocity; m_previous_velocity = raw_gyro_state; - m_state *= WiimoteEmu::GetRotationFromGyroscope(angular_velocity * Common::Vec3(-1, +1, -1) / - INDICATOR_UPDATE_FREQ); - m_state = m_state.Normalized(); - - // Reset orientation when stable for a bit: - constexpr u32 STABLE_RESET_STEPS = INDICATOR_UPDATE_FREQ; // Consider device stable when data (with deadzone applied) is zero. const bool is_stable = !angular_velocity.LengthSquared(); - if (!is_stable) - m_stable_steps = 0; - else if (m_stable_steps != STABLE_RESET_STEPS) - ++m_stable_steps; - - if (STABLE_RESET_STEPS == m_stable_steps) - m_state = Common::Quaternion::Identity(); - // Use an empty rotation matrix if gyroscope data is not present. const auto rotation = (gyro_state.has_value() ? Common::Matrix33::FromQuaternion(m_state) : Common::Matrix33{}); @@ -814,7 +843,7 @@ void GyroMappingIndicator::Draw() p.setBrush(Qt::NoBrush); p.resetTransform(); - p.translate(width() / 2, height() / 2); + p.translate(width() / 2.0, height() / 2.0); // Red dot upright target. p.setPen(GetAdjustedInputColor()); diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h index 448a86b24a..f571d5072d 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h +++ b/Source/Core/DolphinQt/Config/Mapping/MappingIndicator.h @@ -45,9 +45,12 @@ public: protected: virtual void Draw() {} + virtual void Update(float elapsed_seconds) {} private: void paintEvent(QPaintEvent*) override; + + Clock::time_point m_last_update = Clock::now(); }; class SquareIndicator : public MappingIndicator @@ -98,6 +101,7 @@ public: private: void Draw() override; + void Update(float elapsed_seconds) override; ControllerEmu::Tilt& m_group; WiimoteEmu::MotionState m_motion_state{}; @@ -132,6 +136,7 @@ public: private: void Draw() override; + void Update(float elapsed_seconds) override; void DrawUnderGate(QPainter& p) override; @@ -146,11 +151,19 @@ public: private: void Draw() override; + void Update(float elapsed_seconds) override; ControllerEmu::Shake& m_shake_group; WiimoteEmu::MotionState m_motion_state{}; - std::deque m_position_samples; - int m_grid_line_position = 0; + + struct ShakeSample + { + ControllerEmu::Shake::StateData state; + float age = 0.f; + }; + + std::deque m_position_samples; + float m_grid_line_position = 0; }; class AccelerometerMappingIndicator : public SquareIndicator @@ -174,11 +187,12 @@ public: private: void Draw() override; + void Update(float elapsed_seconds) override; ControllerEmu::IMUGyroscope& m_gyro_group; Common::Quaternion m_state = Common::Quaternion::Identity(); Common::Vec3 m_previous_velocity = {}; - u32 m_stable_steps = 0; + float m_stable_time = 0; }; class IRPassthroughMappingIndicator : public SquareIndicator From e7a8e2fca172cadbe10ae875b42ac456c05c84ec Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 25 Nov 2024 14:58:48 -0600 Subject: [PATCH 24/40] DolphinQt: Update mapping indicators at screen refresh rate. --- Source/Core/DolphinQt/Config/Mapping/MappingWidget.h | 2 -- Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp | 9 ++++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.h b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.h index 0ec5227f34..ee05834736 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWidget.h +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWidget.h @@ -27,8 +27,6 @@ class NumericSettingBase; enum class SettingVisibility; } // namespace ControllerEmu -constexpr int INDICATOR_UPDATE_FREQ = 30; - class MappingWidget : public QWidget { Q_OBJECT diff --git a/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp b/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp index a41920e2c1..d5af344c30 100644 --- a/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/MappingWindow.cpp @@ -10,12 +10,12 @@ #include #include #include +#include #include #include #include #include -#include "Core/Core.h" #include "Core/HotkeyManager.h" #include "Common/CommonPaths.h" @@ -73,12 +73,15 @@ MappingWindow::MappingWindow(QWidget* parent, Type type, int port_num) SetMappingType(type); const auto timer = new QTimer(this); - connect(timer, &QTimer::timeout, this, [this] { + connect(timer, &QTimer::timeout, this, [this, timer] { + const double refresh_rate = screen()->refreshRate(); + timer->setInterval(1000 / refresh_rate); + const auto lock = GetController()->GetStateLock(); emit Update(); }); - timer->start(1000 / INDICATOR_UPDATE_FREQ); + timer->start(100); const auto lock = GetController()->GetStateLock(); emit ConfigChanged(); From a9b1c1f5f85639b13177141feec8b3072ae63cac Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Tue, 26 Nov 2024 11:58:35 -0800 Subject: [PATCH 25/40] IRWidget: Move header constants into class This apparently didn't compile on macOS six years ago before c++20, but it should be fine by now. While I'm at it, make the constants upper case per convention. --- Source/Core/DolphinQt/TAS/IRWidget.cpp | 20 +++++++++---------- Source/Core/DolphinQt/TAS/IRWidget.h | 11 +++++----- .../Core/DolphinQt/TAS/WiiTASInputWindow.cpp | 14 ++++++------- 3 files changed, 22 insertions(+), 23 deletions(-) diff --git a/Source/Core/DolphinQt/TAS/IRWidget.cpp b/Source/Core/DolphinQt/TAS/IRWidget.cpp index 1efa6748c5..e9f4033672 100644 --- a/Source/Core/DolphinQt/TAS/IRWidget.cpp +++ b/Source/Core/DolphinQt/TAS/IRWidget.cpp @@ -25,14 +25,14 @@ IRWidget::IRWidget(QWidget* parent) : QWidget(parent) void IRWidget::SetX(u16 x) { - m_x = std::min(ir_max_x, x); + m_x = std::min(IR_MAX_X, x); update(); } void IRWidget::SetY(u16 y) { - m_y = std::min(ir_max_y, y); + m_y = std::min(IR_MAX_Y, y); update(); } @@ -54,8 +54,8 @@ void IRWidget::paintEvent(QPaintEvent* event) painter.drawLine(PADDING + w / 2, PADDING, PADDING + w / 2, PADDING + h); // convert from value space to widget space - u16 x = PADDING + ((m_x * w) / ir_max_x); - u16 y = PADDING + (h - (m_y * h) / ir_max_y); + u16 x = PADDING + ((m_x * w) / IR_MAX_X); + u16 y = PADDING + (h - (m_y * h) / IR_MAX_Y); painter.drawLine(PADDING + w / 2, PADDING + h / 2, x, y); @@ -84,17 +84,17 @@ void IRWidget::handleMouseEvent(QMouseEvent* event) if (event->button() == Qt::RightButton) { - m_x = std::round(ir_max_x / 2.); - m_y = std::round(ir_max_y / 2.); + m_x = std::round(IR_MAX_X / 2.); + m_y = std::round(IR_MAX_Y / 2.); } else { // convert from widget space to value space - int new_x = (event->pos().x() * ir_max_x) / width(); - int new_y = ir_max_y - (event->pos().y() * ir_max_y) / height(); + int new_x = (event->pos().x() * IR_MAX_X) / width(); + int new_y = IR_MAX_Y - (event->pos().y() * IR_MAX_Y) / height(); - m_x = std::max(0, std::min(static_cast(ir_max_x), new_x)); - m_y = std::max(0, std::min(static_cast(ir_max_y), new_y)); + m_x = std::max(0, std::min(static_cast(IR_MAX_X), new_x)); + m_y = std::max(0, std::min(static_cast(IR_MAX_Y), new_y)); } bool changed = false; diff --git a/Source/Core/DolphinQt/TAS/IRWidget.h b/Source/Core/DolphinQt/TAS/IRWidget.h index b5681d852f..f5fc5a9dc5 100644 --- a/Source/Core/DolphinQt/TAS/IRWidget.h +++ b/Source/Core/DolphinQt/TAS/IRWidget.h @@ -13,6 +13,11 @@ class IRWidget : public QWidget public: explicit IRWidget(QWidget* parent); + static constexpr u16 IR_MIN_X = 0; + static constexpr u16 IR_MIN_Y = 0; + static constexpr u16 IR_MAX_X = 1023; + static constexpr u16 IR_MAX_Y = 767; + signals: void ChangedX(u16 x); void ChangedY(u16 y); @@ -32,9 +37,3 @@ private: u16 m_y = 0; bool m_ignore_movement = false; }; - -// Should be part of class but fails to compile on mac os -static const u16 ir_min_x = 0; -static const u16 ir_min_y = 0; -static const u16 ir_max_x = 1023; -static const u16 ir_max_y = 767; diff --git a/Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp b/Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp index 08c3431fd8..76e57036f9 100644 --- a/Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp +++ b/Source/Core/DolphinQt/TAS/WiiTASInputWindow.cpp @@ -51,20 +51,20 @@ WiiTASInputWindow::WiiTASInputWindow(QWidget* parent, int num) : TASInputWindow( ir_x_shortcut_key_sequence.toString(QKeySequence::NativeText), ir_y_shortcut_key_sequence.toString(QKeySequence::NativeText))); - const int ir_x_center = static_cast(std::round(ir_max_x / 2.)); - const int ir_y_center = static_cast(std::round(ir_max_y / 2.)); + const int ir_x_center = static_cast(std::round(IRWidget::IR_MAX_X / 2.)); + const int ir_y_center = static_cast(std::round(IRWidget::IR_MAX_Y / 2.)); auto* x_layout = new QHBoxLayout; m_ir_x_value = CreateSliderValuePair( WiimoteEmu::Wiimote::IR_GROUP, ControllerEmu::ReshapableInput::X_INPUT_OVERRIDE, - &m_wiimote_overrider, x_layout, ir_x_center, ir_x_center, ir_min_x, ir_max_x, - ir_x_shortcut_key_sequence, Qt::Horizontal, m_ir_box); + &m_wiimote_overrider, x_layout, ir_x_center, ir_x_center, IRWidget::IR_MIN_X, + IRWidget::IR_MAX_X, ir_x_shortcut_key_sequence, Qt::Horizontal, m_ir_box); auto* y_layout = new QVBoxLayout; m_ir_y_value = CreateSliderValuePair( WiimoteEmu::Wiimote::IR_GROUP, ControllerEmu::ReshapableInput::Y_INPUT_OVERRIDE, - &m_wiimote_overrider, y_layout, ir_y_center, ir_y_center, ir_min_y, ir_max_y, - ir_y_shortcut_key_sequence, Qt::Vertical, m_ir_box); + &m_wiimote_overrider, y_layout, ir_y_center, ir_y_center, IRWidget::IR_MIN_Y, + IRWidget::IR_MAX_Y, ir_y_shortcut_key_sequence, Qt::Vertical, m_ir_box); m_ir_y_value->setMaximumWidth(60); auto* visual = new IRWidget(this); @@ -76,7 +76,7 @@ WiiTASInputWindow::WiiTASInputWindow(QWidget* parent, int num) : TASInputWindow( connect(visual, &IRWidget::ChangedX, m_ir_x_value, &QSpinBox::setValue); connect(visual, &IRWidget::ChangedY, m_ir_y_value, &QSpinBox::setValue); - auto* visual_ar = new AspectRatioWidget(visual, ir_max_x, ir_max_y); + auto* visual_ar = new AspectRatioWidget(visual, IRWidget::IR_MAX_X, IRWidget::IR_MAX_Y); auto* visual_layout = new QHBoxLayout; visual_layout->addWidget(visual_ar); From 78f3448e279256e36e320c1c2f30b0c5a81172ff Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 25 Jul 2024 08:38:38 -0400 Subject: [PATCH 26/40] Convert FilterApprovedPatches to Template --- Source/Core/Core/AchievementManager.cpp | 103 +++++++++++++++--------- Source/Core/Core/AchievementManager.h | 6 ++ 2 files changed, 71 insertions(+), 38 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 73ace1af34..f4119ca0c3 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -384,10 +384,11 @@ bool AchievementManager::IsHardcoreModeActive() const return rc_client_is_processing_required(m_client); } -void AchievementManager::FilterApprovedPatches(std::vector& patches, - const std::string& game_ini_id) const +template +void AchievementManager::FilterApprovedIni(std::vector& codes, + const std::string& game_ini_id) const { - if (patches.empty()) + if (codes.empty()) { // There's nothing to verify, so let's save ourselves some work return; @@ -398,46 +399,72 @@ void AchievementManager::FilterApprovedPatches(std::vector& if (!IsHardcoreModeActive()) return; + // Approved codes list failed to hash + if (!m_ini_root->is()) + { + codes.clear(); + return; + } + + for (auto& code : codes) + { + if (code.enabled && !CheckApprovedCode(code, game_ini_id)) + code.enabled = false; + } +} + +template +bool AchievementManager::CheckApprovedCode(const T& code, const std::string& game_ini_id) const +{ + if (!IsHardcoreModeActive()) + return true; + + // Approved codes list failed to hash + if (!m_ini_root->is()) + return false; + const bool known_id = m_ini_root->contains(game_ini_id); - auto patch_itr = patches.begin(); - while (patch_itr != patches.end()) + INFO_LOG_FMT(ACHIEVEMENTS, "Verifying code {}", code.name); + + bool verified = false; + + if (known_id) { - INFO_LOG_FMT(ACHIEVEMENTS, "Verifying patch {}", patch_itr->name); + auto digest = GetCodeHash(code); - bool verified = false; - - if (known_id) - { - auto context = Common::SHA1::CreateContext(); - context->Update(Common::BitCastToArray(static_cast(patch_itr->entries.size()))); - for (const auto& entry : patch_itr->entries) - { - context->Update(Common::BitCastToArray(entry.type)); - context->Update(Common::BitCastToArray(entry.address)); - context->Update(Common::BitCastToArray(entry.value)); - context->Update(Common::BitCastToArray(entry.comparand)); - context->Update(Common::BitCastToArray(entry.conditional)); - } - auto digest = context->Finish(); - - verified = m_ini_root->get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); - } - - if (!verified) - { - patch_itr = patches.erase(patch_itr); - OSD::AddMessage( - fmt::format("Failed to verify patch {} from file {}.", patch_itr->name, game_ini_id), - OSD::Duration::VERY_LONG, OSD::Color::RED); - OSD::AddMessage("Disable hardcore mode to enable this patch.", OSD::Duration::VERY_LONG, - OSD::Color::RED); - } - else - { - patch_itr++; - } + verified = m_ini_root->get(game_ini_id).contains(Common::SHA1::DigestToString(digest)); } + + if (!verified) + { + OSD::AddMessage(fmt::format("Failed to verify code {} from file {}.", code.name, game_ini_id), + OSD::Duration::VERY_LONG, OSD::Color::RED); + OSD::AddMessage("Disable hardcore mode to enable this code.", OSD::Duration::VERY_LONG, + OSD::Color::RED); + } + return verified; +} + +Common::SHA1::Digest AchievementManager::GetCodeHash(const PatchEngine::Patch& patch) const +{ + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(patch.entries.size()))); + for (const auto& entry : patch.entries) + { + context->Update(Common::BitCastToArray(entry.type)); + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.value)); + context->Update(Common::BitCastToArray(entry.comparand)); + context->Update(Common::BitCastToArray(entry.conditional)); + } + return context->Finish(); +} + +void AchievementManager::FilterApprovedPatches(std::vector& patches, + const std::string& game_ini_id) const +{ + FilterApprovedIni(patches, game_ini_id); } void AchievementManager::SetSpectatorMode() diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 174b4abce1..77859b17d1 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -181,6 +181,12 @@ private: void* userdata); void DisplayWelcomeMessage(); + template + void FilterApprovedIni(std::vector& codes, const std::string& game_ini_id) const; + template + bool CheckApprovedCode(const T& code, const std::string& game_ini_id) const; + Common::SHA1::Digest GetCodeHash(const PatchEngine::Patch& patch) const; + static void LeaderboardEntriesCallback(int result, const char* error_message, rc_client_leaderboard_entry_list_t* list, rc_client_t* client, void* userdata); From 13a1956cfa4618e8745edb9c9815658bf1a199c2 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 25 Jul 2024 08:39:24 -0400 Subject: [PATCH 27/40] Add Gecko Code Whitelist Approval --- Source/Core/Core/AchievementManager.cpp | 25 +++++++++++++++++++ Source/Core/Core/AchievementManager.h | 17 +++++++++++++ Source/Core/Core/GeckoCode.cpp | 9 +++++-- Source/Core/Core/GeckoCode.h | 2 +- Source/Core/Core/NetPlayServer.cpp | 13 +++++++--- Source/Core/Core/PatchEngine.cpp | 2 +- .../Core/DolphinQt/Config/GeckoCodeWidget.cpp | 2 +- 7 files changed, 61 insertions(+), 9 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index f4119ca0c3..1126411228 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -28,6 +28,7 @@ #include "Core/Config/FreeLookSettings.h" #include "Core/Config/MainSettings.h" #include "Core/Core.h" +#include "Core/GeckoCode.h" #include "Core/HW/Memmap.h" #include "Core/HW/VideoInterface.h" #include "Core/PatchEngine.h" @@ -461,12 +462,36 @@ Common::SHA1::Digest AchievementManager::GetCodeHash(const PatchEngine::Patch& p return context->Finish(); } +Common::SHA1::Digest AchievementManager::GetCodeHash(const Gecko::GeckoCode& code) const +{ + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(code.codes.size()))); + for (const auto& entry : code.codes) + { + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.data)); + } + return context->Finish(); +} + void AchievementManager::FilterApprovedPatches(std::vector& patches, const std::string& game_ini_id) const { FilterApprovedIni(patches, game_ini_id); } +void AchievementManager::FilterApprovedGeckoCodes(std::vector& codes, + const std::string& game_ini_id) const +{ + FilterApprovedIni(codes, game_ini_id); +} + +bool AchievementManager::CheckApprovedGeckoCode(const Gecko::GeckoCode& code, + const std::string& game_ini_id) const +{ + return CheckApprovedCode(code, game_ini_id); +} + void AchievementManager::SetSpectatorMode() { rc_client_set_spectator_mode_enabled(m_client, Config::Get(Config::RA_SPECTATOR_ENABLED)); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 77859b17d1..5160d23327 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -45,6 +45,11 @@ namespace PatchEngine struct Patch; } // namespace PatchEngine +namespace Gecko +{ +class GeckoCode; +} // namespace Gecko + class AchievementManager { public: @@ -125,8 +130,13 @@ public: void SetHardcoreMode(); bool IsHardcoreModeActive() const; void SetGameIniId(const std::string& game_ini_id) { m_game_ini_id = game_ini_id; } + void FilterApprovedPatches(std::vector& patches, const std::string& game_ini_id) const; + void FilterApprovedGeckoCodes(std::vector& codes, + const std::string& game_ini_id) const; + bool CheckApprovedGeckoCode(const Gecko::GeckoCode& code, const std::string& game_ini_id) const; + void SetSpectatorMode(); std::string_view GetPlayerDisplayName() const; u32 GetPlayerScore() const; @@ -186,6 +196,7 @@ private: template bool CheckApprovedCode(const T& code, const std::string& game_ini_id) const; Common::SHA1::Digest GetCodeHash(const PatchEngine::Patch& patch) const; + Common::SHA1::Digest GetCodeHash(const Gecko::GeckoCode& code) const; static void LeaderboardEntriesCallback(int result, const char* error_message, rc_client_leaderboard_entry_list_t* list, @@ -271,6 +282,12 @@ public: constexpr bool IsHardcoreModeActive() { return false; } + constexpr bool CheckApprovedGeckoCode(const Gecko::GeckoCode& code, + const std::string& game_ini_id) + { + return true; + }; + constexpr void LoadGame(const std::string&, const DiscIO::Volume*) {} constexpr void SetBackgroundExecutionAllowed(bool allowed) {} diff --git a/Source/Core/Core/GeckoCode.cpp b/Source/Core/Core/GeckoCode.cpp index 92f389545d..0d43c5a507 100644 --- a/Source/Core/Core/GeckoCode.cpp +++ b/Source/Core/Core/GeckoCode.cpp @@ -15,6 +15,7 @@ #include "Common/Config/Config.h" #include "Common/FileUtil.h" +#include "Core/AchievementManager.h" #include "Core/Config/MainSettings.h" #include "Core/Core.h" #include "Core/Host.h" @@ -49,7 +50,7 @@ static std::vector s_active_codes; static std::vector s_synced_codes; static std::mutex s_active_codes_lock; -void SetActiveCodes(std::span gcodes) +void SetActiveCodes(std::span gcodes, const std::string& game_id) { std::lock_guard lk(s_active_codes_lock); @@ -57,8 +58,12 @@ void SetActiveCodes(std::span gcodes) if (Config::AreCheatsEnabled()) { s_active_codes.reserve(gcodes.size()); + std::copy_if(gcodes.begin(), gcodes.end(), std::back_inserter(s_active_codes), - [](const GeckoCode& code) { return code.enabled; }); + [&game_id](const GeckoCode& code) { + return code.enabled && + AchievementManager::GetInstance().CheckApprovedGeckoCode(code, game_id); + }); } s_active_codes.shrink_to_fit(); diff --git a/Source/Core/Core/GeckoCode.h b/Source/Core/Core/GeckoCode.h index 3600d1b9ba..2931ed3641 100644 --- a/Source/Core/Core/GeckoCode.h +++ b/Source/Core/Core/GeckoCode.h @@ -60,7 +60,7 @@ constexpr u32 HLE_TRAMPOLINE_ADDRESS = INSTALLER_END_ADDRESS - 4; // preserve the emulation performance. constexpr u32 MAGIC_GAMEID = 0xD01F1BAD; -void SetActiveCodes(std::span gcodes); +void SetActiveCodes(std::span gcodes, const std::string& game_id); void SetSyncedCodesAsActive(); void UpdateSyncedCodes(std::span gcodes); std::vector SetAndReturnActiveCodes(std::span gcodes); diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index d4a55cf83e..3578893672 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -2070,13 +2070,18 @@ bool NetPlayServer::SyncCodes() } // Sync Gecko Codes { + std::vector codes = Gecko::LoadCodes(globalIni, localIni); + +#ifdef USE_RETRO_ACHIEVEMENTS + AchievementManager::GetInstance().FilterApprovedGeckoCodes(codes, game_id); +#endif // USE_RETRO_ACHIEVEMENTS + // Create a Gecko Code Vector with just the active codes - std::vector s_active_codes = - Gecko::SetAndReturnActiveCodes(Gecko::LoadCodes(globalIni, localIni)); + std::vector active_codes = Gecko::SetAndReturnActiveCodes(codes); // Determine Codelist Size u16 codelines = 0; - for (const Gecko::GeckoCode& active_code : s_active_codes) + for (const Gecko::GeckoCode& active_code : active_codes) { INFO_LOG_FMT(NETPLAY, "Indexing {}", active_code.name); for (const Gecko::GeckoCode::Code& code : active_code.codes) @@ -2104,7 +2109,7 @@ bool NetPlayServer::SyncCodes() pac << MessageID::SyncCodes; pac << SyncCodeID::GeckoData; // Iterate through the active code vector and send each codeline - for (const Gecko::GeckoCode& active_code : s_active_codes) + for (const Gecko::GeckoCode& active_code : active_codes) { INFO_LOG_FMT(NETPLAY, "Sending {}", active_code.name); for (const Gecko::GeckoCode::Code& code : active_code.codes) diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index 9880977710..4dc58a6761 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -197,7 +197,7 @@ void LoadPatches() } else { - Gecko::SetActiveCodes(Gecko::LoadCodes(globalIni, localIni)); + Gecko::SetActiveCodes(Gecko::LoadCodes(globalIni, localIni), sconfig.GetGameID()); ActionReplay::LoadAndApplyCodes(globalIni, localIni); } } diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index 3d2bd020e4..97a93051f5 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -202,7 +202,7 @@ void GeckoCodeWidget::OnItemChanged(QListWidgetItem* item) m_gecko_codes[index].enabled = (item->checkState() == Qt::Checked); if (!m_restart_required) - Gecko::SetActiveCodes(m_gecko_codes); + Gecko::SetActiveCodes(m_gecko_codes, m_game_id); SaveCodes(); } From 3c255b55e8b9d9f047b7a58d2dfd3680a03071b3 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Sun, 8 Sep 2024 08:44:30 -0400 Subject: [PATCH 28/40] Add AR Code Whitelist Approval --- Source/Core/Core/AchievementManager.cpp | 25 +++++++++++++++++++ Source/Core/Core/AchievementManager.h | 15 +++++++++++ Source/Core/Core/ActionReplay.cpp | 13 +++++++--- Source/Core/Core/ActionReplay.h | 5 ++-- Source/Core/Core/NetPlayServer.cpp | 11 +++++--- Source/Core/Core/PatchEngine.cpp | 4 +-- Source/Core/DolphinQt/Config/ARCodeWidget.cpp | 2 +- 7 files changed, 62 insertions(+), 13 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 1126411228..e5a6d6c32c 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -24,6 +24,7 @@ #include "Common/ScopeGuard.h" #include "Common/Version.h" #include "Common/WorkQueueThread.h" +#include "Core/ActionReplay.h" #include "Core/Config/AchievementSettings.h" #include "Core/Config/FreeLookSettings.h" #include "Core/Config/MainSettings.h" @@ -474,6 +475,18 @@ Common::SHA1::Digest AchievementManager::GetCodeHash(const Gecko::GeckoCode& cod return context->Finish(); } +Common::SHA1::Digest AchievementManager::GetCodeHash(const ActionReplay::ARCode& code) const +{ + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(code.ops.size()))); + for (const auto& entry : code.ops) + { + context->Update(Common::BitCastToArray(entry.cmd_addr)); + context->Update(Common::BitCastToArray(entry.value)); + } + return context->Finish(); +} + void AchievementManager::FilterApprovedPatches(std::vector& patches, const std::string& game_ini_id) const { @@ -486,12 +499,24 @@ void AchievementManager::FilterApprovedGeckoCodes(std::vector& FilterApprovedIni(codes, game_ini_id); } +void AchievementManager::FilterApprovedARCodes(std::vector& codes, + const std::string& game_ini_id) const +{ + FilterApprovedIni(codes, game_ini_id); +} + bool AchievementManager::CheckApprovedGeckoCode(const Gecko::GeckoCode& code, const std::string& game_ini_id) const { return CheckApprovedCode(code, game_ini_id); } +bool AchievementManager::CheckApprovedARCode(const ActionReplay::ARCode& code, + const std::string& game_ini_id) const +{ + return CheckApprovedCode(code, game_ini_id); +} + void AchievementManager::SetSpectatorMode() { rc_client_set_spectator_mode_enabled(m_client, Config::Get(Config::RA_SPECTATOR_ENABLED)); diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 5160d23327..2cacc2a6fc 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -50,6 +50,11 @@ namespace Gecko class GeckoCode; } // namespace Gecko +namespace ActionReplay +{ +struct ARCode; +} // namespace ActionReplay + class AchievementManager { public: @@ -135,7 +140,10 @@ public: const std::string& game_ini_id) const; void FilterApprovedGeckoCodes(std::vector& codes, const std::string& game_ini_id) const; + void FilterApprovedARCodes(std::vector& codes, + const std::string& game_ini_id) const; bool CheckApprovedGeckoCode(const Gecko::GeckoCode& code, const std::string& game_ini_id) const; + bool CheckApprovedARCode(const ActionReplay::ARCode& code, const std::string& game_ini_id) const; void SetSpectatorMode(); std::string_view GetPlayerDisplayName() const; @@ -197,6 +205,7 @@ private: bool CheckApprovedCode(const T& code, const std::string& game_ini_id) const; Common::SHA1::Digest GetCodeHash(const PatchEngine::Patch& patch) const; Common::SHA1::Digest GetCodeHash(const Gecko::GeckoCode& code) const; + Common::SHA1::Digest GetCodeHash(const ActionReplay::ARCode& code) const; static void LeaderboardEntriesCallback(int result, const char* error_message, rc_client_leaderboard_entry_list_t* list, @@ -288,6 +297,12 @@ public: return true; }; + constexpr bool CheckApprovedARCode(const ActionReplay::ARCode& code, + const std::string& game_ini_id) + { + return true; + }; + constexpr void LoadGame(const std::string&, const DiscIO::Volume*) {} constexpr void SetBackgroundExecutionAllowed(bool allowed) {} diff --git a/Source/Core/Core/ActionReplay.cpp b/Source/Core/Core/ActionReplay.cpp index 3052f06dec..d3171cdd25 100644 --- a/Source/Core/Core/ActionReplay.cpp +++ b/Source/Core/Core/ActionReplay.cpp @@ -39,6 +39,7 @@ #include "Common/MsgHandler.h" #include "Core/ARDecrypt.h" +#include "Core/AchievementManager.h" #include "Core/CheatCodes.h" #include "Core/Config/MainSettings.h" #include "Core/PowerPC/MMU.h" @@ -112,7 +113,7 @@ struct ARAddr // ---------------------- // AR Remote Functions -void ApplyCodes(std::span codes) +void ApplyCodes(std::span codes, const std::string& game_id) { if (!Config::AreCheatsEnabled()) return; @@ -121,7 +122,10 @@ void ApplyCodes(std::span codes) s_disable_logging = false; s_active_codes.clear(); std::copy_if(codes.begin(), codes.end(), std::back_inserter(s_active_codes), - [](const ARCode& code) { return code.enabled; }); + [&game_id](const ARCode& code) { + return code.enabled && + AchievementManager::GetInstance().CheckApprovedARCode(code, game_id); + }); s_active_codes.shrink_to_fit(); } @@ -169,9 +173,10 @@ void AddCode(ARCode code) } } -void LoadAndApplyCodes(const Common::IniFile& global_ini, const Common::IniFile& local_ini) +void LoadAndApplyCodes(const Common::IniFile& global_ini, const Common::IniFile& local_ini, + const std::string& game_id) { - ApplyCodes(LoadCodes(global_ini, local_ini)); + ApplyCodes(LoadCodes(global_ini, local_ini), game_id); } // Parses the Action Replay section of a game ini file. diff --git a/Source/Core/Core/ActionReplay.h b/Source/Core/Core/ActionReplay.h index ee2cb8b485..1cfbb0a1fe 100644 --- a/Source/Core/Core/ActionReplay.h +++ b/Source/Core/Core/ActionReplay.h @@ -45,12 +45,13 @@ struct ARCode void RunAllActive(const Core::CPUThreadGuard& cpu_guard); -void ApplyCodes(std::span codes); +void ApplyCodes(std::span codes, const std::string& game_id); void SetSyncedCodesAsActive(); void UpdateSyncedCodes(std::span codes); std::vector ApplyAndReturnCodes(std::span codes); void AddCode(ARCode new_code); -void LoadAndApplyCodes(const Common::IniFile& global_ini, const Common::IniFile& local_ini); +void LoadAndApplyCodes(const Common::IniFile& global_ini, const Common::IniFile& local_ini, + const std::string& game_id); std::vector LoadCodes(const Common::IniFile& global_ini, const Common::IniFile& local_ini); void SaveCodes(Common::IniFile* local_ini, std::span codes); diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index 3578893672..ae88ba3d82 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -2125,13 +2125,16 @@ bool NetPlayServer::SyncCodes() // Sync AR Codes { + std::vector codes = ActionReplay::LoadCodes(globalIni, localIni); +#ifdef USE_RETRO_ACHIEVEMENTS + AchievementManager::GetInstance().FilterApprovedARCodes(codes, game_id); +#endif // USE_RETRO_ACHIEVEMENTS // Create an AR Code Vector with just the active codes - std::vector s_active_codes = - ActionReplay::ApplyAndReturnCodes(ActionReplay::LoadCodes(globalIni, localIni)); + std::vector active_codes = ActionReplay::ApplyAndReturnCodes(codes); // Determine Codelist Size u16 codelines = 0; - for (const ActionReplay::ARCode& active_code : s_active_codes) + for (const ActionReplay::ARCode& active_code : active_codes) { INFO_LOG_FMT(NETPLAY, "Indexing {}", active_code.name); for (const ActionReplay::AREntry& op : active_code.ops) @@ -2159,7 +2162,7 @@ bool NetPlayServer::SyncCodes() pac << MessageID::SyncCodes; pac << SyncCodeID::ARData; // Iterate through the active code vector and send each codeline - for (const ActionReplay::ARCode& active_code : s_active_codes) + for (const ActionReplay::ARCode& active_code : active_codes) { INFO_LOG_FMT(NETPLAY, "Sending {}", active_code.name); for (const ActionReplay::AREntry& op : active_code.ops) diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index 4dc58a6761..c601b6b39c 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -198,7 +198,7 @@ void LoadPatches() else { Gecko::SetActiveCodes(Gecko::LoadCodes(globalIni, localIni), sconfig.GetGameID()); - ActionReplay::LoadAndApplyCodes(globalIni, localIni); + ActionReplay::LoadAndApplyCodes(globalIni, localIni, sconfig.GetGameID()); } } @@ -335,7 +335,7 @@ bool ApplyFramePatches(Core::System& system) void Shutdown() { s_on_frame.clear(); - ActionReplay::ApplyCodes({}); + ActionReplay::ApplyCodes({}, ""); Gecko::Shutdown(); } diff --git a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp index e7d44b8fe6..5089e98806 100644 --- a/Source/Core/DolphinQt/Config/ARCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/ARCodeWidget.cpp @@ -115,7 +115,7 @@ void ARCodeWidget::OnItemChanged(QListWidgetItem* item) m_ar_codes[m_code_list->row(item)].enabled = (item->checkState() == Qt::Checked); if (!m_restart_required) - ActionReplay::ApplyCodes(m_ar_codes); + ActionReplay::ApplyCodes(m_ar_codes, m_game_id); UpdateList(); SaveCodes(); From 8447ce99f43324e0a5a1bc3f9774524516348613 Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Tue, 10 Sep 2024 07:47:52 -0400 Subject: [PATCH 29/40] Scale back hardcore code block Now that patches and codes are enabled on a case by case basis, remove patcher code blocking codes entirely in hardcore mode, and reword the warning to be more accurate. --- Source/Core/Core/AchievementManager.cpp | 1 - Source/Core/Core/Config/MainSettings.cpp | 3 +-- Source/Core/Core/PatchEngine.cpp | 3 --- Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp | 2 +- Source/Core/DolphinQt/Settings/GeneralPane.cpp | 3 +-- 5 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index e5a6d6c32c..a40f4aaeb5 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -372,7 +372,6 @@ void AchievementManager::SetHardcoreMode() if (Config::Get(Config::MAIN_EMULATION_SPEED) < 1.0f) Config::SetBaseOrCurrent(Config::MAIN_EMULATION_SPEED, 1.0f); Config::SetBaseOrCurrent(Config::FREE_LOOK_ENABLED, false); - Config::SetBaseOrCurrent(Config::MAIN_ENABLE_CHEATS, false); } } diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index c9cd0333a9..0442347fdd 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -751,8 +751,7 @@ bool IsDefaultGCIFolderPathConfigured(ExpansionInterface::Slot slot) bool AreCheatsEnabled() { - return Config::Get(::Config::MAIN_ENABLE_CHEATS) && - !AchievementManager::GetInstance().IsHardcoreModeActive(); + return Config::Get(::Config::MAIN_ENABLE_CHEATS); } bool IsDebuggingEnabled() diff --git a/Source/Core/Core/PatchEngine.cpp b/Source/Core/Core/PatchEngine.cpp index c601b6b39c..e350f1e063 100644 --- a/Source/Core/Core/PatchEngine.cpp +++ b/Source/Core/Core/PatchEngine.cpp @@ -245,9 +245,6 @@ static void ApplyPatches(const Core::CPUThreadGuard& guard, const std::vector memory_patch_indices) { - if (AchievementManager::GetInstance().IsHardcoreModeActive()) - return; - std::lock_guard lock(s_on_frame_memory_mutex); for (std::size_t index : memory_patch_indices) { diff --git a/Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp b/Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp index eabec9a46e..257a43c366 100644 --- a/Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp +++ b/Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp @@ -35,7 +35,7 @@ void HardcoreWarningWidget::CreateWidgets() auto* icon = new QLabel; icon->setPixmap(warning_icon); - m_text = new QLabel(tr("This feature is disabled in hardcore mode.")); + m_text = new QLabel(tr("Only approved codes will be applied in hardcore mode.")); m_settings_button = new QPushButton(tr("Achievement Settings")); auto* layout = new QHBoxLayout; diff --git a/Source/Core/DolphinQt/Settings/GeneralPane.cpp b/Source/Core/DolphinQt/Settings/GeneralPane.cpp index 06715ceb65..0ab3b263a2 100644 --- a/Source/Core/DolphinQt/Settings/GeneralPane.cpp +++ b/Source/Core/DolphinQt/Settings/GeneralPane.cpp @@ -88,10 +88,9 @@ void GeneralPane::CreateLayout() void GeneralPane::OnEmulationStateChanged(Core::State state) { const bool running = state != Core::State::Uninitialized; - const bool hardcore = AchievementManager::GetInstance().IsHardcoreModeActive(); m_checkbox_dualcore->setEnabled(!running); - m_checkbox_cheats->setEnabled(!running && !hardcore); + m_checkbox_cheats->setEnabled(!running); m_checkbox_override_region_settings->setEnabled(!running); #ifdef USE_DISCORD_PRESENCE m_checkbox_discord_presence->setEnabled(!running); From 6462e794c82dc5b6198f3adcd8c9c30b0b8bb6b5 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Fri, 29 Nov 2024 11:47:18 -0800 Subject: [PATCH 30/40] GameINI: Use Safe Texture Cache for Cabela's Dangerous Hunts 2011 This fixes text on the menu and in-game. --- Data/Sys/GameSettings/SCD.ini | 5 +++++ Data/Sys/GameSettings/SHU.ini | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 Data/Sys/GameSettings/SCD.ini create mode 100644 Data/Sys/GameSettings/SHU.ini diff --git a/Data/Sys/GameSettings/SCD.ini b/Data/Sys/GameSettings/SCD.ini new file mode 100644 index 0000000000..5517e8d211 --- /dev/null +++ b/Data/Sys/GameSettings/SCD.ini @@ -0,0 +1,5 @@ +# SCDE52, SCDP52 - Cabela's Dangerous Hunts 2011 + +[Video_Settings] +SafeTextureCacheColorSamples = 0 + diff --git a/Data/Sys/GameSettings/SHU.ini b/Data/Sys/GameSettings/SHU.ini new file mode 100644 index 0000000000..842f643234 --- /dev/null +++ b/Data/Sys/GameSettings/SHU.ini @@ -0,0 +1,5 @@ +# SHUE52 - Cabela's Dangerous Hunts 2011: Special Edition + +[Video_Settings] +SafeTextureCacheColorSamples = 0 + From 81098433c8433887027804ddb320494a1e4d739d Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 4 Oct 2024 23:00:24 -0400 Subject: [PATCH 31/40] Add Gecko and AR codes to the Patch Allowlist Test --- Source/UnitTests/Core/PatchAllowlistTest.cpp | 107 +++++++++++++++---- 1 file changed, 84 insertions(+), 23 deletions(-) diff --git a/Source/UnitTests/Core/PatchAllowlistTest.cpp b/Source/UnitTests/Core/PatchAllowlistTest.cpp index 779b49791f..9d146a54fa 100644 --- a/Source/UnitTests/Core/PatchAllowlistTest.cpp +++ b/Source/UnitTests/Core/PatchAllowlistTest.cpp @@ -18,7 +18,10 @@ #include "Common/IOFile.h" #include "Common/IniFile.h" #include "Common/JsonUtil.h" +#include "Core/ActionReplay.h" #include "Core/CheatCodes.h" +#include "Core/GeckoCode.h" +#include "Core/GeckoCodeConfig.h" #include "Core/PatchEngine.h" struct GameHashes @@ -27,6 +30,11 @@ struct GameHashes std::map hashes; }; +using AllowList = std::map; + +void CheckHash(const std::string& game_id, GameHashes* game_hashes, const std::string& hash, + const std::string& patch_name); + TEST(PatchAllowlist, VerifyHashes) { // Load allowlist @@ -42,9 +50,9 @@ TEST(PatchAllowlist, VerifyHashes) const auto& list_filepath = fmt::format("{}{}{}", sys_directory, DIR_SEP, APPROVED_LIST_FILENAME); ASSERT_TRUE(JsonFromFile(list_filepath, &json_tree, &error)) << "Failed to open file at " << list_filepath; - // Parse allowlist - Map + // Parse allowlist - Map> ASSERT_TRUE(json_tree.is()); - std::map allow_list; + AllowList allow_list; for (const auto& entry : json_tree.get()) { ASSERT_TRUE(entry.second.is()); @@ -69,12 +77,25 @@ TEST(PatchAllowlist, VerifyHashes) std::string game_id = file.virtualName.substr(0, file.virtualName.find_first_of('.')); std::vector patches; PatchEngine::LoadPatchSection("OnFrame", &patches, ini_file, Common::IniFile()); + std::vector geckos = Gecko::LoadCodes(Common::IniFile(), ini_file); + std::vector action_replays = + ActionReplay::LoadCodes(Common::IniFile(), ini_file); // Filter patches for RetroAchievements approved - ReadEnabledOrDisabled(ini_file, "OnFrame", false, &patches); + for (auto& patch : patches) + patch.enabled = false; ReadEnabledOrDisabled(ini_file, "Patches_RetroAchievements_Verified", true, &patches); + for (auto& code : geckos) + code.enabled = false; + ReadEnabledOrDisabled(ini_file, "Gecko_RetroAchievements_Verified", true, + &geckos); + for (auto& code : action_replays) + code.enabled = false; + ReadEnabledOrDisabled(ini_file, "AR_RetroAchievements_Verified", true, + &action_replays); // Get game section from allow list auto game_itr = allow_list.find(game_id); + bool itr_end = (game_itr == allow_list.end()); // Iterate over approved patches for (const auto& patch : patches) { @@ -92,38 +113,51 @@ TEST(PatchAllowlist, VerifyHashes) context->Update(Common::BitCastToArray(entry.conditional)); } auto digest = context->Finish(); - std::string hash = Common::SHA1::DigestToString(digest); - // Check patch in list - if (game_itr == allow_list.end()) - { - // Report: no patches in game found in list - ADD_FAILURE() << "Approved hash missing from list." << std::endl - << "Game ID: " << game_id << std::endl - << "Patch: \"" << hash << "\" : \"" << patch.name << "\""; + CheckHash(game_id, itr_end ? nullptr : &game_itr->second, + Common::SHA1::DigestToString(digest), patch.name); + } + // Iterate over approved geckos + for (const auto& code : geckos) + { + if (!code.enabled) continue; - } - auto hash_itr = game_itr->second.hashes.find(hash); - if (hash_itr == game_itr->second.hashes.end()) + // Hash patch + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(code.codes.size()))); + for (const auto& entry : code.codes) { - // Report: patch not found in list - ADD_FAILURE() << "Approved hash missing from list." << std::endl - << "Game ID: " << game_id << ":" << game_itr->second.game_title << std::endl - << "Patch: \"" << hash << "\" : \"" << patch.name << "\""; + context->Update(Common::BitCastToArray(entry.address)); + context->Update(Common::BitCastToArray(entry.data)); } - else + auto digest = context->Finish(); + CheckHash(game_id, itr_end ? nullptr : &game_itr->second, + Common::SHA1::DigestToString(digest), code.name); + } + // Iterate over approved AR codes + for (const auto& code : action_replays) + { + if (!code.enabled) + continue; + // Hash patch + auto context = Common::SHA1::CreateContext(); + context->Update(Common::BitCastToArray(static_cast(code.ops.size()))); + for (const auto& entry : code.ops) { - // Remove patch from map if found - game_itr->second.hashes.erase(hash_itr); + context->Update(Common::BitCastToArray(entry.cmd_addr)); + context->Update(Common::BitCastToArray(entry.value)); } + auto digest = context->Finish(); + CheckHash(game_id, itr_end ? nullptr : &game_itr->second, + Common::SHA1::DigestToString(digest), code.name); } // Report missing patches in map - if (game_itr == allow_list.end()) + if (itr_end) continue; for (auto& remaining_hashes : game_itr->second.hashes) { ADD_FAILURE() << "Hash in list not approved in ini." << std::endl << "Game ID: " << game_id << ":" << game_itr->second.game_title << std::endl - << "Patch: " << remaining_hashes.second << ":" << remaining_hashes.first; + << "Code: " << remaining_hashes.second << ":" << remaining_hashes.first; } // Remove section from map allow_list.erase(game_itr); @@ -136,3 +170,30 @@ TEST(PatchAllowlist, VerifyHashes) << remaining_games.second.game_title; } } + +void CheckHash(const std::string& game_id, GameHashes* game_hashes, const std::string& hash, + const std::string& patch_name) +{ + // Check patch in list + if (game_hashes == nullptr) + { + // Report: no patches in game found in list + ADD_FAILURE() << "Approved hash missing from list." << std::endl + << "Game ID: " << game_id << std::endl + << "Code: \"" << hash << "\": \"" << patch_name << "\""; + return; + } + auto hash_itr = game_hashes->hashes.find(hash); + if (hash_itr == game_hashes->hashes.end()) + { + // Report: patch not found in list + ADD_FAILURE() << "Approved hash missing from list." << std::endl + << "Game ID: " << game_id << ":" << game_hashes->game_title << std::endl + << "Code: \"" << hash << "\": \"" << patch_name << "\""; + } + else + { + // Remove patch from map if found + game_hashes->hashes.erase(hash_itr); + } +} From 51435b6ef8448735d2b112bfc7fea4a853ee867c Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Fri, 4 Oct 2024 23:05:45 -0400 Subject: [PATCH 32/40] Approve Super Mario Sunshine Widescreen Gecko Code --- Data/Sys/ApprovedInis.json | 4 ++++ Data/Sys/GameSettings/GMSE01.ini | 3 +++ Source/Core/Core/AchievementManager.h | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Data/Sys/ApprovedInis.json b/Data/Sys/ApprovedInis.json index 2132bd62fe..c8e942b364 100644 --- a/Data/Sys/ApprovedInis.json +++ b/Data/Sys/ApprovedInis.json @@ -160,6 +160,10 @@ "title": "Gladius", "3D0894616C9A7FA5ED91C1D2F461BF14DF47ECEC": "Fix freeze in opening cutscene" }, + "GMSE01": { + "title": "Super Mario Sunshine", + "BD718F961DBA5372B1D0257D454D535746C453A0": "Widescreen" + }, "GNHE5d": { "title": "NHL HITZ 2002", "89393A24E2336841AA4CD0AD3BE1C9A66B89E9EF": "Nop Hack" diff --git a/Data/Sys/GameSettings/GMSE01.ini b/Data/Sys/GameSettings/GMSE01.ini index 32eb737097..3b2dc268e2 100644 --- a/Data/Sys/GameSettings/GMSE01.ini +++ b/Data/Sys/GameSettings/GMSE01.ini @@ -175,3 +175,6 @@ C2363138 00000009 7C631670 54A5F0BE 7C630194 7C630214 60000000 00000000 + +[Gecko_RetroAchievements_Verified] +$Widescreen diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 2cacc2a6fc..9de18f1711 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -80,8 +80,8 @@ public: static constexpr std::string_view BLUE = "#0B71C1"; static constexpr std::string_view APPROVED_LIST_FILENAME = "ApprovedInis.json"; static const inline Common::SHA1::Digest APPROVED_LIST_HASH = { - 0xCC, 0xB4, 0x05, 0x2D, 0x2B, 0xEE, 0xF4, 0x06, 0x4A, 0xC9, - 0x57, 0x5D, 0xA9, 0xE9, 0xDE, 0xB7, 0x98, 0xF8, 0x1A, 0x6D}; + 0xA4, 0x98, 0x59, 0x23, 0x10, 0x56, 0x45, 0x30, 0xA9, 0xC5, + 0x68, 0x5A, 0xB6, 0x47, 0x67, 0xF8, 0xF0, 0x7D, 0x1D, 0x14}; struct LeaderboardEntry { From a68ae37df7168464459f395d2af3bee979a146ad Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 30 Nov 2024 20:47:19 +0100 Subject: [PATCH 33/40] Translation resources sync with Transifex --- Languages/po/ar.po | 86 +++++------ Languages/po/ca.po | 86 +++++------ Languages/po/cs.po | 86 +++++------ Languages/po/da.po | 86 +++++------ Languages/po/de.po | 86 +++++------ Languages/po/dolphin-emu.pot | 86 +++++------ Languages/po/el.po | 86 +++++------ Languages/po/en.po | 86 +++++------ Languages/po/es.po | 94 ++++++------ Languages/po/fa.po | 86 +++++------ Languages/po/fi.po | 86 +++++------ Languages/po/fr.po | 275 +++++++++++++++++++++++------------ Languages/po/hr.po | 86 +++++------ Languages/po/hu.po | 88 +++++------ Languages/po/it.po | 93 ++++++------ Languages/po/ja.po | 86 +++++------ Languages/po/ko.po | 86 +++++------ Languages/po/ms.po | 86 +++++------ Languages/po/nb.po | 86 +++++------ Languages/po/nl.po | 86 +++++------ Languages/po/pl.po | 272 ++++++++++++++++++---------------- Languages/po/pt.po | 86 +++++------ Languages/po/pt_BR.po | 92 ++++++------ Languages/po/ro.po | 86 +++++------ Languages/po/ru.po | 86 +++++------ Languages/po/sr.po | 86 +++++------ Languages/po/sv.po | 86 +++++------ Languages/po/tr.po | 86 +++++------ Languages/po/zh_CN.po | 90 ++++++------ Languages/po/zh_TW.po | 86 +++++------ 30 files changed, 1559 insertions(+), 1423 deletions(-) diff --git a/Languages/po/ar.po b/Languages/po/ar.po index 534b71aa21..bc559f644f 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1605,11 +1605,11 @@ msgstr "جميع الأعداد الصحيحة غير الموقعة" msgid "All files (*)" msgstr "(*) جميع الملفات" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "جميع رموز اللاعبين متزامنة." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "حفظ جميع اللاعبين متزامنة." @@ -2765,7 +2765,7 @@ msgstr "" msgid "Code:" msgstr "رمز" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "الرموز الواردة!" @@ -3683,7 +3683,7 @@ msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" "عدم تناسق البيانات في بطاقة ذاكرة جيم كيوب ، مما يؤدي إلى إلغاء الإجراء" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "البيانات المتلقية!" @@ -4835,7 +4835,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "لم يتم تهيئة الشبكة" @@ -4978,7 +4978,7 @@ msgstr "سجل الأخطاء" msgid "Error Opening Adapter: %1" msgstr "%1 : خطأ في فتح المحول" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "خطأ في جمع البيانات المحفوظة" @@ -5000,11 +5000,11 @@ msgstr "خطأ في الحصول على قائمة الجلسة: 1%" msgid "Error occurred while loading some texture packs" msgstr "حدث خطأ أثناء تحميل بعض حزم النسيج" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "خطأ معالجة الرموز" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "خطأ في معالجة البيانات." @@ -5012,11 +5012,11 @@ msgstr "خطأ في معالجة البيانات." msgid "Error reading file: {0}" msgstr "{0} خطأ في قراءة الملف" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "خطأ في مزامنة الرموز" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "حدث خطا اثناء مزامنة حفظ البيانات!" @@ -5330,12 +5330,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "فشل حذف بطاقة الذاكرة في لعب عبر الشبكة تحقق من أذونات الكتابة الخاصة بك." @@ -5496,7 +5496,7 @@ msgstr "فشل في تعديل Skylander" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5663,15 +5663,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "NAND فشل في إزالة هذا العنوان من" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "Failed to reset NetPlay GCI folder. Verify your write permissions." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "Failed to reset NetPlay NAND folder. Verify your write permissions." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "فشل في إعادة تعيين مجلد إعادة توجيه اللعب عبر الشبكة. تحقق من أذونات الكتابة " @@ -5716,11 +5716,11 @@ msgstr "%1 فشل في إلغاء تثبيت الحزمة" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Failed to write BT.DINF to SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Mii فشل في كتابة بيانات" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "فشل في كتابة حفظ وي." @@ -5734,7 +5734,7 @@ msgstr "فشل في كتابه ملف الأعداد" msgid "Failed to write modified memory card to disk." msgstr "فشل في كتابة بطاقة الذاكرة المعدلة إلى القرص" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "فشل في كتابة إعادة توجيه الحفظ" @@ -6392,7 +6392,7 @@ msgstr "تحتوي اللعبة على رقم قرص مختلف" msgid "Game has a different revision" msgstr "اللعبة لديها مراجعة مختلفة" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "لعبة تستخدم بالفعل!" @@ -7394,7 +7394,7 @@ msgstr "المجموع الاختباري غير صالح." msgid "Invalid game." msgstr "لعبة غير صالحة" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "المضيف غير صالح" @@ -7546,8 +7546,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9627,11 +9627,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "(QoS) تعذر تمكين جوده الخدمة ." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "تم تمكين جودة الخدمة (QoS) بنجاح." @@ -10746,9 +10746,9 @@ msgstr "الخط المحدد" msgid "Selected controller profile does not exist" msgstr "اختيار الملف التحكم الشخصي غير موجود " -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10890,7 +10890,7 @@ msgstr "IP عنوان" msgid "Server Port" msgstr "منفذ الخادم" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "الخادم رفض محاولة الاجتياز" @@ -12011,15 +12011,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "جارٍ مزامنة الرموز" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "جارٍ مزامنة الرموز" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "جارٍ مزامنة حفظ البيانات" @@ -13124,7 +13124,7 @@ msgstr "خطأ الاجتياز" msgid "Traversal Server" msgstr "اجتياز الخادم" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "انتهت مهلة خادم الاجتياز للاتصال بالمضيف" @@ -13344,21 +13344,21 @@ msgstr "(Id:%1 Var:%2) مجهول" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13388,7 +13388,7 @@ msgstr "قرص غير معروف" msgid "Unknown error occurred." msgstr "حدث خطأ غير معروف" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "{0:x} خطأ غير معروف" @@ -13400,7 +13400,7 @@ msgstr "خطأ غير معروف" msgid "Unknown message received with id : {0}" msgstr "{0} تم استلام رسالة غير معروفة بالمعرف" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -14225,7 +14225,7 @@ msgstr "مراجعة خاطئة" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14569,11 +14569,11 @@ msgstr "{0} (NKit)" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} فشل في مزامنة الرموز" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} فشل في المزامنة" diff --git a/Languages/po/ca.po b/Languages/po/ca.po index 91f9458c3b..12879ae18a 100644 --- a/Languages/po/ca.po +++ b/Languages/po/ca.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Puniasterus , 2013-2016,2021-2024\n" "Language-Team: Catalan (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1576,11 +1576,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2723,7 +2723,7 @@ msgstr "" msgid "Code:" msgstr "Codi:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3597,7 +3597,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4733,7 +4733,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4876,7 +4876,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4900,11 +4900,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4912,11 +4912,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5224,12 +5224,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5382,7 +5382,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5542,15 +5542,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5593,11 +5593,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "No s'ha pogut escriure BT.DINF a SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5611,7 +5611,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6258,7 +6258,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "El joc encara està en marxa!" @@ -7227,7 +7227,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7380,8 +7380,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9434,11 +9434,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10543,9 +10543,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "El perfil del controlador seleccionat no existeix" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10687,7 +10687,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11795,15 +11795,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12842,7 +12842,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13049,21 +13049,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13093,7 +13093,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13105,7 +13105,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13909,7 +13909,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14246,11 +14246,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/cs.po b/Languages/po/cs.po index 1afeac16a2..847b7e88e0 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1546,11 +1546,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "Code:" msgstr "Kód:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4705,7 +4705,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet nebyl uaveden" @@ -4848,7 +4848,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4871,11 +4871,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4883,11 +4883,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5195,12 +5195,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5353,7 +5353,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5513,15 +5513,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5564,11 +5564,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Selhal zápis BT.DINF do SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5582,7 +5582,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6229,7 +6229,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Hra už běží!" @@ -7198,7 +7198,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Neplatný hostitel" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9405,11 +9405,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10514,9 +10514,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "Vybraný profil ovladače neexistuje" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10658,7 +10658,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Server zamítl pokus o průchod" @@ -11768,15 +11768,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12816,7 +12816,7 @@ msgstr "" msgid "Traversal Server" msgstr "Server pro průchod" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Při připojování průchozího serveru k hostiteli vršek časový limit." @@ -13023,21 +13023,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13067,7 +13067,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13079,7 +13079,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13883,7 +13883,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14220,11 +14220,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/da.po b/Languages/po/da.po index 54391c1e0c..e1bac676ff 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1579,11 +1579,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2728,7 +2728,7 @@ msgstr "" msgid "Code:" msgstr "Kode:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Koder modtaget!" @@ -3606,7 +3606,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Data modtaget!" @@ -4747,7 +4747,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet blev ikke initialiseret" @@ -4890,7 +4890,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4914,11 +4914,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4926,11 +4926,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5238,12 +5238,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5396,7 +5396,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5556,15 +5556,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5607,11 +5607,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Kunne ikke skrive BT.DINF til SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5625,7 +5625,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6272,7 +6272,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Spillet kører allerede!" @@ -7249,7 +7249,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Forkert vært" @@ -7401,8 +7401,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9459,11 +9459,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Servicekvalitet (QoS) kunne ikke aktiveres." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Servicekvalitet (QoS) aktiveret." @@ -10568,9 +10568,9 @@ msgstr "Valgt skrifttype" msgid "Selected controller profile does not exist" msgstr "Valgte kontrollerprofil eksisterer ikke" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10712,7 +10712,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Serveren nægtede forsøget på traversal" @@ -11823,15 +11823,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12874,7 +12874,7 @@ msgstr "" msgid "Traversal Server" msgstr "Traversal-server" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Traversal-server fik timeout ved forbindelse til vært" @@ -13090,21 +13090,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13134,7 +13134,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13146,7 +13146,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13952,7 +13952,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14290,11 +14290,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/de.po b/Languages/po/de.po index 79ab88dcd4..6b69a5d710 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1656,11 +1656,11 @@ msgstr "" msgid "All files (*)" msgstr "Alle Dateien (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Alle Codes der Spieler synchronisiert." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Alle Spielstände der Spieler synchronisiert." @@ -2849,7 +2849,7 @@ msgstr "" msgid "Code:" msgstr "Code:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Codes empfangen!" @@ -3782,7 +3782,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Daten empfangen!" @@ -4970,7 +4970,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet konnte nicht initialisiert werden" @@ -5113,7 +5113,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "Fehler beim Öffnen des Adapters: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -5137,11 +5137,11 @@ msgstr "Fehler beim Abrufen der Sitzungsliste: %1" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Fehler beim Verarbeiten der Codes." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Fehler beim Verarbeiten der Daten." @@ -5149,11 +5149,11 @@ msgstr "Fehler beim Verarbeiten der Daten." msgid "Error reading file: {0}" msgstr "Fehler beim Lesen der Datei: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Fehler beim Synchronisieren der Cheat Codes!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Fehler beim Synchronisieren der Spielstände!" @@ -5472,12 +5472,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Konnte NetPlay-Speicherkarte nicht löschen. Überprüfe deine " @@ -5647,7 +5647,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5817,19 +5817,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Dieser Titel konnte nicht aus dem NAND entfernt werden." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Konnte NetPlay GCI-Ordner nicht löschen. Überprüfe deine " "Schreibberechtigungen." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Konnte NetPlay NAND-Ordner nicht zurücksetzen. Überprüfe deine " "Schreibberechtigungen." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5872,11 +5872,11 @@ msgstr "Konnte Paket: %1 nicht deinstallieren" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Fehler beim Schreiben von BT.DINF nach SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Konnte Mii-Daten nicht schreiben." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Konnte Wii-Spielstand nicht schreiben." @@ -5890,7 +5890,7 @@ msgstr "Konnte Einstellungsdatei nicht schreiben!" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6576,7 +6576,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Spiel läuft bereits!" @@ -7610,7 +7610,7 @@ msgstr "Ungültige Prüfsummen." msgid "Invalid game." msgstr "Ungültiges Spiel." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Ungültiger Host" @@ -7765,8 +7765,8 @@ msgstr "" "niemals passieren. Melde bitte diesen Vorfall im Bug-Tracker. Dolphin wird " "jetzt beendet." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9868,11 +9868,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Quality of Service (QoS) konnte nicht aktiviert werden." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) wurde erfolgreich aktiviert." @@ -10994,9 +10994,9 @@ msgstr "Ausgewählte Schriftart" msgid "Selected controller profile does not exist" msgstr "Ausgewähltes Controller-Profil existiert nicht" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11150,7 +11150,7 @@ msgstr "Server-IP-Adresse" msgid "Server Port" msgstr "Server-Port" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Server hat Übergangsversuch abgelehnt." @@ -12297,15 +12297,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "AR-Codes synchronisieren..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Gecko-Codes synchronisieren..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Synchronisiere Spielstände..." @@ -13452,7 +13452,7 @@ msgstr "Übergangsfehler" msgid "Traversal Server" msgstr "Übergangsserver" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Zeitüberschreitung bei der Verbindung vom Übergangsserver zum Host." @@ -13684,11 +13684,11 @@ msgstr "Unbekannt (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Unbekannter DVD-Befehl {0:08x} - fataler Fehler" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -13696,11 +13696,11 @@ msgstr "" "Unbekannte SYNC_GECKO_CODES Meldung mit ID:{0} von Spieler:{1} erhalten. " "Spieler wird herausgeworfen!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Unbekannte SYNC_SAVE_DATA Meldung erhalten mit ID: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13732,7 +13732,7 @@ msgstr "Unbekannte Disc" msgid "Unknown error occurred." msgstr "Unbekannter Fehler aufgetreten." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Unbekannter Fehler {0:x}" @@ -13744,7 +13744,7 @@ msgstr "Unbekannter Fehler" msgid "Unknown message received with id : {0}" msgstr "Unbekannte Meldung mit ID:{0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Unbekannte Meldung mit ID:{0} von Spieler:{1} erhalten. Spieler wird " @@ -14638,7 +14638,7 @@ msgstr "Falsche Revision" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14999,11 +14999,11 @@ msgstr "" "{0} IPL im {1} Verzeichnis gefunden. Die Disc wird möglicherweise nicht " "erkannt" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} konnte Codes nicht synchroniseren." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} konnte nicht synchronisert werden." diff --git a/Languages/po/dolphin-emu.pot b/Languages/po/dolphin-emu.pot index a767104065..4217427140 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1543,11 +1543,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2690,7 +2690,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3564,7 +3564,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4698,7 +4698,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4841,7 +4841,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4863,11 +4863,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4875,11 +4875,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5187,12 +5187,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5345,7 +5345,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5505,15 +5505,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5556,11 +5556,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5574,7 +5574,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6221,7 +6221,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "" @@ -7190,7 +7190,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7342,8 +7342,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9393,11 +9393,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10502,9 +10502,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10646,7 +10646,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11754,15 +11754,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12797,7 +12797,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13004,21 +13004,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13048,7 +13048,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13060,7 +13060,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13864,7 +13864,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14201,11 +14201,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/el.po b/Languages/po/el.po index fb91b07f77..699cc460aa 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: e6b3518eccde9b3ba797d0e9ab3bc830_0a567e3, 2023\n" "Language-Team: Greek (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1557,11 +1557,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2704,7 +2704,7 @@ msgstr "" msgid "Code:" msgstr "Κωδικός:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3580,7 +3580,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4724,7 +4724,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4867,7 +4867,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4891,11 +4891,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4903,11 +4903,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5215,12 +5215,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5373,7 +5373,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5533,15 +5533,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5584,11 +5584,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Αποτυχία εγγραφής του BT.DINF στο SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5602,7 +5602,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6249,7 +6249,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Το παιχνίδι εκτελείται ήδη!" @@ -7218,7 +7218,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Μη έγκυρος host" @@ -7370,8 +7370,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9426,11 +9426,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10535,9 +10535,9 @@ msgstr "Επιλεγμένη Γραμματοσειρά" msgid "Selected controller profile does not exist" msgstr "Το επιλεγμένο προφίλ χειρισμού δεν υπάρχει" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10679,7 +10679,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11790,15 +11790,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12841,7 +12841,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13048,21 +13048,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13092,7 +13092,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13104,7 +13104,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13910,7 +13910,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14248,11 +14248,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/en.po b/Languages/po/en.po index 10ea5c05f6..02af0159ae 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2011-01-06 14:53+0100\n" "Last-Translator: BhaaL \n" "Language-Team: \n" @@ -1542,11 +1542,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2689,7 +2689,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3563,7 +3563,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4697,7 +4697,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4862,11 +4862,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4874,11 +4874,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5186,12 +5186,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5344,7 +5344,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5504,15 +5504,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5555,11 +5555,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5573,7 +5573,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6220,7 +6220,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "" @@ -7189,7 +7189,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7341,8 +7341,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9392,11 +9392,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10501,9 +10501,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10645,7 +10645,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11753,15 +11753,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12796,7 +12796,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13003,21 +13003,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13047,7 +13047,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13059,7 +13059,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13863,7 +13863,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14200,11 +14200,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/es.po b/Languages/po/es.po index 7b5af95d8c..7a5230392a 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1703,11 +1703,11 @@ msgstr "Todos los valores enteros sin signo" msgid "All files (*)" msgstr "Todos los archivos (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Todos los códigos de los jugadores sincronizados." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Todos las partidas guardadas de los jugadores sincronizados." @@ -2940,7 +2940,7 @@ msgstr "Ruta de acceso a código tomada" msgid "Code:" msgstr "Código:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "¡Códigos recibidos!" @@ -3970,7 +3970,7 @@ msgstr "Los datos están en un formato no reconocido o está corruptos" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Inconsistencia de datos en GCMemcardManager, cancelando acción." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "¡Datos recibidos!" @@ -5295,7 +5295,7 @@ msgstr "" msgid "End Addr" msgstr "Dir. final" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet no se inició" @@ -5442,7 +5442,7 @@ msgstr "Registro de errores" msgid "Error Opening Adapter: %1" msgstr "Error al abrir el adaptador: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "¡Error al recopilar los datos guardados!" @@ -5466,11 +5466,11 @@ msgstr "Error al obtener la lista de sesiones: %1" msgid "Error occurred while loading some texture packs" msgstr "Error al cargar algunos packs de texturas" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Error al procesar los códigos." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Error en el procesamiento de datos." @@ -5478,11 +5478,11 @@ msgstr "Error en el procesamiento de datos." msgid "Error reading file: {0}" msgstr "Error leyendo el archivo: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "¡Error al sincronizar códigos de trucos!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "¡Error al sincronizar los datos guardados!" @@ -5802,14 +5802,14 @@ msgstr "" "\n" "El Skylander podría estar ya en el portal." -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "No se ha podido borrar el guardado {0} de juego en red de GBA. Comprueba tus " "permisos de escritura." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "No se ha podido borrar la tarjeta de memoria del juego en red. Comprueba tus " @@ -5987,7 +5987,7 @@ msgstr "¡No se ha podido modificar el Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "No se ha podido abrir el archivo «%1» para su escritura." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "No se ha podido abrir el archivo «{0}» para su escritura." @@ -6176,19 +6176,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "No se ha podido desinstalar el título de la NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "No se ha podido restablecer el juego en red y la carpeta GCI. Comprueba tus " "permisos de escritura." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "No se ha podido restablecer el juego en red en la carpeta NAND. Comprueba " "tus permisos de escritura." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "No se ha podido reiniciar la carpeta de redireccionamiento del juego en red. " @@ -6237,11 +6237,11 @@ msgstr "No se ha podido desinstalar el paquete: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "No se ha podido escribir BT.DINF a SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "No se han podido escribir los datos de Miis." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "No se ha podido escribir el guardado de Wii." @@ -6255,7 +6255,7 @@ msgstr "¡No se ha podido escribir el archivo de configuración!" msgid "Failed to write modified memory card to disk." msgstr "No se ha podido escribir la tarjeta de memoria modificada en el disco." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "No se ha podido escribir la partida guardada redirigida." @@ -6973,7 +6973,7 @@ msgstr "El juego tiene un número de disco distinto" msgid "Game has a different revision" msgstr "El juego es una revisión distinta" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "¡El juego ya está ejecutándose!" @@ -8068,7 +8068,7 @@ msgstr "Sumas de verificación incorrectas." msgid "Invalid game." msgstr "El juego no es válido." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Anfitrión no válido" @@ -8224,8 +8224,8 @@ msgstr "" "memoria caché. Esto no debería haber pasado. Te rogamos que informes del " "fallo en el gestor de incidencias. Dolphin se cerrará." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "El modo JIT no está activo" @@ -10404,11 +10404,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "No se pudo activar el sistema de calidad de servicio (QoS)." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "El sistema de calidad de servicio (QoS) se ha activado correctamente." @@ -11587,9 +11587,9 @@ msgstr "Tipografía seleccionada" msgid "Selected controller profile does not exist" msgstr "El perfil del mando seleccionado no existe" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11730,6 +11730,14 @@ msgid "" "recommended to try each and select the backend that is least problematic." "

If unsure, select %1." msgstr "" +"Selecciona la API de gráficos que se usará internamente.

El " +"renderizado por software es muy lento y solo se utiliza para tareas de " +"depuración, así que recomendamos cualquier otro renderizador. Cada juego y " +"cada tarjeta gráfica se comportarán de una manera distinta con cada motor, " +"por lo que si buscas la mejor experiencia de emulación, se recomienda que " +"pruebes todos los renderizadores y selecciones el que mejor se adapte a tus " +"necesidades.

Si tienes dudas, selecciona %1. " #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -11816,7 +11824,7 @@ msgstr "Dirección IP del servidor" msgid "Server Port" msgstr "Puerto del servidor" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "El servidor de paso rechazó el intento de conexión" @@ -13044,15 +13052,15 @@ msgstr "" "Sincroniza la tarjeta SD con la carpeta de sincronización al comenzar y " "finalizar la emulación." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Sincronizando códigos AR..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Sincronizando códigos Gecko..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Sincronizando datos guardados..." @@ -14275,7 +14283,7 @@ msgstr "Error del servidor de paso" msgid "Traversal Server" msgstr "Servidor de paso" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" "Se agotó el tiempo para que el servidor transversal se conecte con el " @@ -14510,11 +14518,11 @@ msgstr "Desconocido (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconocido de DVD {0:08x} - error fatal" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Mensaje SYNC_CODES desconocido recibido con id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14522,11 +14530,11 @@ msgstr "" "Mensaje desconocido SYNC_GECKO_CODES con id:{0} recibido del jugador:{1} " "¡Expulsando jugador!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Mensaje SYNC_SAVE_DATA desconocido recibido con id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14558,7 +14566,7 @@ msgstr "Disco desconocido" msgid "Unknown error occurred." msgstr "Se ha producido un error desconocido." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Error desconocido {0:x}" @@ -14570,7 +14578,7 @@ msgstr "Error desconocido." msgid "Unknown message received with id : {0}" msgstr "Se recibió un mensaje desconocido con identificador: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Mensaje desconocido con id:{0} recibido del jugador:{1} ¡Expulsando jugador!" @@ -15507,7 +15515,7 @@ msgstr "Revisión incorrecta" msgid "Wrote to \"%1\"." msgstr "Escrito a «%1»." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Escrito a «{0}»." @@ -15900,11 +15908,11 @@ msgstr "" "Se ha encontrado un IPL {0} en el directorio {1}. Es posible que no " "reconozca el disco" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} no ha podido sincronizar los códigos." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} no ha podido sincronizar." diff --git a/Languages/po/fa.po b/Languages/po/fa.po index c3d3bcb820..a8fc071cdb 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: H.Khakbiz , 2011\n" "Language-Team: Persian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1546,11 +1546,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4703,7 +4703,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4846,7 +4846,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4869,11 +4869,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4881,11 +4881,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5193,12 +5193,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5351,7 +5351,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5511,15 +5511,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5562,11 +5562,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "نوشتن BT.DINF به SYSCONF با شکست مواجه شد" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5580,7 +5580,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6227,7 +6227,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "بازی قبلا اجرا شده است!" @@ -7196,7 +7196,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7348,8 +7348,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9402,11 +9402,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10511,9 +10511,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "پروفایل انتخاب شده وجود ندارد" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10655,7 +10655,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11763,15 +11763,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12810,7 +12810,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13017,21 +13017,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13061,7 +13061,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13073,7 +13073,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13877,7 +13877,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14214,11 +14214,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/fi.po b/Languages/po/fi.po index 921fad4b59..cea519284b 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Jaakko Saarikko , " "2022-2024\n" @@ -1663,11 +1663,11 @@ msgstr "Kaikki etumerkittöminä kokonaislukuina" msgid "All files (*)" msgstr "Kaikki tiedostot (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Kaikkien pelaajien koodit synkronoitu." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Kaikkien pelaajien tallennustiedostot synkronoitu." @@ -2896,7 +2896,7 @@ msgstr "Koodireitti suoritettiin" msgid "Code:" msgstr "Koodi:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Koodit saatu!" @@ -3919,7 +3919,7 @@ msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" "Datan epäjohdonmukaisuuksia GCMemcardManagerissa löytyi, toiminto keskeytyy." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Dataa vastaanotettu!" @@ -5221,7 +5221,7 @@ msgstr "" msgid "End Addr" msgstr "Loppuosoite" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enetin alustus epäonnistui" @@ -5365,7 +5365,7 @@ msgstr "Virheloki" msgid "Error Opening Adapter: %1" msgstr "Virhe sovittimen avauksessa: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Virhe tallennustiedoston keräämisessä!" @@ -5388,11 +5388,11 @@ msgstr "Virhe istuntolistan hakemisessa: %1" msgid "Error occurred while loading some texture packs" msgstr "Virheitä tapahtui joidenkin tekstuuripakettien latauksessa" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Virhe koodien käsittelyssä." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Virhe datan käsittelyssä." @@ -5400,11 +5400,11 @@ msgstr "Virhe datan käsittelyssä." msgid "Error reading file: {0}" msgstr "Virhe tiedoston lukemisessa: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Virhe huijauskoodien synkronoinnissa!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Virhe tallennustiedoston synkronoinnissa!" @@ -5724,14 +5724,14 @@ msgstr "" "\n" "Skylander saattaa olla jo portaalissa." -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Nettipelin GBA{0}-tallennustiedoston poisto epäonnistui. Tarkista " "kirjoitusoikeudet." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Nettipelin muistikortin poisto epäonnistui. Tarkista kirjoitusoikeudet." @@ -5905,7 +5905,7 @@ msgstr "Skylanderin muokkaus epäonnistui!" msgid "Failed to open \"%1\" for writing." msgstr "Tiedoston \"%1\" avaaminen kirjoittamista varten epäonnistui." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Tiedoston \"{0}\" avaaminen kirjoittamista varten epäonnistui." @@ -6091,17 +6091,17 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Tämän julkaisun poistaminen NAND-muistista epäonnistui." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Nettipelin GCI-kansion nollaaminen epäonnistui. Tarkista kirjoitusoikeudet." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Nettipelin NAND-kansion nollaaminen epäonnistui. Tarkista kirjoitusoikeudet." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Nettipelin uudelleenohjauskansion nollaaminen epäonnistui. Tarkista " @@ -6150,11 +6150,11 @@ msgstr "Paketin asentaminen epäonnistui: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "BT.DINF-tiedoston tallentaminen SYSCONFiin epäonnistui" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Mii-datan kirjoittaminen epäonnistui." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Wiin tallennustiedoston kirjoittaminen epäonnistui." @@ -6168,7 +6168,7 @@ msgstr "Asetustiedoston kirjoittaminen epäonnistui!" msgid "Failed to write modified memory card to disk." msgstr "Muutetun muistikortin kirjoittaminen levylle epäonnistui." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Uudelleenohjatun tallennustiedoston kirjoittaminen epäonnistui." @@ -6877,7 +6877,7 @@ msgstr "Pelillä on eri levynumero" msgid "Game has a different revision" msgstr "Pelillä on eri revisio" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Peli on jo käynnissä!" @@ -7957,7 +7957,7 @@ msgstr "Virheelliset tarkistussummat." msgid "Invalid game." msgstr "Virheellinen peli." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Virheellinen isäntäkone" @@ -8112,8 +8112,8 @@ msgstr "" "Näin ei pitäisi koskaan tapahtua. Ilmoitathan tästä ongelmasta " "vianhallintajärjestelmään. Dolphin sulkeutuu nyt." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT ei ole aktiivinen" @@ -10292,11 +10292,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "QoS-tekniikan käynnistäminen ei onnistunut." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "QoS-tekniikan käynnistys onnistui." @@ -11434,9 +11434,9 @@ msgstr "Valittu fontti" msgid "Selected controller profile does not exist" msgstr "Valittua ohjainprofiilia ei ole olemassa" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11655,7 +11655,7 @@ msgstr "Palvelimen IP-osoite" msgid "Server Port" msgstr "Palvelimen portti" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Palvelin kieltäytyi läpikulkuyrityksestä" @@ -12871,15 +12871,15 @@ msgstr "" "Synkronoi SD-kortin sen synkronointikansion kanssa, kun emulaatio alkaa ja " "päättyy." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "AR-koodien synkronointi käynnissä..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Gecko-koodien synkronointi käynnissä..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Tallennustiedostojen synkronointi käynnissä..." @@ -14067,7 +14067,7 @@ msgstr "Läpikulkuvirhe" msgid "Traversal Server" msgstr "Läpikulkupalvelin" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Läpikulkupalvelimen yhteys isäntäkoneeseen aikakatkaistiin" @@ -14303,11 +14303,11 @@ msgstr "Tuntematon (Tunnus:%1 Muuttuja:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Tuntematon DVD-komento {0:08x} - vakava virhe" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Tuntematon SYNC_CODES-viesti saapui tunnisteella {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14315,11 +14315,11 @@ msgstr "" "Tuntematon SYNC_GECKO_CODES-viesti saapui tunnisteella {0} pelaajalta {1}. " "Pelaaja tulee poistetuksi!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Tuntematon SYNC_SAVE_DATA-viesti saapui tunnisteella {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14351,7 +14351,7 @@ msgstr "Tuntematon levy" msgid "Unknown error occurred." msgstr "Tapahtui tuntematon virhe." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Tuntematon virhe {0:x}" @@ -14363,7 +14363,7 @@ msgstr "Tuntematon virhe." msgid "Unknown message received with id : {0}" msgstr "Saapui tuntematon viesti tunnisteella {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Saapui tuntematon viesti tunnisteella {0} pelaajalta {1}. Pelaaja tulee " @@ -15273,7 +15273,7 @@ msgstr "Väärä revisio" msgid "Wrote to \"%1\"." msgstr "Kirjoitettu kohteeseen \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Kirjoitettu kohteeseen \"{0}\"." @@ -15658,11 +15658,11 @@ msgstr "{0} (NKit)" 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." -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "Koodien synkronointi pelaajan {0} kanssa ei onnistunut." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "Pelaajan {0} kanssa synkronointi ei onnistunut." diff --git a/Languages/po/fr.po b/Languages/po/fr.po index 3f9a80c814..5ce07d0e76 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Pascal , 2013-2024\n" "Language-Team: French (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1484,6 +1484,14 @@ msgid "" "setting is disabled when Manual Texture Sampling is enabled." "

If unsure, select 'Default'." msgstr "" +"Ajuste le filtrage de texture. Le filtrage anisotropique améliore la qualité " +"visuelle des texture qui sont à des angles de vue obliques. Forcer au plus " +"proche et Forcer linéaire remplacent le filtre de mise à l'échelle " +"sélectionné par le jeu.

Toutes les options exceptée \"Par défaut\" " +"altéreront le look des textures du jeu et peuvent provoquer des pépins dans " +"un petit nombre de jeux.

Cette option est désactivée lorsque " +"l'échantillonnage manuel de texture est actif.

Dans " +"le doute, sélectionnez \"Par défaut\". " #. i18n: Refers to plastic shell of game controller (stick gate) that limits stick movements. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/AnalogStick.cpp:107 @@ -1675,11 +1683,11 @@ msgstr "Tout Entier Non-signé" msgid "All files (*)" msgstr "Tous les fichiers (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Les codes de tous les joueurs ont été synchronisés." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Les sauvegardes de tous les joueurs ont été synchronisées." @@ -1810,7 +1818,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce pack ?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Are you sure you want to log out of RetroAchievements?" -msgstr "" +msgstr "Êtes-vous sûr(e) de vouloir vous déconnecter de RetroAchievements ?" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:502 msgid "Are you sure you want to quit NetPlay?" @@ -1818,7 +1826,7 @@ msgstr "Êtes-vous sûr de vouloir quitter NetPlay ?" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Are you sure you want to turn hardcore mode off?" -msgstr "" +msgstr "Êtes-vous sûr(e) de vouloir arrêter le mode hardcore ?" #: Source/Core/DolphinQt/ConvertDialog.cpp:284 msgid "Are you sure?" @@ -2901,11 +2909,11 @@ msgstr "Code" #. i18n: Code Buffer Size #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:390 msgid "Code Buff. Size" -msgstr "" +msgstr "Taille du code tampon" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:636 msgid "Code Buffer Size" -msgstr "" +msgstr "Taille du code tampon" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:266 msgid "Code Path Not Taken" @@ -2919,7 +2927,7 @@ msgstr "\"Le chemin de code a été pris\"" msgid "Code:" msgstr "Code :" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Codes reçus !" @@ -3182,7 +3190,7 @@ msgstr "Confirmer" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:291 msgid "Confirm Hardcore Off" -msgstr "" +msgstr "Confirmer arrêt mode hardcore" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:277 msgid "Confirm Logout" @@ -3949,7 +3957,7 @@ msgstr "Données dans un format non reconnu ou corrompues." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Incohérence de données dans GCMemcardManager, abandon de l'action." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Données reçues !" @@ -4734,7 +4742,7 @@ msgstr "Éditeur" #. i18n: Effective Address #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:388 msgid "Eff. Address" -msgstr "" +msgstr "Adresse eff." #: Source/Core/Core/HW/WiimoteEmu/Extension/Turntable.cpp:79 #: Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp:160 @@ -4750,11 +4758,11 @@ msgstr "Effective" #. i18n: "Effective" means this memory address might be translated within the MMU. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:635 msgid "Effective Address" -msgstr "" +msgstr "Adresse effective" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:370 msgid "Effective address %1 has no physical address translation." -msgstr "" +msgstr "L'adresse effective %1 n'a aucune adresse physique traduite." #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:189 msgid "Effective priority" @@ -5093,6 +5101,15 @@ msgid "" "Texture Decoding is enabled.

If unsure, leave this " "unchecked." msgstr "" +"Active la détection des mipmaps arbitraires, que certains jeux utilisent " +"pour des effets spéciaux basés sur la distance.

Il peut y avoir avoir " +"des faux positifs qui produiront des textures floues dans une résolution " +"interne élevée, par exemple pour des jeux qui utilisent des mipmaps dans une " +"résolution très basse. Désactiver ceci peut aussi réduire les saccades dans " +"les jeux qui chargent fréquemment de nouvelles textures.

Cette " +"fonctionnalité est désactivée lorsque le décodage des textures par le GPU " +"est actif.Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:86 msgid "" @@ -5163,6 +5180,11 @@ msgid "" "Detection will be disabled.

If unsure, leave this " "unchecked." msgstr "" +"Active le décodage des textures par le GPU à la place du CPU.

Ceci " +"peut entraîner des gains de performance dans certains cas, ou pour les " +"systèmes où le CPU n'est pas assez puissant.

Si cette option est " +"activée, la détection des mipmaps arbitraires sera désactivée." +"Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:100 msgid "" @@ -5253,7 +5275,7 @@ msgstr "" msgid "End Addr" msgstr "Addr Fin" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet ne s'est pas initialisé" @@ -5398,7 +5420,7 @@ msgstr "Rapport d'erreurs" msgid "Error Opening Adapter: %1" msgstr "Erreur lors de l'ouverture de l'adaptateur : %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Erreur lors de la récupération des données de sauvegarde !" @@ -5423,11 +5445,11 @@ msgid "Error occurred while loading some texture packs" msgstr "" "Une erreur est survenue lors de l'ouverture de certains packs de texture" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Erreur lors du traitement des codes." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Erreur lors du traitement des données." @@ -5435,11 +5457,11 @@ msgstr "Erreur lors du traitement des données." msgid "Error reading file: {0}" msgstr "Erreur de lecture du fichier : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Erreur lors de la synchronisation des cheat codes !" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Erreur lors de la synchronisation des données !" @@ -5762,14 +5784,14 @@ msgstr "" "\n" "Le Skylander est peut-être déjà sur le portail." -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Impossible de supprimer le fichier de sauvegarde NetPlay GBA{0}. Vérifiez " "que vous avez les droits d'écriture." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Impossible de créer la carte mémoire pour NetPlay. Vérifier vos permissions " @@ -5944,7 +5966,7 @@ msgstr "Impossible de modifier Skylander !" msgid "Failed to open \"%1\" for writing." msgstr "Impossible d'ouvrir \"%1\" en écriture." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Impossible d'ouvrir \"{0}\" en écriture." @@ -5956,7 +5978,7 @@ msgstr "Impossible d'ouvrir \"%1\"" #: Source/Core/Core/IOS/USB/Bluetooth/BTReal.cpp:648 msgid "Failed to open Bluetooth device {:04x}:{:04x}: {}" -msgstr "" +msgstr "Impossible d'ouvrir l'appareil Bluetooth {:04x}:{:04x}: {}" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:1101 msgid "Failed to open Branch Watch snapshot \"%1\"" @@ -6133,19 +6155,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Impossible de supprimer ce titre de la NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Impossible de réinitialiser le dossier GCI pour NetPlay. Vérifiez vos " "permissions d'écriture." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Impossible de réinitialiser le dossier NAND pour NetPlay. Vérifiez vos " "permissions d'écriture." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Impossible de réinitialiser le dossier de redirection de NetPlay. Vérifiez " @@ -6196,11 +6218,11 @@ msgstr "Impossible de désinstaller le pack %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Impossible d'écrire BT.DINF vers SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Impossible d'écrire les données du Mii." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Impossible d'écrire la sauvegarde Wii." @@ -6214,7 +6236,7 @@ msgstr "Impossible d'écrire le fichier de configuration !" msgid "Failed to write modified memory card to disk." msgstr "Impossible d'écrire la carte mémoire modifiée sur le disque." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Impossible d'écrire la sauvegarde redirigée." @@ -6928,7 +6950,7 @@ msgstr "Le jeu a un numéro de disque différent" msgid "Game has a different revision" msgstr "Le jeu a une révision différente" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Le jeu est déjà en cours d'émulation !" @@ -7289,16 +7311,16 @@ msgstr "Code de l'hôte :" #. i18n: Host Far Code Size #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:396 msgid "Host F. Size" -msgstr "" +msgstr "Taille F. hôte" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:614 msgid "Host Far Code Cache" -msgstr "" +msgstr "Cache du Far code de l'hôte" #. i18n: "Far Code" refers to the far code cache of Dolphin's JITs. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:642 msgid "Host Far Code Size" -msgstr "" +msgstr "Taille du Far code de l'hôte" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:193 msgid "Host Input Authority" @@ -7307,16 +7329,16 @@ msgstr "Autorité de l'hôte sur les entrées" #. i18n: Host Near Code Size #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:394 msgid "Host N. Size" -msgstr "" +msgstr "Taille N. hôte" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:613 msgid "Host Near Code Cache" -msgstr "" +msgstr "Cache Near code de l'hôte" #. i18n: "Near Code" refers to the near code cache of Dolphin's JITs. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:640 msgid "Host Near Code Size" -msgstr "" +msgstr "Taille Near code de l'hôte" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:195 msgid "" @@ -7345,7 +7367,7 @@ msgstr "Autorité de l'hôte sur les entrées activée" #. recompilation was when considering the host instruction count vs the PPC instruction count. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:241 msgid "Host instruction count: %1 near %2 far (%3% blowup)" -msgstr "" +msgstr "Décompte des instructions de l'hôte : %1 near, %2 far (%3% perdu)" #: Source/Core/DolphinQt/GameList/GameList.cpp:527 msgid "Host with NetPlay" @@ -7612,6 +7634,11 @@ msgid "" "graphical effects or gameplay-related features.

If " "unsure, leave this checked." msgstr "" +"Ignore toues les requêtes de lecture ou d'écriture du CPU vers l'EFB." +"

Améliore les performances dans certains jeux, mais désactivera tous " +"les effets graphiques ou fonctionnalités de gameplay basés sur l'EFB." +"

Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:93 msgid "Immediately Present XFB" @@ -8014,7 +8041,7 @@ msgstr "Sommes de contrôle non valides." msgid "Invalid game." msgstr "Jeu non valide." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Hôte non valide" @@ -8067,11 +8094,11 @@ msgstr "Adresse à surveiller non valide : %1" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:421 msgid "Invert &Condition" -msgstr "" +msgstr "Inverser &condition" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:425 msgid "Invert &Decrement Check" -msgstr "" +msgstr "Vérification inversion &décrémentation" #: Source/Core/DiscIO/Enums.cpp:92 #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:88 @@ -8171,8 +8198,8 @@ msgstr "" "ne devrait jamais arriver. Veuillez transmettre cet incident au suivi de " "bugs. Dolphin va maintenant quitter." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT n'est pas actif" @@ -8712,15 +8739,15 @@ msgstr "Échec de la connection" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:50 msgid "Login Failed - Invalid Username/Password" -msgstr "" +msgstr "Connexion échouée : utilisateur / mot de passe non valide" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:53 msgid "Login Failed - No Internet Connection" -msgstr "" +msgstr "Connexion échouée : pas de connexion à internet" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:56 msgid "Login Failed - Server Error" -msgstr "" +msgstr "Connexion échouée : erreur serveur" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:295 msgid "" @@ -8778,7 +8805,7 @@ msgstr "Stick principal" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:429 msgid "Make &Unconditional" -msgstr "" +msgstr "Rendre &inconditionnel" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:226 msgid "Make sure that the hero level value is between 0 and 100!" @@ -8861,7 +8888,7 @@ msgstr "Tampon maxi :" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:574 msgid "Max Effective Address" -msgstr "" +msgstr "Adresse effective max" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:931 msgid "Max buffer size changed to %1" @@ -8949,7 +8976,7 @@ msgstr "Micro" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:571 msgid "Min Effective Address" -msgstr "" +msgstr "Adresse effective mini" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:411 @@ -8970,7 +8997,7 @@ msgstr "Contrôles divers" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:162 msgid "Miscellaneous Settings" -msgstr "" +msgstr "Paramètres divers" #: Source/Core/DolphinQt/GCMemcardManager.cpp:844 msgid "Mismatch between free block count in header and actually unused blocks." @@ -9096,13 +9123,15 @@ msgstr "Multiplicateur" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:166 msgid "Mute When Disabling Speed Limit" -msgstr "" +msgstr "Muet lorsque la limite de vitesse est désactivée" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:168 msgid "" "Mutes the audio when overriding the emulation speed limit (default hotkey: " "Tab)." msgstr "" +"Désactive le son lorsque la limite de vitesse de l'émulation est levée " +"(raccourci clavier par défaut : Tab)." #: qtbase/src/gui/kernel/qplatformtheme.cpp:722 msgid "N&o to All" @@ -9871,15 +9900,15 @@ msgstr "Fichier d'image PNG (*.png);; Tous le fichiers (*)" #. i18n: PPC Feature Flags #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:386 msgid "PPC Feat. Flags" -msgstr "" +msgstr "Drapeaux fonc. PPC" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:633 msgid "PPC Feature Flags" -msgstr "" +msgstr "Drapeaux de fonctionnalités PPC" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:611 msgid "PPC Instruction Coverage" -msgstr "" +msgstr "Couverture des instructions PPC" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:605 msgid "PPC vs Host" @@ -10120,7 +10149,7 @@ msgstr "Joueurs" #: Source/Core/UICommon/DBusUtils.cpp:56 Source/Core/UICommon/DBusUtils.cpp:77 #: Source/Core/UICommon/DBusUtils.cpp:97 Source/Core/UICommon/DBusUtils.cpp:120 msgid "Playing a game" -msgstr "" +msgstr "Joue à un jeu" #. i18n: The total amount of time the Skylander has been used for #: Source/Core/DolphinQt/SkylanderPortal/SkylanderModifyDialog.cpp:143 @@ -10358,11 +10387,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "La Qualité de Service (QoS) n'a pas pu être activée." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "La Qualité de Service (QoS) a été activée avec succès." @@ -10447,7 +10476,7 @@ msgstr "Rem&placer l'instruction" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:600 msgid "Re-initialize software JIT block profiling data." -msgstr "" +msgstr "Réinitialise les données de profilage du bloc JIT du logiciel" #. i18n: This is a selectable condition when adding a breakpoint #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:134 @@ -10502,7 +10531,7 @@ msgstr "Recentrer" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:577 msgid "Recompiles Physical Address" -msgstr "" +msgstr "Recompile l'adresse physique" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:157 msgid "Record" @@ -10681,12 +10710,12 @@ msgstr "" #. i18n: Repeat Instructions #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:392 msgid "Repeat Instr." -msgstr "" +msgstr "Instr. répétées" #. i18n: This means to say it is a count of PPC instructions recompiled more than once. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:638 msgid "Repeat Instructions" -msgstr "" +msgstr "Instructions répétées" #: Source/Core/Core/HW/GCMemcard/GCMemcardDirectory.cpp:408 msgid "Report: GCIFolder Writing to unallocated block {0:#x}" @@ -10907,6 +10936,54 @@ msgid "" "All context menus have the action to delete the selected row(s) from the " "candidates." msgstr "" +"Vous pouvez faire un clic gauche sur les lignes du tableau sur les colonnes " +"d'origine, de destination et de symbole pour afficher l'adresse associée " +"dans la vue Code. Un clic droit sur la ou les lignes sélectionnées fera " +"apparaître un menu contextuel.\n" +"\n" +"Si les colonnes d'origine, de destination ou de symbole sont cliquées avec " +"le bout droit, une action de copie des adresses associées vers le presse-" +"papiers sera disponible, et une action pour définir un point d'arrêt aux " +"adresses associées sera disponible. Notez que pour les colonnes d'origine / " +"destination, ces actions ne seront activées que si chaque ligne de la " +"sélection contient un symbole.\n" +"\n" +"Si la colonne d'instructions d'une ligne sélectionnée est cliquée avec le " +"bouton droit, une action pour inverser les conditions d'instructions de la " +"branche et une action pour inverser la vérification de la décrémentation de " +"la branche seront disponibles, mais uniquement si l'instruction de la " +"branche est une conditionnelle.\n" +"\n" +"Si la colonne de condition d'une ligne sélectionnée est cliquée avec le " +"bouton droit, une action pour rendre l'instruction de branche " +"inconditionnelle sera disponible, mais uniquement si l'instruction de " +"branche est une conditionnelle.\n" +"\n" +"Si vous cliquez avec le bouton droit sur les colonnes d'origine, de " +"destination ou de symbole, une action de copie de l'adresse associée vers le " +"presse-papiers sera disponible, et une action pour définir le point d'arrêt " +"aux adresses associées sera disponible. Notez que, pour les colonnes de " +"symbole d'origine / destination, ces actions ne seront activées que si " +"chaque ligne dans la sélection contient un symbole.\n" +"\n" +"Si la colonne d'origine d'une sélection de ligne est cliquée avec le bouton " +"droit, une action pour remplacer l'instruction de la Branche à/aux " +"origine(s) avec une instruction NOP (No Operation - Aucune Opération) sera " +"disponible.\n" +"\n" +"Si la colonne de destination d'une sélection de ligne est cliquée avec le " +"bouton droit, une action pour remplacer l'instruction à/aux destination(s) " +"avec une instruction BLR (Branch to Link Register - Branche vers Registre de " +"Liens) sera disponible, mais uniquement si l'instruction de la branche à " +"chaque origine met à jour le registre de lien.\n" +"\n" +"Si la colonne de symbole d'origine ou de destination d'une sélection de " +"ligne est cliquée avec le bouton droit, une action pour remplacer le(s) " +"instruction(s) au début du symbole avec une instruction BLR sera disponible, " +"mais seulement si chaque symbole d'origine ou de destination est trouvé.\n" +"\n" +"Tous les menus contextuels ont l'action de supprimer le(s) lignes " +"sélectionnée(s) depuis les candidates." #: Source/Core/Core/HW/GCPadEmu.h:61 #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:287 @@ -10922,7 +10999,7 @@ msgstr "Exécu&ter jusqu'ici" #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:397 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:643 msgid "Run Count" -msgstr "" +msgstr "Décompte" #: Source/Core/DolphinQt/Settings/GameCubePane.cpp:203 msgid "Run GBA Cores in Dedicated Threads" @@ -11503,9 +11580,9 @@ msgstr "Police sélectionnée" msgid "Selected controller profile does not exist" msgstr "Le profil de contrôleur sélectionné n'existe pas" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11641,6 +11718,13 @@ msgid "" "recommended to try each and select the backend that is least problematic." "

If unsure, select %1." msgstr "" +"Sélectionne le moteur graphique à utiliser.

Le Rendu logiciel est " +"très lent et uniquement utilisé à des fins de débogage, donc n'importe quel " +"autre moteur est recommandé. Certains jeux et certains GPU ont un " +"comportement différent selon le moteur choisi, pour obtenir le meilleur " +"résultat il est recommandé de tester chaque moteur et de choisir celui qui " +"convient le mieux.

Dans le doute, sélectionnez %1." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -11725,7 +11809,7 @@ msgstr "Adresse IP du serveur" msgid "Server Port" msgstr "Port du serveur" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Le serveur a rejeté la tentative traversal" @@ -12569,7 +12653,7 @@ msgstr "Démarrer une nouvelle recherche de cheat" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:153 msgid "Start Profiling" -msgstr "" +msgstr "Démarrer le profilage" #: Source/Core/DolphinQt/MenuBar.cpp:796 msgid "Start Re&cording Input" @@ -12691,7 +12775,7 @@ msgstr "Arrêter de jouer/enregistrer l'entrée" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:153 msgid "Stop Profiling" -msgstr "" +msgstr "Arrêter le profilage" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:412 msgid "Stopped game" @@ -12906,7 +12990,7 @@ msgstr "Adresse de fin du symbole (%1) :" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:581 msgid "Symbol Name" -msgstr "" +msgstr "Nom du symbole" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:937 msgid "Symbol Name:" @@ -12954,15 +13038,15 @@ msgstr "" "Synchronise la carte SD avec le dossier de synchronisation de carte SD lors " "du démarrage et l'arrêt de l'émulation." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Synchronisation des codes AR..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Synchronisation des codes Gecko..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Synchronisation des données de sauvegarde..." @@ -13949,27 +14033,27 @@ msgstr "Tilt" #. i18n: Time Percent #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:407 msgid "Time %" -msgstr "" +msgstr "% temps" #. i18n: "ns" is an abbreviation of nanoseconds. #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:653 msgid "Time Average (ns)" -msgstr "" +msgstr "Temps moyen (ns)" #. i18n: Time Average (ns) #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:405 msgid "Time Avg. (ns)" -msgstr "" +msgstr "Temps moy. (ns)" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:654 msgid "Time Percent" -msgstr "" +msgstr "Pourcentage temps" #. i18n: "ns" is an abbreviation of nanoseconds. #: Source/Core/DolphinQt/Debugger/JitBlockTableModel.cpp:403 #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:651 msgid "Time Spent (ns)" -msgstr "" +msgstr "Temps utilisé (ns)" #. i18n: Refers to the "Calibration" setting of gyroscope input. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:49 @@ -14083,6 +14167,7 @@ msgstr "Activer le mode XFB immédiat" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:590 msgid "Toggle software JIT block profiling (will clear the JIT cache)." msgstr "" +"Active le profilage des blocs JIT du logiciel (ceci effacera le cache JIT)." #: Source/Core/InputCommon/ControlReference/ExpressionParser.cpp:966 msgid "Tokenizing failed." @@ -14176,7 +14261,7 @@ msgstr "Erreur de Traversal" msgid "Traversal Server" msgstr "Traversal Server" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Le serveur traveral n'a pas répondu lors de la connexion à l'hôte" @@ -14411,11 +14496,11 @@ msgstr "Inconnu (Id :%1 Var :%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Commande DVD inconnue {0:08x} - erreur fatale" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Message SYNC_CODES inconnu reçu avec l'id : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14423,11 +14508,11 @@ msgstr "" "Message SYNC_GECKO_CODES inconnu avec comme ID : {0}, reçu du joueur {1} . " "Exclusion du joueur !" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Message SYNC_SAVE_DATA inconnu reçu avec l'ID : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14459,7 +14544,7 @@ msgstr "Disque inconnu" msgid "Unknown error occurred." msgstr "Une erreur inconnue est survenue." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Erreur inconnue {0:x}" @@ -14471,7 +14556,7 @@ msgstr "Erreur inconnue." msgid "Unknown message received with id : {0}" msgstr "Reception d'un message inconnu avec l'ID : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 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 !" @@ -14662,6 +14747,18 @@ msgid "" "setting is enabled, the Texture Filtering setting will be disabled." "

If unsure, leave this unchecked." msgstr "" +"Utilise une implémentation manuelle d'échantillonnage de texture au lieu de " +"celle intégrée au moteur graphique.

Ce réglage peut corriger des " +"problèmes graphiques dans quelques jeux sur certains GPU, la plupart du " +"temps des lignes verticales sur des FMV. De plus, activer l'Échantillonnage " +"manuel de texture va permettre une émulation correcte de cas particuliers " +"d'emballage de texture (à 1x IR ou lorsque la mise à l'échelle de l'EFB est " +"désactivée, et avec les textures personnalisées désactivées) et émule mieux " +"les calculs de niveaux de détail.

Cela peut entraîner des pertes de " +"performance, particulièrement à des résolutions internes élevées.

Si " +"ce réglage est activé, le Réglage de texture sera désactivé." +"

Dans le doute, décochez cette case." #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:141 msgid "Use a single depth buffer for both eyes. Needed for a few games." @@ -14870,7 +14967,7 @@ msgstr "Affichage" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:625 msgid "View &Code" -msgstr "" +msgstr "Voir &code" #: Source/Core/DolphinQt/Debugger/RegisterWidget.cpp:142 #: Source/Core/DolphinQt/Debugger/ThreadWidget.cpp:132 @@ -15313,11 +15410,11 @@ msgstr "Effacer les données d'&inspection" #: Source/Core/DolphinQt/MenuBar.cpp:940 msgid "Wipe JIT Block Profiling Data" -msgstr "" +msgstr "Effacer les données du profilage des blocs JIT" #: Source/Core/DolphinQt/Debugger/JITWidget.cpp:599 msgid "Wipe Profiling" -msgstr "" +msgstr "Effacer le profilage" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:399 msgid "Wipe Recent Hits" @@ -15390,7 +15487,7 @@ msgstr "Mauvaise révision" msgid "Wrote to \"%1\"." msgstr "Écrit vers \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Écrit vers \"{0}\"." @@ -15782,11 +15879,11 @@ msgstr "{0} (NKit)" 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" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} n'a pas pu synchroniser les codes." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} n'a pas pu synchroniser." diff --git a/Languages/po/hr.po b/Languages/po/hr.po index 24ffe4cd6a..412e243d24 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1546,11 +1546,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4703,7 +4703,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4846,7 +4846,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4869,11 +4869,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4881,11 +4881,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5193,12 +5193,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5351,7 +5351,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5511,15 +5511,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5562,11 +5562,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Neuspjeh u pisanju BT.DINF u SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5580,7 +5580,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6227,7 +6227,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Igra je već pokrenuta!" @@ -7196,7 +7196,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7348,8 +7348,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9402,11 +9402,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10511,9 +10511,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "Odabrani profil kontrolera ne postoji." -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10655,7 +10655,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11763,15 +11763,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12806,7 +12806,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13013,21 +13013,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13057,7 +13057,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13069,7 +13069,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13873,7 +13873,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14210,11 +14210,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/hu.po b/Languages/po/hu.po index 5c6d553a4b..55066500b1 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1562,11 +1562,11 @@ msgstr "" msgid "All files (*)" msgstr "Minden fájl (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Minden játékos kódjai szinkronizálva." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Minden játékos mentései szinkronizálva." @@ -2716,7 +2716,7 @@ msgstr "" msgid "Code:" msgstr "Kód:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3596,7 +3596,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4736,7 +4736,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet nincs inicializálva" @@ -4879,7 +4879,7 @@ msgstr "Hibanapló" msgid "Error Opening Adapter: %1" msgstr "Hiba az adapter megnyitásakor: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4903,11 +4903,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Kódfeldolgozási hiba." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Adatfeldolgozási hiba." @@ -4915,11 +4915,11 @@ msgstr "Adatfeldolgozási hiba." msgid "Error reading file: {0}" msgstr "Hiba a fájl olvasása közben: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Hiba a csaláskódok szinkronizálása közben!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Hiba a mentett adatok szinkronizálása közben!" @@ -5229,12 +5229,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5389,7 +5389,7 @@ msgstr "Nem sikerült módosítani a Skylander-t!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5553,15 +5553,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Nem sikerült eltávolítani ezt a játékot a NAND-ról." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5604,11 +5604,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "A BT.DINF írása a SYSCONF fájlba sikertelen" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Mii adat írása sikertelen." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Wii mentés írása sikertelen." @@ -5622,7 +5622,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6287,7 +6287,7 @@ msgstr "A játéknak eltér a lemezszáma." msgid "Game has a different revision" msgstr "A játéknak eltér a verziója" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "A játék már fut!" @@ -7256,7 +7256,7 @@ msgstr "" msgid "Invalid game." msgstr "Érvénytelen játék." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Érvénytelen gazda" @@ -7409,8 +7409,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "A JIT nem aktív" @@ -9480,11 +9480,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "A Quality of Service (QoS) sikeresen engedélyezve." @@ -10141,7 +10141,7 @@ msgstr "" #: Source/Core/DolphinQt/MenuBar.cpp:1789 msgid "Save Combined Output File As" -msgstr "" +msgstr "Kombinált kimeneti fájl mentése, mint..." #: Source/Core/DolphinQt/ConvertDialog.cpp:379 msgid "Save Converted Image" @@ -10593,9 +10593,9 @@ msgstr "Kiválasztott betűtípus" msgid "Selected controller profile does not exist" msgstr "A megadott vezérlő profil nem létezik" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10737,7 +10737,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "A szerver elutasította az átjárási kérelmet" @@ -11860,15 +11860,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "AR kódok szinkronizálása..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Gecko kódok szinkronizálása..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Mentett adatok szinkronizálása..." @@ -12925,7 +12925,7 @@ msgstr "" msgid "Traversal Server" msgstr "Átjárási szerver" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Időtúllépés az átjárási szerver és a gazda csatlakozásakor" @@ -13132,21 +13132,21 @@ msgstr "Ismeretlen (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Ismeretlen DVD parancs {0:08x} - végzetes hiba" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Ismeretlen SYNC_CODES üzenet érkezett az alábbi azonosítóval: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Ismeretlen SYNC_SAVE_DATA üzenet érkezett az alábbi azonosítóval: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13176,7 +13176,7 @@ msgstr "Ismeretlen lemez" msgid "Unknown error occurred." msgstr "Ismeretlen hiba lépett fel." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Ismeretlen hiba {0:x}" @@ -13188,7 +13188,7 @@ msgstr "Ismeretlen hiba." msgid "Unknown message received with id : {0}" msgstr "Ismeretlen üzenet érkezett az alábbi azonosítóval: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13998,7 +13998,7 @@ msgstr "Helytelen revízió" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14338,11 +14338,11 @@ msgstr "{0} (NKit)" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} kódok szinkronizálása sikertelen." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} szinkronizálása sikertelen." diff --git a/Languages/po/it.po b/Languages/po/it.po index 3fa881332b..fe99d21976 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mewster , 2023-2024\n" "Language-Team: Italian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1673,11 +1673,11 @@ msgstr "Tutto Unsigned Integer" msgid "All files (*)" msgstr "Tutti i file (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Tutti i codici dei giocatori sono sincronizzati." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Tutti i salvataggi dei giocatori sono sincronizzati." @@ -2903,7 +2903,7 @@ msgstr "Code Path percorso" msgid "Code:" msgstr "Codice:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Codici ricevuti!" @@ -3928,7 +3928,7 @@ msgstr "Dati in un formato non riconosciuto o corrotti." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Inconsistenza nei dati in GCMemcardManager, azione annullata." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Dati ricevuti!" @@ -5233,7 +5233,7 @@ msgstr "" msgid "End Addr" msgstr "Fine Ind" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet non è stato inizializzato" @@ -5380,7 +5380,7 @@ msgstr "Log errori" msgid "Error Opening Adapter: %1" msgstr "Errore apertura adattatore: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Errore recuperando i salvataggi!" @@ -5404,11 +5404,11 @@ msgstr "Errore durante l'ottenimento della lista delle sessioni: %1" msgid "Error occurred while loading some texture packs" msgstr "Si è verificato un errore durante il caricamento dei texture pack" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Errore processando i codici." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Errore processando i dati." @@ -5416,11 +5416,11 @@ msgstr "Errore processando i dati." msgid "Error reading file: {0}" msgstr "Errore durante la lettura del file: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Errore sincronizzando i cheat code!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Errore sincronizzando i dati di salvataggio!" @@ -5742,14 +5742,14 @@ msgstr "" "\n" "Lo Skylander potrebbe già essere nel portale" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Impossibile eliminare il file di salvataggio NetPlay GBA{0}. Controlla di " "avere i corretti permessi di scrittura." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Impossibile eliminare la memory card NetPlay. Controlla di avere i corretti " @@ -5924,7 +5924,7 @@ msgstr "Impossibile modificare lo Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Fallita l'apertura di \"%1\" per la scrittura." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Fallita l'apertura di \"{0}\" per la scrittura." @@ -6113,19 +6113,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Fallita rimozione del titolo dalla NAND" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Impossibile resettare la cartella NetPlay GCI. Controlla di avere i corretti " "permessi di scrittura." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Impossibile resettare la cartella NetPlay NAND. Controlla di avere i " "corretti permessi di scrittura." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Impossibile resettare la cartella di reindirizzamento NetPlay. Controlla di " @@ -6174,11 +6174,11 @@ msgstr "Fallista disinstallazione del pack: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Scrittura di BT.DINF su SYSCONF non riuscita" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Fallita scrittura dei dati Mii." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Fallita scrittura del salvataggio Wii." @@ -6192,7 +6192,7 @@ msgstr "Fallita la scrittura del file di configurazione!" msgid "Failed to write modified memory card to disk." msgstr "Impossibile scrivere la memory card modificata sul disco." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Fallita scrittura del salvataggio redirezionato." @@ -6901,7 +6901,7 @@ msgstr "Il gioco ha un diverso numero di disco" msgid "Game has a different revision" msgstr "Il gioco ha una revisione differente" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Il gioco è già in esecuzione!" @@ -7981,7 +7981,7 @@ msgstr "Checksum invalidi." msgid "Invalid game." msgstr "Gioco non valido." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Host non valido" @@ -8138,8 +8138,8 @@ msgstr "" "cache. Questo non dovrebbe mai accadere. Per cortesia segnala questo " "problema nel bug tracker. Dolphin ora terminerà." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT non è attivo" @@ -10315,11 +10315,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Impossibile abilitare Quality of Service (QoS)." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) abilitato con successo." @@ -11494,9 +11494,9 @@ msgstr "Font selezionato" msgid "Selected controller profile does not exist" msgstr "Il profilo controller selezionato non esiste" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11631,6 +11631,13 @@ msgid "" "recommended to try each and select the backend that is least problematic." "

If unsure, select %1." msgstr "" +"Seleziona quale API grafica usare internamente.

Il renderer software " +"è estremamente lento, e viene utilizzato solo a scopo di debug, quindi è " +"consigliato qualsiasi altro backend. I giochi e le GPU si comporteranno in " +"modo diverso a seconda del motore utilizzato, quindi per una migliore " +"esperienza si consiglia di provarli tutti e scegliere il backend che sembra " +"più compatibile.

Nel dubbio, seleziona %1." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -11713,7 +11720,7 @@ msgstr "Indirizzo IP del server" msgid "Server Port" msgstr "Porta del server" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" "Il server ha rifiutato il tentativo di connessione in modalità traversal" @@ -12928,15 +12935,15 @@ msgstr "" "Sincronizza la Scheda SD con la Cartella Sync SD all'inizio e al termine " "dell'emulazione." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Sincronizzazione codici AR..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Sincronizzazione codici Gecko..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Sincronizzazione dei dati di salvataggio in corso..." @@ -14139,7 +14146,7 @@ msgstr "Errore traversal" msgid "Traversal Server" msgstr "Traversal server" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" "Il traversal server è andato in time out durante la connessione con l'host." @@ -14374,11 +14381,11 @@ msgstr "Sconosciuto (id:%1 var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando DVD {0:08x} sconosciuto - errore fatale" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Messaggio SYNC_CODES sconosciuto ricevuto con id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14386,11 +14393,11 @@ msgstr "" "Ricevuto messaggio SYNC_GECKO_CODES sconosciuto con id:{0} dal giocatore:{1} " "Giocatore espulso!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Messaggio SYNC_SAVE_DATA sconosciuto ricevuto con id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14422,7 +14429,7 @@ msgstr "Disco sconosciuto" msgid "Unknown error occurred." msgstr "Si è verificato un errore sconosciuto." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Errore sconosciuto {0:x}" @@ -14434,7 +14441,7 @@ msgstr "Errore sconosciuto." msgid "Unknown message received with id : {0}" msgstr "Ricevuto messaggio sconosciuto con id : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Ricevuto messaggio sconosciuto con id:{0} ricevuto dal giocatore:{1} " @@ -15354,7 +15361,7 @@ msgstr "Revisione errata" msgid "Wrote to \"%1\"." msgstr "Scritto su \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Scritto su \"{0}\"." @@ -15745,11 +15752,11 @@ 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" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} ha fallito la sincronizzazione dei codici." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} ha fallito la sincronizzazione." diff --git a/Languages/po/ja.po b/Languages/po/ja.po index 2d7df7b32d..3d809e9021 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 難波 鷹史, 2023-2024\n" "Language-Team: Japanese (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1643,11 +1643,11 @@ msgstr "すべての符号なし整数" msgid "All files (*)" msgstr "すべてのファイル (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "すべてのプレイヤーのチートコードは同期されました" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "すべてのプレイヤーのセーブデータは同期されました" @@ -2831,7 +2831,7 @@ msgstr "" msgid "Code:" msgstr "コード:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "コードを受け取りました!" @@ -3791,7 +3791,7 @@ msgstr "Data in unrecognized format or corrupted." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "GCMemcardManagerのデータ不整合です、動作を中断します。" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "データが受信されました!" @@ -5042,7 +5042,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet Didn't Initialize" @@ -5187,7 +5187,7 @@ msgstr "エラーログ" msgid "Error Opening Adapter: %1" msgstr "アダプタのオープン時にエラーが発生しました: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "セーブデータ収集時にエラーが発生しました!" @@ -5210,11 +5210,11 @@ msgstr "セッションリストの取得エラー: %1" msgid "Error occurred while loading some texture packs" msgstr "テクスチャパックの読み込み中にエラーが発生しました" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "コード処理エラー。" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "データ処理中にエラーが発生しました" @@ -5222,11 +5222,11 @@ msgstr "データ処理中にエラーが発生しました" msgid "Error reading file: {0}" msgstr "ファイルの読み取りエラー: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "チートコードの同期中にエラーが発生しました!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "セーブデータ同期中にエラー発生!" @@ -5543,14 +5543,14 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "NetPlay GBA{0}セーブファイルの削除に失敗しました。書き込み権限を確認してくだ" "さい。" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "ネットプレイ メモリカードの削除に失敗しました。書き込み権限を確認してください" @@ -5721,7 +5721,7 @@ msgstr "Skylanderの修正に失敗しました!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5890,19 +5890,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "タイトルの消去に失敗" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "ネットプレイ GCIフォルダのリセットに失敗しました。書き込み権限を確認してくだ" "さい" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "ネットプレイ NANDフォルダのリセットに失敗しました。書き込み権限を確認してくだ" "さい" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "NetPlayリダイレクトフォルダのリセットに失敗しました。書き込み権限を確認してく" @@ -5950,11 +5950,11 @@ msgstr "リソースパック %1 のアンインストールに失敗しまし msgid "Failed to write BT.DINF to SYSCONF" msgstr "Failed to write BT.DINF to SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Mii データの書き込みに失敗しました。" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Wii セーブデータの書き込みに失敗しました" @@ -5968,7 +5968,7 @@ msgstr "設定ファイルの書き込みに失敗!" msgid "Failed to write modified memory card to disk." msgstr "変更されたメモリーカードのディスクへの書き込みに失敗しました。" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "リダイレクトセーブの書き込みに失敗しました。" @@ -6672,7 +6672,7 @@ msgstr "ゲームのディスク番号が違います" msgid "Game has a different revision" msgstr "ゲームのリビジョンが違います" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "すでに起動しています!" @@ -7725,7 +7725,7 @@ msgstr "チェックサムが無効です。" msgid "Invalid game." msgstr "無効なゲームです。" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "このホストコードは無効です" @@ -7880,8 +7880,8 @@ msgstr "" "このエラーは起こらないはずです。この状況をバグトラッカーへ報告してください。" "Dolphinを終了します。" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -10030,11 +10030,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Quality of Service (QoS) は有効になりませんでした" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) が有効になっています" @@ -11165,9 +11165,9 @@ msgstr "選択したフォント" msgid "Selected controller profile does not exist" msgstr "選択されたプロファイルは存在しません" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11325,7 +11325,7 @@ msgstr "サーバーのIPアドレス" msgid "Server Port" msgstr "サーバーのポート" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "サーバーが中継処理を拒否しました" @@ -12509,15 +12509,15 @@ msgstr "" "エミュレーション開始から終了までに発生したSDカードへの変更内容を同期するフォ" "ルダを設定" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "アクションリプレイコードの同期中..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Geckoコードの同期中..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "セーブデータの同期中..." @@ -13699,7 +13699,7 @@ msgstr "トラバーサルエラー" msgid "Traversal Server" msgstr "中継サーバー (Traversal)" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "中継サーバーからホストへの接続がタイムアウト" @@ -13929,11 +13929,11 @@ msgstr "不明 (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "不明な DVD コマンド {0:08x} - 致命的なエラー" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "不明な SYNC_CODES メッセージを id: {0} で受信しました" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -13941,11 +13941,11 @@ msgstr "" "不明な SYNC_GECKO_CODES メッセージ、id:{0} を player:{1} から受信しました。プ" "レイヤーをキックしています!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "不明な SYNC_SAVE_DATA メッセージを id: {0} で受信しました" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13977,7 +13977,7 @@ msgstr "Unknown disc" msgid "Unknown error occurred." msgstr "Unknown error occurred." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "不明なエラー {0:x}" @@ -13989,7 +13989,7 @@ msgstr "Unknown error." msgid "Unknown message received with id : {0}" msgstr "不明なメッセージをid : {0} で受信しました" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "プレイヤー:{1} から id:{0} の不明なメッセージを受信しました。プレイヤーをキッ" @@ -14881,7 +14881,7 @@ msgstr "間違ったリビジョンです" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -15271,11 +15271,11 @@ msgstr "" "{1} ディレクトリに {0} IPL が見つかりました。ディスクが認識されていない可能性" "があります" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} はコードの同期に失敗しました。" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} は同期に失敗しました。" diff --git a/Languages/po/ko.po b/Languages/po/ko.po index 0f67032916..c5f1d313d2 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Siegfried, 2013-2023\n" "Language-Team: Korean (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1628,11 +1628,11 @@ msgstr "모든 비부호화 정수" msgid "All files (*)" msgstr "모든 파일 (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "모든 플레이어의 코드가 동기화되었습니다." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "모든 플레이어의 저장이 동기화되었습니다." @@ -2812,7 +2812,7 @@ msgstr "" msgid "Code:" msgstr "코드:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "코드들을 받았습니다!" @@ -3756,7 +3756,7 @@ msgstr "데이터가 인식불가 형식이거나 오염되었습니다." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "GC메모리메니저에서 데이터 비일관성, 액션을 중단함." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "데이터를 받았습니다!" @@ -4987,7 +4987,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet이 초기화되지 않았습니다." @@ -5130,7 +5130,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "어댑터 열기 에러: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "저장 데이터 수집 에러!" @@ -5153,11 +5153,11 @@ msgstr "에러가 있는 세션 목록: %1" msgid "Error occurred while loading some texture packs" msgstr "일부 텍스처 팩을 로딩하는 중에 에러가 발생했습니다" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "코드들 처리 에러." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "데이터 처리 에러." @@ -5165,11 +5165,11 @@ msgstr "데이터 처리 에러." msgid "Error reading file: {0}" msgstr "파일 읽기 에러: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "치트 코드들 동기화 에러!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "저장 데이터 동기화 에러!" @@ -5485,12 +5485,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "넷플레이 GBA{0} 저장 파일 삭제에 실패했습니다. 쓰기 권한을 검증하세요." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "넷플레이 메모리 카드를 삭제에 실패했습니다. 쓰기 권한을 검증하세요." @@ -5660,7 +5660,7 @@ msgstr "스카이랜더 수정에 실패했습니다!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5828,15 +5828,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "NAND 에서 이 타이틀 제거에 실패했습니다." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "넷플레이 GCI 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "넷플레이 NAND 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "넷플레이 리다이렉트 폴더 재설정에 실패했습니다. 쓰기 권한을 검증하세요." @@ -5883,11 +5883,11 @@ msgstr "팩 언인스톨에 실패했습니다: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "BT.DINF를 SYSCONF로 쓰지 못했습니다." -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Mii 데이터 쓰기에 실패했습니다." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Wii 저장 쓰기에 실패했습니다." @@ -5901,7 +5901,7 @@ msgstr "환경 파일 쓰기에 실패했습니다!" msgid "Failed to write modified memory card to disk." msgstr "수정된 메모리 카드를 디스크에 쓰기를 실패했습니다." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "리다이렉트된 저장 쓰기에 실패했습니다." @@ -6594,7 +6594,7 @@ msgstr "게임이 다른 디스크 넘버를 가지고 있습니다" msgid "Game has a different revision" msgstr "게임이 다른 개정을 가지고 있습니다" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "게임이 이미 구동중입니다!" @@ -7640,7 +7640,7 @@ msgstr "부적합 체크섬" msgid "Invalid game." msgstr "부적합한 게임." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "부적합 호스트" @@ -7794,8 +7794,8 @@ msgstr "" "JIT 이 캐시 청소후에 코드 공간 찾기에 실패했습니다. 이것은 절대 일어나서는 안" "됩니다. 버그 트랙커에 이 사고를 보고해주세요. 돌핀은 지금 나갈 것입니다." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9929,11 +9929,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "QT_레이아웃_방향" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "서비스의 품질 (QoS) 이 활성화될 수 없었습니다." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "서비스의 품질 (QoS) 이 성공적으로 활성화되었습니다." @@ -11058,9 +11058,9 @@ msgstr "선택된 폰트" msgid "Selected controller profile does not exist" msgstr "선택된 컨트롤러 프로파일이 존재하지 않습니다" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11216,7 +11216,7 @@ msgstr "서버 IP 주소" msgid "Server Port" msgstr "서버 포트" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "서버가 횡단 시도를 거절했습니다" @@ -12392,15 +12392,15 @@ msgid "" "emulation." msgstr "시작과 끝내기 에뮬레이션 때 SD 동기화 폴더와 SD 카드를 동기화합니다." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "AR 코드들을 동기화합니다..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Gecko 코드들을 동기화합니다..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "저장 데이터를 동기화합니다..." @@ -13568,7 +13568,7 @@ msgstr "횡단 에러" msgid "Traversal Server" msgstr "횡단 서버" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "횡단 서버가 호스트에 연결중 시간이 초과되었습니다." @@ -13799,11 +13799,11 @@ msgstr "알려지지 않음 (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "알려지지 않은 DVD 명령 {0:08x} - 치명적 오류" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "알려지지 않은 SYNC_CODES 메시지를 받았습니다 id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -13811,11 +13811,11 @@ msgstr "" "알려지지 않은 SYNC_GECKO_CODES 메시지 id:{0} 를 플레이어:{1} 로 부터 받았습니" "다 플레이어 퇴장시키기!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "알려지지 않은 SYNC_SAVE_DATA 메시지를 받았습니다 id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13847,7 +13847,7 @@ msgstr "알려지지 않은 디스크" msgid "Unknown error occurred." msgstr "알려지지 않은 에러가 발생했습니다." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "알려지지 않은 오류 {0:x}" @@ -13859,7 +13859,7 @@ msgstr "알려지지 않은 오류." msgid "Unknown message received with id : {0}" msgstr "id : {0} 의 알려지지 않은 메시지를 받았습니다" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "알려지지 않은 메시지 id:{0} 를 플레이어:{1} 로부터 받았습니다 플레이어 강퇴!" @@ -14743,7 +14743,7 @@ msgstr "잘못된 개정" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -15127,11 +15127,11 @@ msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" "{1} 디렉토리에서 {0} IPL이 발견되었습니다. 디스크가 인식되지 않은 것 같습니다" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr " {0} 코드 동기화에 실패했습니다." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} 동기화에 실패했습니다." diff --git a/Languages/po/ms.po b/Languages/po/ms.po index 212115993d..9e4f104bcf 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: abuyop , 2018\n" "Language-Team: Malay (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1565,11 +1565,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2717,7 +2717,7 @@ msgstr "" msgid "Code:" msgstr "Kod:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3599,7 +3599,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4742,7 +4742,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet Tidak Diawalkan" @@ -4885,7 +4885,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4907,11 +4907,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4919,11 +4919,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5235,12 +5235,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5395,7 +5395,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5555,15 +5555,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Gagal membuang tajuk ini dari NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5606,11 +5606,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Gagal menulis BT.DINF ke SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6273,7 +6273,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Permainan sudah berjalan!" @@ -7254,7 +7254,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Hos tidak sah" @@ -7406,8 +7406,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9472,11 +9472,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10583,9 +10583,9 @@ msgstr "Fon Terpilih" msgid "Selected controller profile does not exist" msgstr "Profil pengawal terpilih tidak wujud" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10727,7 +10727,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Pelayan menolak percubaan travesal" @@ -11840,15 +11840,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12907,7 +12907,7 @@ msgstr "Ralat Traversal" msgid "Traversal Server" msgstr "Pelayan Traversal" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Pelayan travesal tamat masa ketika menyambung ke hos" @@ -13120,21 +13120,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13164,7 +13164,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13176,7 +13176,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13984,7 +13984,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14325,11 +14325,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/nb.po b/Languages/po/nb.po index 61d2188a1c..70a6b10db6 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: d1fcc80a35d5442129c384ac221ef98f_d2a8fa7 " ", 2015\n" @@ -1593,11 +1593,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Alle spilleres koder er synkronisert." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Alle spilleres lagringsfiler er synkronisert." @@ -2750,7 +2750,7 @@ msgstr "" msgid "Code:" msgstr "Kode:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Koder mottatt!" @@ -3638,7 +3638,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Data mottatt!" @@ -4782,7 +4782,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enhet ble ikke igangsatt" @@ -4925,7 +4925,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "Feil under åpning av adapter: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4948,11 +4948,11 @@ msgstr "Feil ved henting av sesjonsliste: %1" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Feil ved synkronisering av juksekoder." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Feil ved bearbeidelse av data." @@ -4960,11 +4960,11 @@ msgstr "Feil ved bearbeidelse av data." msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Feil ved synkronisering av juksekoder!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Feil ved synkronisering av lagringsdata!" @@ -5278,12 +5278,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "Kunne ikke slette NetPlay-minnekort. Verifiser dine skrivetillatelser." @@ -5438,7 +5438,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5600,18 +5600,18 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Kunne ikke fjerne denne tittelen fra NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Kunne ikke tilbakestille NetPlay GCI-mappe. Verifiser dine skrivetillatelser." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Kunne ikke tilbakestille NetPlay NAND-mappe. Verifiser dine " "skrivetillatelser." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5654,11 +5654,11 @@ msgstr "Kunne ikke avinstallere pakke: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Kunne ikke skrive BT.DINF til SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Skriving av Mii-data mislyktes." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Skriving til Wii-lagringsfil mislyktes." @@ -5672,7 +5672,7 @@ msgstr "Kunne ikke skrive til konfigurasjonsfilen!" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6324,7 +6324,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Spillet kjører allerede!" @@ -7304,7 +7304,7 @@ msgstr "Ugyldige sjekksummer." msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Ugyldig vert" @@ -7456,8 +7456,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9537,11 +9537,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Quality of Service (QoS) kunne ikke aktiveres." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) ble aktivert." @@ -10651,9 +10651,9 @@ msgstr "Valgt skrifttype" msgid "Selected controller profile does not exist" msgstr "Valgt kontrolprofil finnes ikke" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10795,7 +10795,7 @@ msgstr "IP-adresse for server" msgid "Server Port" msgstr "Serverport" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Tjeneren avslo traverseringsforsøk" @@ -11912,15 +11912,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Synkroniserer AR-koder..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Synkroniserer Gecko-koder..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Synkroniserer lagringsdata..." @@ -13014,7 +13014,7 @@ msgstr "Traverseringsfeil" msgid "Traversal Server" msgstr "Traverserings-tjener" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Tidsavbrudd for traverseringstjener under tilkobling til vert" @@ -13233,21 +13233,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13277,7 +13277,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13289,7 +13289,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -14097,7 +14097,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14440,11 +14440,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/nl.po b/Languages/po/nl.po index 7163e57d2f..c5e3c8785d 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1657,11 +1657,11 @@ msgstr "Alles Unsigned Integer" msgid "All files (*)" msgstr "Alle Bestanden (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Codes van alle spelers gesynchroniseerd." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Saves van alle spelers gesynchroniseerd." @@ -2854,7 +2854,7 @@ msgstr "Code Pad Werd Genomen" msgid "Code:" msgstr "Code:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Codes ontvangen!" @@ -3807,7 +3807,7 @@ msgstr "Data in onherkenbaar formaat of corrupt." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Data inconsistent in GCMemcardManager, actie afbreken." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Data ontvangen!" @@ -5034,7 +5034,7 @@ msgstr "" msgid "End Addr" msgstr "Eind Adres" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet niet geïnitialiseerd" @@ -5177,7 +5177,7 @@ msgstr "Fout Log" msgid "Error Opening Adapter: %1" msgstr "Fout bij openen van adapter: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Fout bij verzamelen van save data!" @@ -5201,11 +5201,11 @@ msgstr "Fout in het verkrijgen van sessie lijst: %1" msgid "Error occurred while loading some texture packs" msgstr "Fout opgetreden bij het laden van sommige texture packs" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Fout bij verwerking van codes." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Fout bij het verwerken van data." @@ -5213,11 +5213,11 @@ msgstr "Fout bij het verwerken van data." msgid "Error reading file: {0}" msgstr "Fout bij het lezen van bestand: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Fout bij het synchroniseren van cheat codes!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Fout bij synchroniseren van save data!" @@ -5539,14 +5539,14 @@ msgstr "" "%1\n" "Skylander is mogelijk al op het portal" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "NetPlay GBA{0} save bestand verwijderen mislukt. Controleer uw " "schrijfrechten." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Kon de NetPlay-geheugenkaart niet verwijderen. Controleer uw schrijfrechten." @@ -5719,7 +5719,7 @@ msgstr "Mislukt om Skylander te wijzigen!" msgid "Failed to open \"%1\" for writing." msgstr "Mislukt om \"%1\" te openen voor schrijven." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Mislukt om \"{0}\" te openen voor schrijven." @@ -5903,15 +5903,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Kon deze titel niet van de NAND verwijderen." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "Kon NetPlay CGI-map niet resetten. Controleer uw schrijfrechten." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "Kon NetPlay NAND-map niet resetten. Controleer uw schrijfrechten." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "Kon NetPlay omleid map niet resetten. Controleer uw schrijfrechten." @@ -5954,11 +5954,11 @@ msgstr "Het is niet gelukt om het pakket te deïnstalleren: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Het schrijven van BT.DINF naar SYSCONF is mislukt" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Kon Mii data niet schrijven." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Kon Wii-save niet schrijven." @@ -5972,7 +5972,7 @@ msgstr "Kon configuratiebestand niet schrijven!" msgid "Failed to write modified memory card to disk." msgstr "Schrijven van gewijzigde geheugenkaart naar schijf mislukt." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Schrijven van omgeleide save mislukt." @@ -6673,7 +6673,7 @@ msgstr "Spel heeft een ander schijf nummer" msgid "Game has a different revision" msgstr "Spel heeft een andere revisie" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Het spel draait al!" @@ -7729,7 +7729,7 @@ msgstr "Ongeldige controlesom" msgid "Invalid game." msgstr "Ongeldig spel" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Ongeldige host" @@ -7885,8 +7885,8 @@ msgstr "" "nooit moeten gebeuren. Meld dit incident alstublieft via de bugtracker. " "Dolphin zal nu afsluiten." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT is niet actief" @@ -10026,11 +10026,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Quality of Service (QoS) kan niet worden geactiveerd." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) is succesvol geactiveerd." @@ -11161,9 +11161,9 @@ msgstr "Selecteer Font" msgid "Selected controller profile does not exist" msgstr "Geselecteerde controller profiel bestaat niet" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11322,7 +11322,7 @@ msgstr "Server IP-adres" msgid "Server Port" msgstr "Server Poort" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Server heeft traversal poging geweigerd" @@ -12506,15 +12506,15 @@ msgstr "" "Synchroniseert de SD-kaart met de SD Sync-map bij het starten en beëindigen " "van emulatie." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "AR Codes aan het Synchroniseren..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Gecko Codes aan het Synchroniseren..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Synchroniseren van save data..." @@ -13718,7 +13718,7 @@ msgstr "Traversalfout" msgid "Traversal Server" msgstr "Traversal Server" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Traversal server time-out tijdens het verbinden met de host" @@ -13952,11 +13952,11 @@ msgstr "Onbekend (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Onbekend DVD commando {0:08x} - fatale fout" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Onbekend SYNC_CODES bericht ontvangen met id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -13964,11 +13964,11 @@ msgstr "" "Onbekend SYNC_GECKO_CODES bericht met ID:{0} ontvangen van speler:{1} Speler " "wordt gekickt!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Onbekend SYNC_SAVE_DATA-bericht ontvangen met id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14000,7 +14000,7 @@ msgstr "Onbekende disc" msgid "Unknown error occurred." msgstr "Onbekende fout opgetreden." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Onbekende fout {0:x}" @@ -14012,7 +14012,7 @@ msgstr "Onbekende fout." msgid "Unknown message received with id : {0}" msgstr "Onbekend bericht ontvangen met id : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Onbekend bericht ontvangen met id: {0} ontvangen van speler: {1} Speler " @@ -14906,7 +14906,7 @@ msgstr "Verkeerde revisie" msgid "Wrote to \"%1\"." msgstr "Schreef naar \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Schreef naar \"{0}\"." @@ -15298,11 +15298,11 @@ 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" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} kon codes niet synchroniseren." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} kon niet synchroniseren." diff --git a/Languages/po/pl.po b/Languages/po/pl.po index a669df118a..3cd4b5fd75 100644 --- a/Languages/po/pl.po +++ b/Languages/po/pl.po @@ -7,7 +7,7 @@ # 34ba8a7eb76c48fb49891da2e2963da9_925f4ca <7ca6ebd7936207a8dceccbfbe50ae1c6_255489>, 2015 # 34ba8a7eb76c48fb49891da2e2963da9_925f4ca <7ca6ebd7936207a8dceccbfbe50ae1c6_255489>, 2015 # Filip Grabowski , 2016-2019 -# FlexBy, 2021,2023 +# FlexBy, 2021,2023-2024 # Jan Kowalski , 2020 # Kacper “goSciu” Mrówka , 2017 # Krzysztof Baszczok , 2011,2013 @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" -"Last-Translator: FlexBy, 2021,2023\n" +"Last-Translator: FlexBy, 2021,2023-2024\n" "Language-Team: Polish (http://app.transifex.com/dolphinemu/dolphin-emu/" "language/pl/)\n" "Language: pl\n" @@ -163,7 +163,7 @@ msgstr "" #. changes #: Source/Core/DolphinQt/Debugger/AssemblerWidget.cpp:714 msgid "%1 *" -msgstr "" +msgstr "%1 *" #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:318 msgid "" @@ -217,11 +217,11 @@ msgstr "%1 wyszedł" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:124 msgid "%1 has unlocked %2/%3 achievements worth %4/%5 points" -msgstr "" +msgstr "%1 odblokował %2/%3 osiągnięcia warte %4/%5 punktów" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1120 msgid "%1 is not a valid ROM" -msgstr "" +msgstr "%1 nie jest prawidłowym ROM-em" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:1044 msgid "%1 is now golfing" @@ -229,7 +229,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:123 msgid "%1 is playing %2" -msgstr "" +msgstr "%1 gra w %2" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:118 msgid "%1 memory ranges" @@ -255,11 +255,11 @@ msgstr "Znaleziono %1 sesji" #: Source/Core/DolphinQt/Settings/AudioPane.cpp:425 msgid "%1%" -msgstr "" +msgstr "%1%" #: Source/Core/DolphinQt/Settings/AdvancedPane.cpp:278 msgid "%1% (%2 MHz)" -msgstr "" +msgstr "%1% (%2 MHz)" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:177 msgid "%1% (Normal Speed)" @@ -286,7 +286,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementHeaderWidget.cpp:137 msgid "%1/%2" -msgstr "" +msgstr "%1/%2" #: Source/Core/DolphinQt/GCMemcardManager.cpp:606 msgid "%1: %2" @@ -311,20 +311,20 @@ msgstr "%1[%2]: %3/%4 MiB" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:368 #, c-format msgid "%1x MSAA" -msgstr "" +msgstr "%1x MSAA" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:98 msgid "%1x Native (%2x%3)" -msgstr "" +msgstr "%1x Natywny (%2x%3)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:103 msgid "%1x Native (%2x%3) for %4" -msgstr "" +msgstr "%1x Natywny (%2x%3) dla %4" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:380 #, c-format msgid "%1x SSAA" -msgstr "" +msgstr "%1x SSAA" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:330 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:348 @@ -371,7 +371,7 @@ msgstr "&O programie" #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:604 msgid "&Add Function" -msgstr "" +msgstr "&Dodaj Funkcje" #: Source/Core/DolphinQt/Debugger/WatchWidget.cpp:362 msgid "&Add Memory Breakpoint" @@ -457,11 +457,11 @@ msgstr "Ustawienia &kontrolerów" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:433 #: Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp:580 msgid "&Copy Address" -msgstr "" +msgstr "&Skopiuj Adres" #: Source/Core/DolphinQt/GCMemcardManager.cpp:137 msgid "&Create..." -msgstr "" +msgstr "&Utwórz..." #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:418 #: Source/Core/DolphinQt/GCMemcardManager.cpp:113 @@ -492,7 +492,7 @@ msgstr "&Edytuj..." #: Source/Core/DolphinQt/MenuBar.cpp:250 msgid "&Eject Disc" -msgstr "" +msgstr "&Wysuń Płytę" #: Source/Core/DolphinQt/MenuBar.cpp:361 msgid "&Emulation" @@ -795,15 +795,15 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:151 msgid "(Dark)" -msgstr "" +msgstr "(Ciemny)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:150 msgid "(Light)" -msgstr "" +msgstr "(Jasny)" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:146 msgid "(System)" -msgstr "" +msgstr "(System)" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:293 msgid "(off)" @@ -847,15 +847,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 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)" @@ -863,11 +863,11 @@ msgstr "" #: 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:211 msgid "16 Bytes" @@ -875,7 +875,7 @@ msgstr "16 Bajtów" #: 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)" @@ -901,7 +901,7 @@ msgstr "16:9" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:117 msgid "16x Anisotropic" -msgstr "" +msgstr "16x Anizotropowy" #: Source/Core/Core/HotkeyManager.cpp:196 msgid "1x" @@ -909,11 +909,11 @@ msgstr "1x" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:82 msgid "2 GiB" -msgstr "" +msgstr "2 GiB" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:79 msgid "256 MiB" -msgstr "" +msgstr "256 MiB" #: Source/Core/Core/HotkeyManager.cpp:197 msgid "2x" @@ -921,11 +921,11 @@ msgstr "2x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:114 msgid "2x Anisotropic" -msgstr "" +msgstr "2x Anizotropowy" #: 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)" @@ -985,7 +985,7 @@ msgstr "4:3" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:78 msgid "4K" -msgstr "" +msgstr "4K" #: Source/Core/Core/HotkeyManager.cpp:199 msgid "4x" @@ -993,15 +993,15 @@ msgstr "4x" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:115 msgid "4x Anisotropic" -msgstr "" +msgstr "4x Anizotropowy" #: 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)" @@ -1009,7 +1009,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:77 msgid "64 MiB" -msgstr "" +msgstr "64 MiB" #: Source/Core/DolphinQt/CheatSearchFactoryWidget.cpp:111 #: Source/Core/DolphinQt/CheatSearchWidget.cpp:170 @@ -1028,7 +1028,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:77 msgid "720p" -msgstr "" +msgstr "720p" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:210 msgid "8 Bytes" @@ -1036,7 +1036,7 @@ msgstr "8 Bajtów" #: 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)" @@ -1058,11 +1058,11 @@ 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 Anizotropowy" #: Source/Core/DolphinQt/Config/Mapping/IOWindow.cpp:290 msgid "< Less-than" @@ -1232,12 +1232,12 @@ msgstr "Dokładność:" #: Source/Core/DolphinQt/Config/HardcoreWarningWidget.cpp:39 msgid "Achievement Settings" -msgstr "" +msgstr "Ustawienia osiągnięć" #: Source/Core/DolphinQt/Achievements/AchievementsWindow.cpp:29 #: Source/Core/DolphinQt/MenuBar.cpp:287 msgid "Achievements" -msgstr "" +msgstr "Osiągnięcia" #: Source/Core/DolphinQt/Debugger/BreakpointDialog.cpp:172 msgid "Action" @@ -1594,11 +1594,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Kody wszystkich graczy zsynchronizowane." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Zapisy wszystkich graczy zsynchronizowane." @@ -2744,7 +2744,7 @@ msgstr "" msgid "Code:" msgstr "Kod:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3622,7 +3622,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4765,7 +4765,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet nie zainicjował się" @@ -4908,7 +4908,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4931,11 +4931,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4943,11 +4943,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Błąd synchronizacji kodów cheatowania" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5259,12 +5259,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5419,7 +5419,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5579,15 +5579,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5630,11 +5630,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Nie udało się zapisać BT.DINF do SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5648,7 +5648,7 @@ msgstr "Nie udało się zapisać pliku konfiguracyjnego!" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6156,7 +6156,7 @@ msgstr "" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:181 msgid "GL_MAX_TEXTURE_SIZE is {0} - must be at least 1024." -msgstr "" +msgstr "GL_MAX_TEXTURE_SIZE jest {0} - musi być co najmniej 1024." #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:73 msgid "GPU Texture Decoding" @@ -6167,40 +6167,52 @@ msgid "" "GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" +"GPU: ERROR: Need GL_ARB_framebuffer_object for multiple render targets.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3.0?" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:96 msgid "GPU: OGL ERROR: Does your video card support OpenGL 2.0?" -msgstr "" +msgstr "GPU: OGL ERROR: Czy twoja karta graficzna obsługuje OpenGL 2.0?" #: Source/Core/VideoBackends/OGL/OGLConfig.cpp:254 msgid "" "GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_map_buffer_range.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3.0?" #: Source/Core/VideoBackends/OGL/OGLConfig.cpp:279 msgid "" "GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" "GPU: Does your video card support OpenGL 3.3?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_sampler_objects.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3.3?" #: Source/Core/VideoBackends/OGL/OGLConfig.cpp:263 msgid "" "GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" "GPU: Does your video card support OpenGL 3.1?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_uniform_buffer_object.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3.1?" #: Source/Core/VideoBackends/OGL/OGLConfig.cpp:245 msgid "" "GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" "GPU: Does your video card support OpenGL 3.0?" msgstr "" +"GPU: OGL ERROR: Need GL_ARB_vertex_array_object.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3.0?" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:103 msgid "" "GPU: OGL ERROR: Need OpenGL version 3.\n" "GPU: Does your video card support OpenGL 3?" msgstr "" +"GPU: OGL ERROR: Wymagana jest wersja OpenGL 3.\n" +"GPU: Czy twoja karta graficzna obsługuje OpenGL 3?" #: Source/Core/VideoBackends/OGL/OGLConfig.cpp:471 msgid "" @@ -6223,7 +6235,7 @@ msgstr "" #: 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:648 msgid "Game Boy Advance Carts (*.gba)" @@ -6295,7 +6307,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Gra jest już uruchomiona!" @@ -6445,7 +6457,7 @@ msgstr "" #: Source/Core/UICommon/UICommon.cpp:524 msgid "GiB" -msgstr "" +msgstr "GiB" #. i18n: One of the figure types in the Skylanders games. #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:405 @@ -6518,7 +6530,7 @@ msgstr "Gitara" #: Source/Core/Core/HW/WiimoteEmu/WiimoteEmu.cpp:259 msgid "Gyroscope" -msgstr "" +msgstr "Żyroskop" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:211 msgid "HDMI 3D" @@ -6526,7 +6538,7 @@ msgstr "" #: 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" @@ -6726,7 +6738,7 @@ msgstr "" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Force.cpp:153 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:38 msgid "Hz" -msgstr "" +msgstr "Hz" #: Source/Core/DolphinQt/NKitWarningDialog.cpp:53 msgid "I am aware of the risks and want to continue" @@ -6743,11 +6755,11 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:576 msgid "ID:" -msgstr "" +msgstr "ID:" #: Source/Core/DolphinQt/Config/InfoWidget.cpp:137 msgid "IOS Version:" -msgstr "" +msgstr "Wersja IOS:" #: Source/Core/Core/IOS/Network/SSL.cpp:181 msgid "" @@ -7273,7 +7285,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7427,8 +7439,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -7491,7 +7503,7 @@ msgstr "Klawisze" #: Source/Core/UICommon/UICommon.cpp:524 msgid "KiB" -msgstr "" +msgstr "KiB" #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:297 msgid "Kick Player" @@ -7533,7 +7545,7 @@ msgstr "Etykieta" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:388 msgid "Language" -msgstr "" +msgstr "Język" #: Source/Core/DolphinQt/CheatSearchWidget.cpp:621 msgid "Last Value" @@ -7916,7 +7928,7 @@ msgstr "Konfiguracja logu" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:78 #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:200 msgid "Log In" -msgstr "" +msgstr "Zaloguj się" #: Source/Core/DolphinQt/MenuBar.cpp:928 msgid "Log JIT Instruction Coverage" @@ -7924,7 +7936,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:79 msgid "Log Out" -msgstr "" +msgstr "Wyloguj się" #: Source/Core/DolphinQt/Config/Graphics/AdvancedWidget.cpp:68 msgid "Log Render Time to File" @@ -7980,7 +7992,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:76 msgid "MD5:" -msgstr "" +msgstr "MD5:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:212 msgid "MMU" @@ -8427,7 +8439,7 @@ msgstr "" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:147 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:185 msgid "Network" -msgstr "" +msgstr "Sieć" #: Source/Core/DolphinQt/Debugger/NetworkWidget.cpp:385 msgid "Network dump format:" @@ -8435,7 +8447,7 @@ msgstr "" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:204 msgid "Never" -msgstr "" +msgstr "Nigdy" #: Source/Core/DolphinQt/Updater.cpp:85 msgid "Never Auto-Update" @@ -8713,7 +8725,7 @@ msgstr "" #: Source/Core/DolphinQt/NKitWarningDialog.cpp:60 #: qtbase/src/gui/kernel/qplatformtheme.cpp:708 msgid "OK" -msgstr "" +msgstr "OK" #: Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp:174 msgid "Object %1" @@ -8858,7 +8870,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/GraphicsModListWidget.cpp:67 #: Source/Core/DolphinQt/ResourcePackManager.cpp:39 msgid "Open Directory..." -msgstr "" +msgstr "Otwórz katalog..." #: Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp:221 msgid "Open FIFO Log" @@ -8898,7 +8910,7 @@ msgstr "" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:74 msgid "OpenGL" -msgstr "" +msgstr "OpenGL" #: Source/Core/VideoBackends/OGL/OGLMain.cpp:72 msgid "OpenGL ES" @@ -9072,7 +9084,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:75 #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:166 msgid "Password" -msgstr "" +msgstr "Hasło" #: Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp:165 msgid "Password for joining your game (leave empty for none)" @@ -9080,7 +9092,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:223 msgid "Password?" -msgstr "" +msgstr "Hasło?" #: Source/Core/DolphinQt/Config/NewPatchDialog.cpp:40 msgid "Patch Editor" @@ -9414,7 +9426,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:98 msgid "Private" -msgstr "" +msgstr "Prywatny" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:97 msgid "Private and Public" @@ -9457,7 +9469,7 @@ msgstr "Licznik programu" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:282 #: Source/Core/DolphinQt/Settings/WiiPane.cpp:307 msgid "Progress" -msgstr "" +msgstr "Postęp" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:345 msgid "" @@ -9467,7 +9479,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:99 msgid "Public" -msgstr "" +msgstr "Publiczny" #: Source/Core/DolphinQt/MenuBar.cpp:572 msgid "Purge Game List Cache" @@ -9485,11 +9497,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -9674,7 +9686,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:88 msgid "Redump.org Status:" -msgstr "" +msgstr "Status Redump.org:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:202 #: Source/Core/DolphinQt/Config/GameConfigWidget.cpp:80 @@ -9705,7 +9717,7 @@ msgstr "" #: Source/Core/DolphinQt/GameList/GameList.cpp:280 #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:198 msgid "Refreshing..." -msgstr "" +msgstr "Odświeżanie..." #: Source/Core/DolphinQt/GameList/GameList.cpp:1003 #: Source/Core/DolphinQt/MenuBar.cpp:699 @@ -10086,7 +10098,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/VerifyWidget.cpp:77 msgid "SHA-1:" -msgstr "" +msgstr "SHA-1:" #: Source/Core/DolphinQt/NetPlay/GameDigestDialog.cpp:43 msgid "SHA1 Digest" @@ -10368,7 +10380,7 @@ msgstr "" #: Source/Core/DolphinQt/SearchBar.cpp:29 msgid "Search games..." -msgstr "" +msgstr "Wyszukaj gry..." #: Source/Core/DolphinQt/MenuBar.cpp:1830 msgid "Search instruction" @@ -10376,7 +10388,7 @@ msgstr "" #: Source/Core/DolphinQt/SkylanderPortal/SkylanderPortalWindow.cpp:234 msgid "Search:" -msgstr "" +msgstr "Wyszukaj:" #: Source/Core/DolphinQt/Config/GameConfigEdit.cpp:59 msgid "Section that contains all Action Replay cheat codes." @@ -10564,11 +10576,11 @@ msgstr "Wybierz grę" #: Source/Core/DolphinQt/Debugger/MemoryWidget.cpp:693 msgid "Select a file" -msgstr "" +msgstr "Wybierz plik" #: Source/Core/DolphinQt/NetPlay/GameListDialog.cpp:18 msgid "Select a game" -msgstr "" +msgstr "Wybierz grę" #: Source/Core/DolphinQt/GBAWidget.cpp:195 msgid "Select e-Reader Cards" @@ -10594,9 +10606,9 @@ msgstr "Wybierz czcionkę" msgid "Selected controller profile does not exist" msgstr "Wybrany profil kontrolera nie istnieje" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10732,13 +10744,13 @@ msgstr "" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:50 msgid "Server IP Address" -msgstr "" +msgstr "Adres IP Serwera" #: Source/Core/DolphinQt/Config/ControllerInterface/DualShockUDPClientAddServerDialog.cpp:52 msgid "Server Port" -msgstr "" +msgstr "Port Serwera" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11568,7 +11580,7 @@ msgstr "Kroki" #: Source/Core/DolphinQt/Settings/WiiPane.cpp:183 msgid "Stereo" -msgstr "" +msgstr "Stereo" #: Source/Core/DolphinQt/Config/Graphics/EnhancementsWidget.cpp:693 msgid "Stereoscopic 3D Mode" @@ -11851,15 +11863,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12087,7 +12099,7 @@ msgstr "" #. 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 "Wprowadzony adres MAC jest nieprawidłowy." #. i18n: Here, PID means Product ID (for a USB device). #: Source/Core/DolphinQt/Settings/USBDeviceAddToWhitelistDialog.cpp:141 @@ -12279,7 +12291,7 @@ msgstr "" #: Source/Core/Core/NetPlayClient.cpp:284 msgid "The server is full." -msgstr "" +msgstr "Serwer jest pełny." #: Source/Core/Core/NetPlayClient.cpp:297 msgid "The server sent an unknown error message." @@ -12907,7 +12919,7 @@ msgstr "" msgid "Traversal Server" msgstr "Serwer przejściowy" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13077,7 +13089,7 @@ msgstr "Cofnij zapisywanie stanu" #: Source/Core/DolphinQt/ResourcePackManager.cpp:320 msgid "Uninstall" -msgstr "" +msgstr "Odinstaluj" #: Source/Core/DolphinQt/GameList/GameList.cpp:445 msgid "Uninstall from the NAND" @@ -13114,21 +13126,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13158,7 +13170,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13170,7 +13182,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13393,7 +13405,7 @@ msgstr "" #: Source/Core/DolphinQt/Achievements/AchievementSettingsWidget.cpp:73 msgid "Username" -msgstr "" +msgstr "Nazwa Użytkownika" #: Source/Core/DolphinQt/Settings/InterfacePane.cpp:319 msgid "" @@ -13518,7 +13530,7 @@ msgstr "" #: Source/Core/DolphinQt/NetPlay/NetPlayBrowser.cpp:225 #: Source/Core/DolphinQt/ResourcePackManager.cpp:92 msgid "Version" -msgstr "" +msgstr "Wersja" #: Source/Core/DolphinQt/Config/Graphics/HacksWidget.cpp:110 msgid "Vertex Rounding" @@ -13581,7 +13593,7 @@ msgstr "Zwiększ głośność" #: Source/Core/VideoBackends/Vulkan/VideoBackend.h:18 msgid "Vulkan" -msgstr "" +msgstr "Vulkan" #: Source/Core/DolphinQt/MenuBar.cpp:1128 msgid "WAD files (*.wad)" @@ -13889,7 +13901,7 @@ msgstr "" #: Source/Core/DolphinQt/Config/Mapping/HotkeyGBA.cpp:25 #: Source/Core/DolphinQt/GBAWidget.cpp:437 msgid "Window Size" -msgstr "" +msgstr "Rozmiar Okna" #: Source/Core/DolphinQt/Debugger/BranchWatchDialog.cpp:531 msgid "Wipe &Inspection Data" @@ -13974,7 +13986,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14184,7 +14196,7 @@ msgstr "automatyczna" #: 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." @@ -14311,11 +14323,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" @@ -14347,6 +14359,8 @@ msgid "" "© 2003-2024+ Dolphin Team. “GameCube” and “Wii” are trademarks of Nintendo. " "Dolphin is not affiliated with Nintendo in any way." msgstr "" +"© 2003-2024+ Dolphin Team. ”GameCube” oraz ”Wii” są znakami towarowymi " +"Nintendo. Dolphin nie jest w żaden sposób powiązany z Nintendo." #. i18n: The symbol/abbreviation for degrees (unit of angular measure). #. i18n: The degrees symbol. @@ -14360,12 +14374,12 @@ msgstr "" #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUCursor.cpp:37 #: Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp:30 msgid "°" -msgstr "" +msgstr "°" #. i18n: "°/s" is the symbol for degrees (angular measurement) divided by seconds. #: Source/Core/InputCommon/ControllerEmu/ControlGroup/IMUGyroscope.cpp:39 msgid "°/s" -msgstr "" +msgstr "°/s" #: Source/Core/DolphinQt/DiscordJoinRequestDialog.cpp:53 msgid "✔ Invite" diff --git a/Languages/po/pt.po b/Languages/po/pt.po index e87683ff84..7d65e7cd49 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Zilaan , 2011\n" "Language-Team: Portuguese (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1547,11 +1547,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2694,7 +2694,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4704,7 +4704,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4847,7 +4847,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4871,11 +4871,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4883,11 +4883,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5195,12 +5195,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5353,7 +5353,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5513,15 +5513,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5564,11 +5564,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Falha ao escrever BT.DINF para SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5582,7 +5582,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6229,7 +6229,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "O jogo já está a correr!" @@ -7198,7 +7198,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9404,11 +9404,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10513,9 +10513,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10657,7 +10657,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11765,15 +11765,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12812,7 +12812,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13019,21 +13019,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13063,7 +13063,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13075,7 +13075,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13879,7 +13879,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14216,11 +14216,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/pt_BR.po b/Languages/po/pt_BR.po index a426e00ee3..d080301ebd 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Mateus B. Cassiano , 2017,2021-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/dolphinemu/" @@ -1707,11 +1707,11 @@ msgstr "Todos os Inteiros Não Assinados" msgid "All files (*)" msgstr "Todos os arquivos (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Todos os códigos dos jogadores sincronizados." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Todos os saves dos jogadores sincronizados." @@ -2942,7 +2942,7 @@ msgstr "Caminho de Código Executado" msgid "Code:" msgstr "Código:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Códigos recebidos!" @@ -3971,7 +3971,7 @@ msgstr "Os dados estão num formato não reconhecido ou corrompido." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Inconsistência dos dados no GCMemcardManager, abortando ação." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Dados recebidos!" @@ -5288,7 +5288,7 @@ msgstr "" msgid "End Addr" msgstr "End. Final" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet Não Inicializou" @@ -5433,7 +5433,7 @@ msgstr "Registro do Erro" msgid "Error Opening Adapter: %1" msgstr "Erro ao Abrir o Adaptador: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Erro ao coletar os dados do save!" @@ -5455,11 +5455,11 @@ msgstr "Erro ao obter a lista da sessão: %1" msgid "Error occurred while loading some texture packs" msgstr "Um erro ocorreu enquanto carregava alguns pacotes de texturas" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Erro ao processar os códigos." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Erro ao processar os dados." @@ -5467,11 +5467,11 @@ msgstr "Erro ao processar os dados." msgid "Error reading file: {0}" msgstr "Erro ao ler o arquivo: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Erro ao sincronizar os códigos de trapaça!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Erro ao sincronizar os dados do save!" @@ -5792,14 +5792,14 @@ msgstr "" "\n" "O Skylander pode já estar inserido no portal." -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Falha ao excluir arquivo de jogo salvo do GBA{0} do NetPlay. Verifique suas " "permissões de gravação." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Falha ao excluir Memory Card do NetPlay. Verifique suas permissões de " @@ -5976,7 +5976,7 @@ msgstr "Falha ao modificar o Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Falha ao abrir \"%1\" para escrita." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Falha ao abrir \"{0}\" para escrita." @@ -6165,19 +6165,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Falha ao remover esse software da NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Falha ao redefinir a pasta GCI do NetPlay. Verifique suas permissões de " "gravação." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Falha ao redefinir a pasta NAND do NetPlay. Verifique suas permissões de " "gravação." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Falha ao redefinir a pasta de redirecionamento do NetPlay. Verifique as " @@ -6226,11 +6226,11 @@ msgstr "Falha ao desinstalar pacote: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Falha ao gravar o BT.DINF no SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Falha ao salvar dados dos Miis." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Falha ao salvar dados salvos do Wii." @@ -6244,7 +6244,7 @@ msgstr "Falha ao salvar o arquivo de configuração!" msgid "Failed to write modified memory card to disk." msgstr "Falha ao salvar o Memory Card modificado no disco." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Falha ao gravar os dados salvos redirecionados." @@ -6962,7 +6962,7 @@ msgstr "O número de disco do jogo é diferente" msgid "Game has a different revision" msgstr "A revisão do jogo é diferente" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "O jogo já está rodando!" @@ -8049,7 +8049,7 @@ msgstr "Checksum inválido." msgid "Invalid game." msgstr "Jogo inválido." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Host inválido" @@ -8206,8 +8206,8 @@ msgstr "" "nunca deveria acontecer. Por favor relate este incidente no bug tracker. O " "Dolphin irá fechar agora." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT não está ativo" @@ -10386,11 +10386,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "A Qualidade do Serviço (QoS) não pôde ser ativada." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Qualidade do Serviço (QoS) ativado com sucesso." @@ -11570,9 +11570,9 @@ msgstr "Fonte Selecionada" msgid "Selected controller profile does not exist" msgstr "O perfil de controle selecionado não existe" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11708,6 +11708,12 @@ msgid "" "recommended to try each and select the backend that is least problematic." "

If unsure, select %1." msgstr "" +"Seleciona qual API gráfica usar internamente.

O renderizador por " +"software é extremamente lento e só deve ser utilizado para depuração, então " +"qualquer um dos outros backends são recomendados. Jogos e GPUs diferentes se " +"comportarão diferentemente em cada backend, então para a melhor experiência " +"é recomendado testar cada um e selecionar o backend menos problemático." +"

Na dúvida, selecione \"%1\"." #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -11794,7 +11800,7 @@ msgstr "Endereço IP do Servidor" msgid "Server Port" msgstr "Porta do Servidor" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "O servidor rejeitou a tentativa traversal" @@ -13011,15 +13017,15 @@ msgstr "" "Sincroniza o conteúdo do Cartão SD com a Pasta de Sincronização do SD ao " "iniciar e ao parar a emulação." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Sincronizando códigos AR..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Sincronizando códigos Gecko..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Sincronizando dados salvos..." @@ -14231,7 +14237,7 @@ msgstr "Erro Traversal" msgid "Traversal Server" msgstr "Servidor Traversal" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Servidor traversal não respondeu enquanto conectava-se ao host." @@ -14465,11 +14471,11 @@ msgstr "Desconhecido (ID: %1 Var.: %2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Comando desconhecido do DVD {0:08x} - erro fatal" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Mensagem SYNC_CODES desconhecida recebida com a ID: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14477,11 +14483,11 @@ msgstr "" "Mensagem SYNC_GECKO_CODES desconhecida com ID:{0} recebida do Jogador:{1} " "Expulsando jogador!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Mensagem desconhecida do SYNC_GECKO_DATA recebida com a id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14513,7 +14519,7 @@ msgstr "Disco desconhecido" msgid "Unknown error occurred." msgstr "Um erro desconhecido ocorreu." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Erro desconhecido {0:x}" @@ -14525,7 +14531,7 @@ msgstr "Erro desconhecido." msgid "Unknown message received with id : {0}" msgstr "Mensagem desconhecida recebida com a id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Mensagem desconhecida com ID:{0} recebida do Jogador:{1} Expulsando jogador!" @@ -15452,7 +15458,7 @@ msgstr "Revisão incorreta" msgid "Wrote to \"%1\"." msgstr "Escrito em \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Escrito em \"{0}\"." @@ -15848,11 +15854,11 @@ msgstr "{0} (NKit)" 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" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} falhou em sincronizar os códigos." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} falhou em sincronizar." diff --git a/Languages/po/ro.po b/Languages/po/ro.po index 537504000b..d60f5e2aff 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-emu/" @@ -1546,11 +1546,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4703,7 +4703,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4846,7 +4846,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4870,11 +4870,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4882,11 +4882,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5194,12 +5194,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5352,7 +5352,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5512,15 +5512,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5563,11 +5563,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Eșec la scrierea BT.DINF în SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5581,7 +5581,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6228,7 +6228,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Jocul rulează deja!" @@ -7197,7 +7197,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7351,8 +7351,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9405,11 +9405,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10514,9 +10514,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "Profilul controlerului selectat, nu există" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10658,7 +10658,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11766,15 +11766,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12813,7 +12813,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13020,21 +13020,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13064,7 +13064,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13076,7 +13076,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13880,7 +13880,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14217,11 +14217,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/ru.po b/Languages/po/ru.po index 08a45bdb50..382e73fb7e 100644 --- a/Languages/po/ru.po +++ b/Languages/po/ru.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Daniil Huz, 2024\n" "Language-Team: Russian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1672,11 +1672,11 @@ msgstr "Все целые числа без знака" msgid "All files (*)" msgstr "Все файлы (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Коды всех игроков синхронизированы." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Сохранения всех игроков синхронизированы." @@ -2889,7 +2889,7 @@ msgstr "Путь кода выполнен" msgid "Code:" msgstr "Код:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Коды получены!" @@ -3853,7 +3853,7 @@ msgstr "Данные находятся в нераспознанном форм msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Неконсистентность данных в GCMemcardManager, отмена действия." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Данные получены!" @@ -5120,7 +5120,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet не был инициализирован" @@ -5265,7 +5265,7 @@ msgstr "Журнал ошибок" msgid "Error Opening Adapter: %1" msgstr "Ошибка открытия адаптера: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Ошибка сбора данных сохранения." @@ -5288,11 +5288,11 @@ msgstr "Ошибка при получении списка сессий: %1" msgid "Error occurred while loading some texture packs" msgstr "Возникла ошибка при загрузке некоторых пакетов текстур" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Ошибка обработки кодов." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Ошибка обработки данных." @@ -5300,11 +5300,11 @@ msgstr "Ошибка обработки данных." msgid "Error reading file: {0}" msgstr "Ошибка чтения файла: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Ошибка синхронизации чит-кодов!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Ошибка синхронизации сохранений!" @@ -5624,14 +5624,14 @@ msgstr "" "\n" "Возможно, Skylander уже есть на портале." -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Не удалось удалить файл сохранения NetPlay GBA{0}. Проверьте, есть ли у вас " "права на запись." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Не удалось удалить карту памяти сетевой игры. Проверьте, что у вас есть " @@ -5806,7 +5806,7 @@ msgstr "Не удалось изменить Skylander." msgid "Failed to open \"%1\" for writing." msgstr "Не удалось открыть «%1» для записи." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Не удалось открыть «{0}» для записи." @@ -5990,19 +5990,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Не удалось удалить этот продукт из NAND." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Не удалось сбросить папку сетевой игры GCI. Проверьте, что у вас есть права " "на запись." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Не удалось сбросить папку сетевой игры NAND. Проверьте, что у вас есть права " "на запись." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Не удалось сбросить папку перенаправления NetPlay. Проверьте права на запись." @@ -6050,11 +6050,11 @@ msgstr "Не удалось деактивировать набор: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Не удалось записать BT.DINF в SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Не удалось записать данные Mii." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Не удалось записать сохранение Wii." @@ -6068,7 +6068,7 @@ msgstr "Не удалось записать файл с конфигураци msgid "Failed to write modified memory card to disk." msgstr "Не удалось записать изменённую карту памяти на диск." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Не удалось записать перенаправленное сохранение." @@ -6780,7 +6780,7 @@ msgstr "Игра имеет другой номер диска" msgid "Game has a different revision" msgstr "Игра имеет другую версию" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Игра уже запущена!" @@ -7840,7 +7840,7 @@ msgstr "Некорректные контрольные суммы." msgid "Invalid game." msgstr "Недопустимая игра." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Неверный хост-сервер" @@ -7995,8 +7995,8 @@ msgstr "" "происходить. Пожалуйста, сообщите об этой ошибке в багтрекере. Dolphin " "завершит работу." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT не активирован" @@ -10157,11 +10157,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Не удаётся включить Quality of Service (QoS)." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) успешно включен." @@ -11296,9 +11296,9 @@ msgstr "Выбранный шрифт" msgid "Selected controller profile does not exist" msgstr "Выбранный профиль контроллера не существует" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11493,7 +11493,7 @@ msgstr "IP-адрес сервера" msgid "Server Port" msgstr "Порт сервера" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Сервер отверг попытку обхода" @@ -12680,15 +12680,15 @@ msgid "" "emulation." msgstr "Синхронизация SD-карты с папкой при запуске и завершении эмуляции." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Синхронизация AR-кодов..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Синхронизация Gecko-кодов..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Синхронизация сохранений..." @@ -13884,7 +13884,7 @@ msgstr "Ошибка промежуточного сервера" msgid "Traversal Server" msgstr "Промежуточный сервер" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Истекло время ожидания подключения обходного сервера к хосту" @@ -14117,11 +14117,11 @@ msgstr "Неизвестно (Ид.:%1 Пер.:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Неизвестная команда DVD {0:08x} - критическая ошибка" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Получено неизвестное сообщение SYNC_CODES с идентификатором: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -14129,11 +14129,11 @@ msgstr "" "Получено неизвестное сообщение SYNC_GECKO_CODES с id:{0} от игрока:{1} Игрок " "выкинут!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Получено неизвестное сообщение SYNC_SAVE_DATA с id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14165,7 +14165,7 @@ msgstr "Неизвестный диск" msgid "Unknown error occurred." msgstr "Произошла неизвестная ошибка." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Неизвестная ошибка {0:x}" @@ -14177,7 +14177,7 @@ msgstr "Неизвестная ошибка." msgid "Unknown message received with id : {0}" msgstr "Получено неизвестное сообщение с id : {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "Получено неизвестное сообщение с id: {0} от игрока: {1} Игрок выкинут!" @@ -15074,7 +15074,7 @@ msgstr "Неверная версия" msgid "Wrote to \"%1\"." msgstr "Записано в «%1»." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Записано в «{0}»." @@ -15466,11 +15466,11 @@ msgstr "{0} (NKit)" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "{0} IPL найдено в папке {1}. Не удаётся опознать диск" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "Не удалось синхронизировать коды {0}." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "Не удалось синхронизировать {0}." diff --git a/Languages/po/sr.po b/Languages/po/sr.po index 96688fecbf..b3291d33b5 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: nikolassj, 2011\n" "Language-Team: Serbian (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1546,11 +1546,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4701,7 +4701,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4844,7 +4844,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4866,11 +4866,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4878,11 +4878,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5190,12 +5190,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5348,7 +5348,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5508,15 +5508,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5559,11 +5559,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5577,7 +5577,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6224,7 +6224,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Igra je vec pokrenuta!" @@ -7193,7 +7193,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7345,8 +7345,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9396,11 +9396,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10505,9 +10505,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10649,7 +10649,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11757,15 +11757,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12800,7 +12800,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13007,21 +13007,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13051,7 +13051,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13063,7 +13063,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13867,7 +13867,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14204,11 +14204,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/sv.po b/Languages/po/sv.po index 9f71b90b27..663dc5bbe9 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Arve Eriksson <031299870@telia.com>, 2017,2019-2022,2024\n" "Language-Team: Swedish (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1639,11 +1639,11 @@ msgstr "Alla uint" msgid "All files (*)" msgstr "Alla filer (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Alla spelares koder har synkroniserats." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Alla spelares sparfiler har synkroniserats." @@ -2840,7 +2840,7 @@ msgstr "" msgid "Code:" msgstr "Kod:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Koder mottagna!" @@ -3835,7 +3835,7 @@ msgstr "Data i okänt format eller trasig." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "Datainkonsekvens i GCMemcardManager, avbryter åtgärd." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Data mottagen!" @@ -5083,7 +5083,7 @@ msgstr "" msgid "End Addr" msgstr "Slutadr." -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet initialiserades inte" @@ -5226,7 +5226,7 @@ msgstr "Fellogg" msgid "Error Opening Adapter: %1" msgstr "Ett fel uppstod när adaptern skulle öppnas: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Fel uppstod när spardata samlades in!" @@ -5250,11 +5250,11 @@ msgstr "Ett fel uppstod när sessionslistan skulle hämtas: %1" msgid "Error occurred while loading some texture packs" msgstr "Ett fel uppstod när vissa texturpaket laddades" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Fel uppstod när koder behandlades." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Fel uppstod när data behandlades." @@ -5262,11 +5262,11 @@ msgstr "Fel uppstod när data behandlades." msgid "Error reading file: {0}" msgstr "Fel uppstod när fil lästes: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Ett fel uppstod med att synkronisera fuskkoder!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Fel uppstod när spardata synkroniserades!" @@ -5582,14 +5582,14 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" "Misslyckades att radera nätspelssparfil för GBA{0}. Kontrollera " "skrivrättigheterna." -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" "Misslyckades att radera minneskort för nätspel. Bekräfta dina " @@ -5760,7 +5760,7 @@ msgstr "Misslyckades att modifiera Skylander!" msgid "Failed to open \"%1\" for writing." msgstr "Misslyckades att öppna \"%1\" för att skriva." -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "Misslyckades att öppna \"{0}\" för att skriva." @@ -5932,19 +5932,19 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "Kunde inte ta bort denna titel från NAND-minnet." -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" "Misslyckades att nollställa nätspels-GCI-mappen. Kontrollera " "skrivrättigheterna." -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" "Misslyckades att nollställa nätspels-NAND-mappen. Kontrollera " "skrivrättigheterna." -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" "Misslyckades att nollställa nätspelsomdirigeringsmappen. Kontrollera " @@ -5989,11 +5989,11 @@ msgstr "Misslyckades att avinstallera paket: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "Misslyckades att skriva BT.DINF till SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "Misslyckades att skriva Mii-data." -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "Misslyckades att skriva Wii-sparning." @@ -6007,7 +6007,7 @@ msgstr "Kunde inte skriva inställningsfil!" msgid "Failed to write modified memory card to disk." msgstr "Kunde inte skriva ändrat minneskort till disk." -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "Misslyckades att skriva omdirigerad sparning." @@ -6701,7 +6701,7 @@ msgstr "Spelet har ett annat skivnummer" msgid "Game has a different revision" msgstr "Spelet har en annan revision" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Spelet körs redan!" @@ -7762,7 +7762,7 @@ msgstr "Ogiltiga kontrollsummor." msgid "Invalid game." msgstr "Ogiltigt spel." -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Ogiltig värd" @@ -7917,8 +7917,8 @@ msgstr "" "aldrig hända. Rapportera gärna detta till utvecklarna. Dolphin kommer nu " "avslutas." -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT är inte aktivt" @@ -10058,11 +10058,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "Det gick inte att sätta på Quality of Service (QoS)." -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "Quality of Service (QoS) har satts på." @@ -11191,9 +11191,9 @@ msgstr "Valt teckensnitt" msgid "Selected controller profile does not exist" msgstr "Den valda kontrollprofilen finns inte" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11350,7 +11350,7 @@ msgstr "Serverns IP-adress" msgid "Server Port" msgstr "Serverns port" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "Servern avvisade traverseringsförsök" @@ -12521,15 +12521,15 @@ msgstr "" "Synkroniserar SD-kortet med SD-synkmappen när emulering påbörjas och " "avslutas." -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "Synkroniserar AR-koder..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "Synkroniserar Gecko-koder..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "Synkroniserar spardata..." @@ -13729,7 +13729,7 @@ msgstr "Traverseringsfel" msgid "Traversal Server" msgstr "Traverseringsserver" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Traverseringsserver gjorde en timeout vid anslutning till värden" @@ -13962,11 +13962,11 @@ msgstr "Okänd (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "Okänt DVD-kommando {0:08x} - katastrofalt fel" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "Tog emot ett okänt SYNC_CODES-meddelande med id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" @@ -13974,11 +13974,11 @@ msgstr "" "Tog emot ett okänt SYNC_GECKO_CODES-meddelande med id:{0} från spelare:{1} " "Spelaren sparkas ut!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "Tog emot ett okänt SYNC_SAVE_DATA-meddelande med id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -14010,7 +14010,7 @@ msgstr "Okänd skiva" msgid "Unknown error occurred." msgstr "Okänt fel inträffade." -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "Okänt fel {0:x}" @@ -14022,7 +14022,7 @@ msgstr "Okänt fel." msgid "Unknown message received with id : {0}" msgstr "Tog emot ett okänt meddelande med id: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" "Tog emot ett okänt meddelande med id:{0} från spelare:{1} Spelaren sparkas " @@ -14919,7 +14919,7 @@ msgstr "Fel revision" msgid "Wrote to \"%1\"." msgstr "Skrev till \"%1\"." -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "Skrev till \"{0}\"." @@ -15311,11 +15311,11 @@ msgstr "" "{0}-IPL hittades i {1}-mappen. Det kan hända att skivan inte kommer kunna " "kännas igen" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} misslyckades att synkronisera koder." -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} misslyckades att synkronisera." diff --git a/Languages/po/tr.po b/Languages/po/tr.po index 23385a5b03..c6bfab964a 100644 --- a/Languages/po/tr.po +++ b/Languages/po/tr.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: Dolphin Emulator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: Ahmet Emin, 2024\n" "Language-Team: Turkish (http://app.transifex.com/dolphinemu/dolphin-emu/" @@ -1643,11 +1643,11 @@ msgstr "Tüm İmzasız Tamsayı" msgid "All files (*)" msgstr "Tüm Dosyalar (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "Tüm oyuncuların kodları senkronize edildi." -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "Tüm oyuncuların kayıtları senkronize edildi." @@ -2834,7 +2834,7 @@ msgstr "" msgid "Code:" msgstr "Code:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "Kodlar alındı!" @@ -3799,7 +3799,7 @@ msgstr "Tanınmayan bir formatta veya bozulmuş veri." msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "GCMemcardManager'da veri tutarsızlığı, işlem iptal ediliyor." -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "Veri alındı!" @@ -5063,7 +5063,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet Başlatılamadı" @@ -5206,7 +5206,7 @@ msgstr "Hata Günlüğü" msgid "Error Opening Adapter: %1" msgstr "Adaptör Açılırken Hata Oluştu: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "Kayıt verileri toplanırken hata oluştu!" @@ -5229,11 +5229,11 @@ msgstr "Oturum listesi alınırken hata oluştu: %1" msgid "Error occurred while loading some texture packs" msgstr "Bazı doku paketleri yüklenirken bir hata oluştu" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "Kodlar işlenirken hata oluştu." -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "Veri işlenirken hata oluştu." @@ -5241,11 +5241,11 @@ msgstr "Veri işlenirken hata oluştu." msgid "Error reading file: {0}" msgstr "Dosya okunurken hata oluştu: {0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "Hile kodları eşitlenirken hata oluştu!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "Kayıt verileri eşitlenirken hata oluştu!" @@ -5561,13 +5561,13 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 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:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "NetPlay hafıza kartı silinemedi. Yazma izinlerinizi doğrulayın." @@ -5736,7 +5736,7 @@ msgstr "Skylander modifiye edilemedi!" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5896,15 +5896,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5947,11 +5947,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "BT.DINF 'den SYSCONF 'a yazma başarısız" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5965,7 +5965,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6612,7 +6612,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "Oyun zaten çalışıyor!" @@ -7581,7 +7581,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "Geçersiz host" @@ -7733,8 +7733,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9789,11 +9789,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10900,9 +10900,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "Seçilmiş kontrolcü profili yok" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11044,7 +11044,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -12157,15 +12157,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -13213,7 +13213,7 @@ msgstr "" msgid "Traversal Server" msgstr "Geçiş Sunucusu" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "Geçiş sunucusunun ana bilgisayar bağlantısı zaman aşımına uğradı" @@ -13422,21 +13422,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13466,7 +13466,7 @@ msgstr "Bilinmeyen disk" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13478,7 +13478,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -14285,7 +14285,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14626,11 +14626,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" diff --git a/Languages/po/zh_CN.po b/Languages/po/zh_CN.po index 2a200e9f39..cbe8f182e3 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\n" "PO-Revision-Date: 2013-01-23 13:48+0000\n" "Last-Translator: 天绝星 , 2015-2024\n" "Language-Team: Chinese (China) (http://app.transifex.com/dolphinemu/dolphin-" @@ -1642,11 +1642,11 @@ msgstr "全部无符号整数" msgid "All files (*)" msgstr "所有文件 (*)" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "所有玩家代码已同步。" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "所有玩家存档已同步。" @@ -2838,7 +2838,7 @@ msgstr "代码路径已采用" msgid "Code:" msgstr "代码:" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "代码已接收!" @@ -3816,7 +3816,7 @@ msgstr "数据格式无法识别或损坏。" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "GC 存储卡管理器中的数据不一致,正在中止操作。" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "数据已接收!" @@ -5055,7 +5055,7 @@ msgstr "" msgid "End Addr" msgstr "结束地址" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "Enet 没有初始化" @@ -5198,7 +5198,7 @@ msgstr "错误日志" msgid "Error Opening Adapter: %1" msgstr "打开适配器时出错: %1" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "收集存档数据时出错!" @@ -5220,11 +5220,11 @@ msgstr "获取会话列表时出错: %1" msgid "Error occurred while loading some texture packs" msgstr "加载一些纹理包时发生错误" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "处理代码时出错。" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "处理数据时出错。" @@ -5232,11 +5232,11 @@ msgstr "处理数据时出错。" msgid "Error reading file: {0}" msgstr "读取文件时出错:{0}" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "同步保存金手指代码时出错!" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "同步存档数据时出错!" @@ -5556,12 +5556,12 @@ msgstr "" "\n" "此 Skylander 可能已在传送门上。" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "删除联机 GBA{0} 存档文件失败。请验证你的写入权限。" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "删除联机存储卡失败。请验证你的写入权限。" @@ -5724,7 +5724,7 @@ msgstr "修改 Skylander 失败!" msgid "Failed to open \"%1\" for writing." msgstr "打开 “%1” 进行写入失败。" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "打开 “{0}” 进行写入失败。" @@ -5909,15 +5909,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "将该游戏从 NAND 中移除失败。" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "重置联机 GCI 文件夹失败。请验证你的写入权限。" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "重置联机 NAND 文件夹失败。请验证你的写入权限。" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "重置联机重定向文件夹失败。请验证你的写入权限。" @@ -5962,11 +5962,11 @@ msgstr "卸载包失败: %1" msgid "Failed to write BT.DINF to SYSCONF" msgstr "无法将 BT.DINF 写入 SYSCONF" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "写入 Mii 数据失败。" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "写入 Wii 存档失败。" @@ -5980,7 +5980,7 @@ msgstr "写入配置文件失败!" msgid "Failed to write modified memory card to disk." msgstr "修改过的存储卡写入磁盘失败。" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "写入重定向存档失败。" @@ -6676,7 +6676,7 @@ msgstr "游戏具有不同的光盘编号" msgid "Game has a different revision" msgstr "游戏具有不同的修订版" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "游戏已经运行!" @@ -7721,7 +7721,7 @@ msgstr "无效校验和。" msgid "Invalid game." msgstr "无效游戏。" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "无效主机" @@ -7875,8 +7875,8 @@ msgstr "" "清除缓存后,JIT 无法找到代码空间。这应该从不会出现。请在错误跟踪器中上报此事" "件。 Dolphin 即将退出。" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "JIT 未激活" @@ -10000,11 +10000,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "无法启用服务质量 (QoS)。" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "已成功启用服务质量 (QoS)。" @@ -11148,9 +11148,9 @@ msgstr "所选字体" msgid "Selected controller profile does not exist" msgstr "所选控制器预设不存在" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -11267,6 +11267,10 @@ msgid "" "recommended to try each and select the backend that is least problematic." "

If unsure, select %1." msgstr "" +"选择在内部使用的图形接口。

软件渲染器非常慢,仅用于调试,所以推荐其他" +"任一后端。各后端具体表现因游戏与 GPU 而异,因此建议逐个尝试一下并选择问题最少" +"的一个以达到最好的模拟效果。

如无法确定,请选择 " +"%1 。" #: Source/Core/DolphinQt/Settings/GeneralPane.cpp:410 msgid "" @@ -11340,7 +11344,7 @@ msgstr "服务器 IP 地址" msgid "Server Port" msgstr "服务器端口" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "穿透尝试被服务器拒绝" @@ -12517,15 +12521,15 @@ msgid "" "emulation." msgstr "在开始和结束模拟时将 SD 卡与 SD 同步文件夹同步。" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "正在同步 AR 代码..." -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "正在同步 Gecko 代码..." -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "正在同步存档数据..." @@ -13657,7 +13661,7 @@ msgstr "穿透错误" msgid "Traversal Server" msgstr "穿透服务器" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "穿透服务器与主机连接超时" @@ -13882,21 +13886,21 @@ msgstr "未知 (Id:%1 Var:%2)" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "未知 DVD 命令 {0:08x} - 致命错误" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "收到未知的 同步_代码 消息,ID:{0}" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "收到未知的 同步_GECKO_代码 消息,ID:{0} 来自玩家:{1} 剔除玩家!" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "收到未知的 同步_存档_数据 消息,ID:{0}" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13926,7 +13930,7 @@ msgstr "未知光盘" msgid "Unknown error occurred." msgstr "发生未知错误。" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "未知错误 {0:x}" @@ -13938,7 +13942,7 @@ msgstr "未知错误。" msgid "Unknown message received with id : {0}" msgstr "收到未知的消息,ID:{0}" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "收到未知的消息,ID:{0} 来自玩家:{1} 剔除玩家!" @@ -14812,7 +14816,7 @@ msgstr "错误修订版" msgid "Wrote to \"%1\"." msgstr "已写入 “%1”。" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "已写入 “{0}”。" @@ -15190,11 +15194,11 @@ msgstr "{0} (NKit)" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "{0} IPL 位于 {1} 目录中。光盘可能无法识别" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "{0} 同步代码失败。" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "{0} 同步失败。" diff --git a/Languages/po/zh_TW.po b/Languages/po/zh_TW.po index a418292b30..3be8842a62 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-11-10 12:23+0100\n" +"POT-Creation-Date: 2024-11-30 20:46+0100\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/dolphinemu/dolphin-" @@ -1551,11 +1551,11 @@ msgstr "" msgid "All files (*)" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1211 +#: Source/Core/Core/NetPlayServer.cpp:1212 msgid "All players' codes synchronized." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1153 +#: Source/Core/Core/NetPlayServer.cpp:1154 msgid "All players' saves synchronized." msgstr "" @@ -2698,7 +2698,7 @@ msgstr "" msgid "Code:" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1866 +#: Source/Core/Core/NetPlayClient.cpp:1867 msgid "Codes received!" msgstr "" @@ -3572,7 +3572,7 @@ msgstr "" msgid "Data inconsistency in GCMemcardManager, aborting action." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1824 +#: Source/Core/Core/NetPlayClient.cpp:1825 msgid "Data received!" msgstr "" @@ -4706,7 +4706,7 @@ msgstr "" msgid "End Addr" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:127 +#: Source/Core/Core/NetPlayServer.cpp:128 msgid "Enet Didn't Initialize" msgstr "" @@ -4849,7 +4849,7 @@ msgstr "" msgid "Error Opening Adapter: %1" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1504 +#: Source/Core/Core/NetPlayServer.cpp:1506 msgid "Error collecting save data!" msgstr "" @@ -4871,11 +4871,11 @@ msgstr "" msgid "Error occurred while loading some texture packs" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1853 +#: Source/Core/Core/NetPlayClient.cpp:1854 msgid "Error processing codes." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1825 +#: Source/Core/Core/NetPlayClient.cpp:1826 msgid "Error processing data." msgstr "" @@ -4883,11 +4883,11 @@ msgstr "" msgid "Error reading file: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1540 +#: Source/Core/Core/NetPlayServer.cpp:1542 msgid "Error synchronizing cheat codes!" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1526 +#: Source/Core/Core/NetPlayServer.cpp:1528 msgid "Error synchronizing save data!" msgstr "" @@ -5195,12 +5195,12 @@ msgid "" "The Skylander may already be on the portal." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1293 +#: Source/Core/Core/NetPlayClient.cpp:1294 msgid "" "Failed to delete NetPlay GBA{0} save file. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1083 +#: Source/Core/Core/NetPlayClient.cpp:1084 msgid "Failed to delete NetPlay memory card. Verify your write permissions." msgstr "" @@ -5353,7 +5353,7 @@ msgstr "" msgid "Failed to open \"%1\" for writing." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:458 +#: Source/Android/jni/MainAndroid.cpp:462 msgid "Failed to open \"{0}\" for writing." msgstr "" @@ -5513,15 +5513,15 @@ msgstr "" msgid "Failed to remove this title from the NAND." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1107 +#: Source/Core/Core/NetPlayClient.cpp:1108 msgid "Failed to reset NetPlay GCI folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1138 +#: Source/Core/Core/NetPlayClient.cpp:1139 msgid "Failed to reset NetPlay NAND folder. Verify your write permissions." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1144 +#: Source/Core/Core/NetPlayClient.cpp:1145 msgid "Failed to reset NetPlay redirect folder. Verify your write permissions." msgstr "" @@ -5564,11 +5564,11 @@ msgstr "" msgid "Failed to write BT.DINF to SYSCONF" msgstr "寫入 BT.DINF 至 SYSCONF 失敗" -#: Source/Core/Core/NetPlayClient.cpp:1174 +#: Source/Core/Core/NetPlayClient.cpp:1175 msgid "Failed to write Mii data." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1259 +#: Source/Core/Core/NetPlayClient.cpp:1260 msgid "Failed to write Wii save." msgstr "" @@ -5582,7 +5582,7 @@ msgstr "" msgid "Failed to write modified memory card to disk." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1272 +#: Source/Core/Core/NetPlayClient.cpp:1273 msgid "Failed to write redirected save." msgstr "" @@ -6229,7 +6229,7 @@ msgstr "" msgid "Game has a different revision" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1750 +#: Source/Core/Core/NetPlayClient.cpp:1751 msgid "Game is already running!" msgstr "遊戲正在執行!" @@ -7198,7 +7198,7 @@ msgstr "" msgid "Invalid game." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1985 +#: Source/Core/Core/NetPlayClient.cpp:1986 msgid "Invalid host" msgstr "" @@ -7350,8 +7350,8 @@ msgid "" "Please report this incident on the bug tracker. Dolphin will now exit." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:432 -#: Source/Android/jni/MainAndroid.cpp:448 +#: Source/Android/jni/MainAndroid.cpp:436 +#: Source/Android/jni/MainAndroid.cpp:452 msgid "JIT is not active" msgstr "" @@ -9404,11 +9404,11 @@ msgctxt "" msgid "QT_LAYOUT_DIRECTION" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1601 +#: Source/Core/Core/NetPlayClient.cpp:1602 msgid "Quality of Service (QoS) couldn't be enabled." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1597 +#: Source/Core/Core/NetPlayClient.cpp:1598 msgid "Quality of Service (QoS) was successfully enabled." msgstr "" @@ -10513,9 +10513,9 @@ msgstr "" msgid "Selected controller profile does not exist" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1342 -#: Source/Core/Core/NetPlayServer.cpp:1716 -#: Source/Core/Core/NetPlayServer.cpp:2044 +#: Source/Core/Core/NetPlayServer.cpp:1343 +#: Source/Core/Core/NetPlayServer.cpp:1719 +#: Source/Core/Core/NetPlayServer.cpp:2047 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:491 #: Source/Core/DolphinQt/NetPlay/NetPlayDialog.cpp:895 msgid "Selected game doesn't exist in game list!" @@ -10657,7 +10657,7 @@ msgstr "" msgid "Server Port" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1982 +#: Source/Core/Core/NetPlayClient.cpp:1983 msgid "Server rejected traversal attempt" msgstr "" @@ -11765,15 +11765,15 @@ msgid "" "emulation." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1435 +#: Source/Core/Core/NetPlayClient.cpp:1436 msgid "Synchronizing AR codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1368 +#: Source/Core/Core/NetPlayClient.cpp:1369 msgid "Synchronizing Gecko codes..." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1051 +#: Source/Core/Core/NetPlayClient.cpp:1052 msgid "Synchronizing save data..." msgstr "" @@ -12810,7 +12810,7 @@ msgstr "" msgid "Traversal Server" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1979 +#: Source/Core/Core/NetPlayClient.cpp:1980 msgid "Traversal server timed out connecting to the host" msgstr "" @@ -13017,21 +13017,21 @@ msgstr "" msgid "Unknown DVD command {0:08x} - fatal error" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1335 +#: Source/Core/Core/NetPlayClient.cpp:1336 msgid "Unknown SYNC_CODES message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1240 +#: Source/Core/Core/NetPlayServer.cpp:1241 msgid "" "Unknown SYNC_GECKO_CODES message with id:{0} received from player:{1} " "Kicking player!" msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1036 +#: Source/Core/Core/NetPlayClient.cpp:1037 msgid "Unknown SYNC_SAVE_DATA message received with id: {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1183 +#: Source/Core/Core/NetPlayServer.cpp:1184 msgid "" "Unknown SYNC_SAVE_DATA message with id:{0} received from player:{1} Kicking " "player!" @@ -13061,7 +13061,7 @@ msgstr "" msgid "Unknown error occurred." msgstr "" -#: Source/Core/Core/NetPlayClient.cpp:1988 +#: Source/Core/Core/NetPlayClient.cpp:1989 msgid "Unknown error {0:x}" msgstr "" @@ -13073,7 +13073,7 @@ msgstr "" msgid "Unknown message received with id : {0}" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1248 +#: Source/Core/Core/NetPlayServer.cpp:1249 msgid "Unknown message with id:{0} received from player:{1} Kicking player!" msgstr "" @@ -13877,7 +13877,7 @@ msgstr "" msgid "Wrote to \"%1\"." msgstr "" -#: Source/Android/jni/MainAndroid.cpp:464 +#: Source/Android/jni/MainAndroid.cpp:468 msgid "Wrote to \"{0}\"." msgstr "" @@ -14214,11 +14214,11 @@ msgstr "" msgid "{0} IPL found in {1} directory. The disc might not be recognized" msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1232 +#: Source/Core/Core/NetPlayServer.cpp:1233 msgid "{0} failed to synchronize codes." msgstr "" -#: Source/Core/Core/NetPlayServer.cpp:1174 +#: Source/Core/Core/NetPlayServer.cpp:1175 msgid "{0} failed to synchronize." msgstr "" From 74ed5e55326b9d8e67dfbb8dd6f61d04bcae2445 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 1 Dec 2024 12:56:42 +0100 Subject: [PATCH 34/40] Android/GCAdapter: Don't join current thread The read thread could call Reset, which in turn tried to join the read thread, leading to a SIGABRT. This manifested as Dolphin consistently crashing when disconnecting a GC adapter and having a chance of crashing a few seconds after connecting a GC adapter. --- Source/Core/InputCommon/GCAdapter.cpp | 34 ++++++++++++++++++++------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp index 84b5022c99..bf7b1f136c 100644 --- a/Source/Core/InputCommon/GCAdapter.cpp +++ b/Source/Core/InputCommon/GCAdapter.cpp @@ -66,7 +66,13 @@ static void AddGCAdapter(libusb_device* device); static void ResetRumbleLockNeeded(); #endif -static void Reset(); +enum class CalledFromReadThread +{ + No, + Yes, +}; + +static void Reset(CalledFromReadThread called_from_read_thread); static void Setup(); static void ProcessInputPayload(const u8* data, std::size_t size); static void ReadThreadFunc(); @@ -123,6 +129,7 @@ static std::atomic s_controller_write_payload_size{0}; static std::thread s_read_adapter_thread; static Common::Flag s_read_adapter_thread_running; +static Common::Flag s_read_adapter_thread_needs_joining; static std::thread s_write_adapter_thread; static Common::Flag s_write_adapter_thread_running; static Common::Event s_write_happened; @@ -324,7 +331,7 @@ static int HotplugCallback(libusb_context* ctx, libusb_device* dev, libusb_hotpl else if (event == LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT) { if (s_handle != nullptr && libusb_get_device(s_handle) == dev) - Reset(); + Reset(CalledFromReadThread::No); // Reset a potential error status now that the adapter is unplugged if (s_status == AdapterStatus::Error) @@ -516,8 +523,11 @@ static void Setup() s_detected = true; // Make sure the thread isn't in the middle of shutting down while starting a new one - if (s_read_adapter_thread_running.TestAndClear()) + if (s_read_adapter_thread_needs_joining.TestAndClear() || + s_read_adapter_thread_running.TestAndClear()) + { s_read_adapter_thread.join(); + } s_read_adapter_thread_running.Set(true); s_read_adapter_thread = std::thread(ReadThreadFunc); @@ -682,7 +692,7 @@ void Shutdown() libusb_hotplug_deregister_callback(*s_libusb_context, s_hotplug_handle); #endif #endif - Reset(); + Reset(CalledFromReadThread::No); #if GCADAPTER_USE_LIBUSB_IMPLEMENTATION s_libusb_context.reset(); @@ -696,7 +706,7 @@ void Shutdown() } } -static void Reset() +static void Reset(CalledFromReadThread called_from_read_thread) { #if GCADAPTER_USE_LIBUSB_IMPLEMENTATION std::unique_lock lock(s_init_mutex, std::defer_lock); @@ -709,8 +719,16 @@ static void Reset() return; #endif - if (s_read_adapter_thread_running.TestAndClear()) - s_read_adapter_thread.join(); + if (called_from_read_thread == CalledFromReadThread::No) + { + if (s_read_adapter_thread_running.TestAndClear()) + s_read_adapter_thread.join(); + } + else + { + s_read_adapter_thread_needs_joining.Set(); + s_read_adapter_thread_running.Clear(); + } // The read thread will close the write thread s_port_states.fill({}); @@ -790,7 +808,7 @@ void ProcessInputPayload(const u8* data, std::size_t size) ERROR_LOG_FMT(CONTROLLERINTERFACE, "error reading payload (size: {}, type: {:02x})", size, data[0]); #if GCADAPTER_USE_ANDROID_IMPLEMENTATION - Reset(); + Reset(CalledFromReadThread::Yes); #endif } else From 992b4ea9309899ebc7ca576ebea711a70523098a Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Sun, 1 Dec 2024 18:00:52 -0500 Subject: [PATCH 35/40] ScmRevGen: Bump major version to 2412 --- CMake/ScmRevGen.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/ScmRevGen.cmake b/CMake/ScmRevGen.cmake index 12ee7727b2..751e8b78c2 100644 --- a/CMake/ScmRevGen.cmake +++ b/CMake/ScmRevGen.cmake @@ -31,7 +31,7 @@ if(GIT_FOUND) endif() # version number -set(DOLPHIN_VERSION_MAJOR "2409") +set(DOLPHIN_VERSION_MAJOR "2412") set(DOLPHIN_VERSION_MINOR "0") set(DOLPHIN_VERSION_PATCH ${DOLPHIN_WC_REVISION}) From 7e4b1780e1e594c553acf24b9a6b93a6fda7bd4a Mon Sep 17 00:00:00 2001 From: "Mateus B. Cassiano" Date: Tue, 3 Dec 2024 16:48:54 -0400 Subject: [PATCH 36/40] GameINI: drop Single Core override from Eternal Darkness --- Data/Sys/GameSettings/GED.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/Data/Sys/GameSettings/GED.ini b/Data/Sys/GameSettings/GED.ini index d866957056..df5e89ced2 100644 --- a/Data/Sys/GameSettings/GED.ini +++ b/Data/Sys/GameSettings/GED.ini @@ -2,7 +2,6 @@ [Core] # Values set here will override the main Dolphin settings. -CPUThread = False [OnFrame] # Add memory patches to be applied every frame here. From ad1511982ab025561f375500bac89aec088438b9 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Fri, 8 Nov 2024 22:27:03 -0600 Subject: [PATCH 37/40] InputCommon/SDL: Add touchpad inputs. --- .../ControllerInterface/SDL/SDL.cpp | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index 44abd54cd5..7b68b96712 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -283,6 +283,39 @@ private: const Motor m_motor; }; + class NormalizedInput : public Input + { + public: + NormalizedInput(const char* name, const float* state) : m_name{std::move(name)}, m_state{*state} + { + } + + std::string GetName() const override { return std::string{m_name}; } + ControlState GetState() const override { return m_state; } + + private: + const char* const m_name; + const float& m_state; + }; + + template + class NonDetectableDirectionalInput : public Input + { + public: + NonDetectableDirectionalInput(const char* name, const float* state) + : m_name{std::move(name)}, m_state{*state} + { + } + + std::string GetName() const override { return std::string{m_name} + (Scale > 0 ? '+' : '-'); } + bool IsDetectable() const override { return false; } + ControlState GetState() const override { return m_state * Scale; } + + private: + const char* const m_name; + const float& m_state; + }; + class MotionInput : public Input { public: @@ -316,6 +349,17 @@ public: Core::DeviceRemoval UpdateInput() override { m_battery_value = GetBatteryValueFromSDLPowerLevel(SDL_JoystickCurrentPowerLevel(m_joystick)); + + // We only support one touchpad and one finger. + const int touchpad_index = 0; + const int finger_index = 0; + + Uint8 state = 0; + SDL_GameControllerGetTouchpadFinger(m_gamecontroller, touchpad_index, finger_index, &state, + &m_touchpad_x, &m_touchpad_y, &m_touchpad_pressure); + m_touchpad_x = m_touchpad_x * 2 - 1; + m_touchpad_y = m_touchpad_y * 2 - 1; + return Core::DeviceRemoval::Keep; } @@ -325,6 +369,9 @@ private: SDL_Joystick* const m_joystick; SDL_Haptic* m_haptic = nullptr; ControlState m_battery_value; + float m_touchpad_x = 0.f; + float m_touchpad_y = 0.f; + float m_touchpad_pressure = 0.f; }; class InputBackend final : public ciface::InputBackend @@ -712,6 +759,18 @@ GameController::GameController(SDL_GameController* const gamecontroller, AddOutput(new MotorR(m_gamecontroller)); } + // Touchpad + if (SDL_GameControllerGetNumTouchpads(m_gamecontroller) > 0) + { + const char* const name_x = "Touchpad X"; + AddInput(new NonDetectableDirectionalInput<-1>(name_x, &m_touchpad_x)); + AddInput(new NonDetectableDirectionalInput<+1>(name_x, &m_touchpad_x)); + const char* const name_y = "Touchpad Y"; + AddInput(new NonDetectableDirectionalInput<-1>(name_y, &m_touchpad_y)); + AddInput(new NonDetectableDirectionalInput<+1>(name_y, &m_touchpad_y)); + AddInput(new NormalizedInput("Touchpad Pressure", &m_touchpad_pressure)); + } + // Motion const auto add_sensor = [this](SDL_SensorType type, std::string_view sensor_name, const SDLMotionAxisList& axes) { From 445fe2248c4b141584e2587a018fee84480e3362 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 7 Dec 2024 20:16:15 +0000 Subject: [PATCH 38/40] GameSettings: set EFBAccessEnable=True for Neighbours from Hell This fixes the loading screens that show a walking animation. --- Data/Sys/GameSettings/GFH.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Data/Sys/GameSettings/GFH.ini b/Data/Sys/GameSettings/GFH.ini index 1bca2c245a..79211d2792 100644 --- a/Data/Sys/GameSettings/GFH.ini +++ b/Data/Sys/GameSettings/GFH.ini @@ -10,3 +10,6 @@ MMU = True [ActionReplay] # Add action replay cheats here. +[Video_Hacks] +# Needed for loading screens to show up. +EFBAccessEnable = True From 84ab15e020a993286329e1fc0b0e47ffc3c0a536 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 15 Dec 2024 18:00:14 +0100 Subject: [PATCH 39/40] AchievementManager: Add required forward declarations This was causing compilation errors when building without USE_RETRO_ACHIEVEMENTS. --- Source/Core/Core/AchievementManager.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Source/Core/Core/AchievementManager.h b/Source/Core/Core/AchievementManager.h index 9de18f1711..b4ec5f8195 100644 --- a/Source/Core/Core/AchievementManager.h +++ b/Source/Core/Core/AchievementManager.h @@ -275,11 +275,21 @@ private: #include +namespace ActionReplay +{ +struct ARCode; +} + namespace DiscIO { class Volume; } +namespace Gecko +{ +class GeckoCode; +} + class AchievementManager { public: From ad24ddb6bb01ddaba19bf72e8eda5cae354701ae Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 15 Dec 2024 18:15:57 +0100 Subject: [PATCH 40/40] VerifyTool: Add missing USE_RETRO_ACHIEVEMENTS ifdefs --- Source/Core/DolphinTool/VerifyCommand.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinTool/VerifyCommand.cpp b/Source/Core/DolphinTool/VerifyCommand.cpp index b80f00a273..fcaa31b819 100644 --- a/Source/Core/DolphinTool/VerifyCommand.cpp +++ b/Source/Core/DolphinTool/VerifyCommand.cpp @@ -133,8 +133,10 @@ int VerifyCommand(const std::vector& args) hashes_to_calculate.md5 = true; else if (algorithm == "sha1") hashes_to_calculate.sha1 = true; +#ifdef USE_RETRO_ACHIEVEMENTS else if (algorithm == "rchash") rc_hash_calculate = true; +#endif } if (!hashes_to_calculate.crc32 && !hashes_to_calculate.md5 && !hashes_to_calculate.sha1 && @@ -163,11 +165,13 @@ int VerifyCommand(const std::vector& args) verifier.Finish(); const DiscIO::VolumeVerifier::Result& result = verifier.GetResult(); +#ifdef USE_RETRO_ACHIEVEMENTS // Calculate rcheevos hash if (rc_hash_calculate) { rc_hash_result = AchievementManager::CalculateHash(input_file_path); } +#endif // Print the report if (!algorithm_is_set)