From 088a0d887d0591b47fa5f4b562e425124f13b251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Tue, 8 Oct 2024 21:43:25 +0200 Subject: [PATCH] Remove a redundant translation string --- Tools/langtool/Cargo.lock | 16 ++++++++-------- UI/MiscScreens.cpp | 4 +++- assets/lang/ar_AE.ini | 1 - assets/lang/az_AZ.ini | 1 - assets/lang/bg_BG.ini | 1 - assets/lang/ca_ES.ini | 1 - assets/lang/cz_CZ.ini | 1 - assets/lang/da_DK.ini | 1 - assets/lang/de_DE.ini | 1 - assets/lang/dr_ID.ini | 1 - assets/lang/en_US.ini | 1 - assets/lang/es_ES.ini | 1 - assets/lang/es_LA.ini | 1 - assets/lang/fa_IR.ini | 1 - assets/lang/fi_FI.ini | 1 - assets/lang/fr_FR.ini | 1 - assets/lang/gl_ES.ini | 1 - assets/lang/gr_EL.ini | 1 - assets/lang/he_IL.ini | 1 - assets/lang/he_IL_invert.ini | 1 - assets/lang/hr_HR.ini | 1 - assets/lang/hu_HU.ini | 1 - assets/lang/id_ID.ini | 1 - assets/lang/it_IT.ini | 1 - assets/lang/ja_JP.ini | 1 - assets/lang/jv_ID.ini | 1 - assets/lang/ko_KR.ini | 1 - assets/lang/ku_SO.ini | 1 - assets/lang/lo_LA.ini | 1 - assets/lang/lt-LT.ini | 1 - assets/lang/ms_MY.ini | 1 - assets/lang/nl_NL.ini | 1 - assets/lang/no_NO.ini | 1 - assets/lang/pl_PL.ini | 1 - assets/lang/pt_BR.ini | 1 - assets/lang/pt_PT.ini | 1 - assets/lang/ro_RO.ini | 1 - assets/lang/ru_RU.ini | 1 - assets/lang/sv_SE.ini | 1 - assets/lang/tg_PH.ini | 1 - assets/lang/th_TH.ini | 1 - assets/lang/tr_TR.ini | 1 - assets/lang/uk_UA.ini | 1 - assets/lang/vi_VN.ini | 1 - assets/lang/zh_CN.ini | 1 - assets/lang/zh_TW.ini | 1 - 46 files changed, 11 insertions(+), 53 deletions(-) diff --git a/Tools/langtool/Cargo.lock b/Tools/langtool/Cargo.lock index da4b681a99..6717cf54fb 100644 --- a/Tools/langtool/Cargo.lock +++ b/Tools/langtool/Cargo.lock @@ -53,9 +53,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", "clap_derive", @@ -63,9 +63,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", @@ -118,9 +118,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a" dependencies = [ "unicode-ident", ] @@ -142,9 +142,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "syn" -version = "2.0.77" +version = "2.0.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" +checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" dependencies = [ "proc-macro2", "quote", diff --git a/UI/MiscScreens.cpp b/UI/MiscScreens.cpp index 900d7ad778..b5af66d36d 100644 --- a/UI/MiscScreens.cpp +++ b/UI/MiscScreens.cpp @@ -797,6 +797,7 @@ void CreditsScreen::CreateViews() { using namespace UI; auto di = GetI18NCategory(I18NCat::DIALOG); auto cr = GetI18NCategory(I18NCat::PSPCREDITS); + auto mm = GetI18NCategory(I18NCat::MAINMENU); root_ = new AnchorLayout(new LayoutParams(FILL_PARENT, FILL_PARENT)); Button *back = root_->Add(new Button(di->T("Back"), new AnchorLayoutParams(260, 64, NONE, NONE, 10, 10, false))); @@ -807,7 +808,7 @@ void CreditsScreen::CreateViews() { int rightYOffset = 0; if (!System_GetPropertyBool(SYSPROP_APP_GOLD)) { - root_->Add(new Button(cr->T("Buy Gold"), new AnchorLayoutParams(260, 64, NONE, NONE, 10, 84, false)))->OnClick.Handle(this, &CreditsScreen::OnSupport); + root_->Add(new Button(mm->T("Buy PPSSPP Gold"), new AnchorLayoutParams(260, 64, NONE, NONE, 10, 84, false)))->OnClick.Handle(this, &CreditsScreen::OnSupport); rightYOffset = 74; } root_->Add(new Button(cr->T("PPSSPP Forums"), new AnchorLayoutParams(260, 64, 10, NONE, NONE, 158, false)))->OnClick.Handle(this, &CreditsScreen::OnForums); @@ -815,6 +816,7 @@ void CreditsScreen::CreateViews() { root_->Add(new Button("www.ppsspp.org", new AnchorLayoutParams(260, 64, 10, NONE, NONE, 10, false)))->OnClick.Handle(this, &CreditsScreen::OnPPSSPPOrg); root_->Add(new Button(cr->T("Privacy Policy"), new AnchorLayoutParams(260, 64, 10, NONE, NONE, 84, false)))->OnClick.Handle(this, &CreditsScreen::OnPrivacy); root_->Add(new Button(cr->T("Twitter @PPSSPP_emu"), new AnchorLayoutParams(260, 64, NONE, NONE, 10, rightYOffset + 84, false)))->OnClick.Handle(this, &CreditsScreen::OnTwitter); + #if PPSSPP_PLATFORM(ANDROID) || PPSSPP_PLATFORM(IOS) root_->Add(new Button(cr->T("Share PPSSPP"), new AnchorLayoutParams(260, 64, NONE, NONE, 10, rightYOffset + 158, false)))->OnClick.Handle(this, &CreditsScreen::OnShare); #endif diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index ae5c2d93b4..5317c69e9e 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -1038,7 +1038,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = بناء سيرفر -Buy Gold = ‎إشتري النسخة الذهبية check = ‎تفحص أيضا برنامج Dolphin, أفضل محاكي جهاز الوي ومكعب الألعاب موجود حالياً: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = ‎المساهمون: diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index ea6e2d121d..3437631a09 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Buy Gold check = Also check out Dolphin, the best Wii/GC emu around: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index 44ab1c1ed2..1c0330c6eb 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Купи Gold check = Също погледнете Dolphin, най-добрия Wii/GC емулатор: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Сътрудници: diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index 30c8f89257..8d509dde16 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Buy Gold check = Also check out Dolphin, the best Wii/GC emu around: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index e895e80ff1..bc4d2b7b05 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -1030,7 +1030,6 @@ Vignette = Viněta [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Koupit Zlaté PPSSPP check = Vyzkoušejte také Dolphin, nejlepší emulátor Wii/GC vůbec: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Přispěvatelé: diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index 9bcbcb7717..a640eec9d9 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Køb PPSSPP guld check = Se også Dolphin, den bedste tilgængelige Wii/GC emulator: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Bidragsydere: diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 27f7cf1455..09c09a9196 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = Alle Forenmoderatoren build server = Build server -Buy Gold = Erwerbe PPSSPP Gold check = Dolphin, der beste erhältliche Wii/GC Emulator: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Mitwirkende: diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index cc1d320a84..52dca5ca1c 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Alli'i Gold check = Kita to'piki' Dolphin, emu Wii/GC paling marege: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Yato bali'i garagai: diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index 0af9442f93..ba52629f13 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -1005,7 +1005,6 @@ MitchellNetravali = Bicubic (Mitchell-Netravali) Upscaler [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Buy Gold check = Also check out Dolphin, the best Wii/GC emu around: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index ae6b526f8f..5502070dc6 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -1031,7 +1031,6 @@ Vignette = Viñeta [PSPCredits] all the forum mods = Todos los foros de Mods build server = Servidor de compilaciones -Buy Gold = Comprar PPSSPP check = También te recomendamos el emulador de GC/Wii Dolphin: CheckOutPPSSPP = Prueba PPSSPP, el mejor emulador de PSP: https://www.ppsspp.org/ contributors = Colaboradores: diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index dc7874fb0e..2432a2bae2 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -1030,7 +1030,6 @@ Vignette = Viñeta [PSPCredits] all the forum mods = Todos los foros de Mods build server = Servidor de build -Buy Gold = Comprar\nPPSSPP Gold check = También te recomendamos el emulador de Wii/GC Dolphin CheckOutPPSSPP = Prueba PPSSPP, el mejor emulador de PSP: https://www.ppsspp.org/ contributors = Colaboradores: diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index 839c0b36b1..e6df76162b 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -1030,7 +1030,6 @@ Vignette = شکل [PSPCredits] all the forum mods = همهٔ ناظران انجمن build server = build server -Buy Gold = ‎نسخهٔ طلایی نرم‌افزار check = ‎.موجود Wii/GC و سری هم به شبیه ساز دلفین بزنید، بهترین شبیه ساز CheckOutPPSSPP = PPSSPP را بررسی کنید، یک شبیه‌ساز PSP عالی: https://www.ppsspp.org/ contributors = ‎:مشارکت‌کنندگان diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index 9349c48700..ca4222d4ed 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = kaikki foorumin moderaattorit build server = koontipalvelin -Buy Gold = Osta Gold check = Tutustu myös Dolphiniin, parhaaseen Wii/GC-emulaattoriin: CheckOutPPSSPP = Tutustu PPSSPP:ään, mahtavaan PSP-emulaattoriin: https://www.ppsspp.org/ contributors = Osallistujat: diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index 444b9fcc21..21e2babd7e 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = tous les modérateurs du forum build server = serveur de compilation -Buy Gold = Version Gold check = Essayez aussi Dolphin, le meilleur émulateur de Wii/GameCube : CheckOutPPSSPP = Jetez un œil à PPSSPP, l'impressionnant émulateur de PSP : https://www.ppsspp.org/ contributors = Contributeurs : diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index a044a00bcb..944c851a1d 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -1030,7 +1030,6 @@ Vignette = Viñeta [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Comprar PPSSPP check = También recomendamoste o emulador de GC/Wii Dolphin: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Colaboradores: diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index 0bec07c86e..05feb9936b 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = όλους τους διαχειριστές του forum build server = build server -Buy Gold = Αγορά Gold check = Επίσης δώστε μια ματιά στο Dolphin, ο καλύτερος εξομοιωτής Wii/GC: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Συντελεστές: diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index af48c96a86..d36b20e0e4 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Gold קנה גרסאת check = הטוב ביותר Wii/GC אמולטור ה Dolphin, :ראו את CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = :תורמים diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index ca6c97f8d3..59a37bef4b 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = תאסרג הנק Gold check = תא ואר: Dolphin, ה רוטלומא Wii/GC רתויב בוטה CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = םימרות: diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index 7115735ee8..7bfa3ea9ce 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = svi forum modovi build server = build server -Buy Gold = Kupi Gold check = Također provjeri Dolphin, najbolji Wii/GC emu around: CheckOutPPSSPP = Baci oko na PPSSPP, odličan PSP emulator: https://www.ppsspp.org/ contributors = Kontributori: diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index 94c7a0441d..55ae6d0960 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -1030,7 +1030,6 @@ Vignette = Vignetta [PSPCredits] all the forum mods = a fórum összes moderátorának build server = build szerver -Buy Gold = Gold vásárlása check = Nézd meg a Dolphin-t is, a legjobb Wii/GC emulátort: CheckOutPPSSPP = Nézd meg a PPSSPP-t, a lenyűgöző PSP emulatort: https://www.ppsspp.org/ contributors = Közreműködtek: diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 428ffdea30..44d9e9ed2a 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -1030,7 +1030,6 @@ Vignette = Penggelapan di sisi [PSPCredits] all the forum mods = Semua forum mod build server = Membangun server -Buy Gold = Beli versi Emas check = Lihat pula Dolphin, emulator Wii/GC terbaik: CheckOutPPSSPP = Lihat PPSSPP, emulator PSP yang luar biasa: https://www.ppsspp.org/ contributors = Kontributor: diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index 4a9d8ef3d4..a96afef89c 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -999,7 +999,6 @@ Vignette = Miniatura [PSPCredits] all the forum mods = tutte le mod del forum build server = crea server -Buy Gold = Compra Gold check = Da' anche un'occhiata a Dolphin, il miglior emulatore per Wii/GC sulla piazza: CheckOutPPSSPP = Da' un'occhiata a PPSSPP, il meraviglioso emulatore PSP: http://www.ppsspp.org/ contributors = Collaboratori: diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index 81014281cd..97109027d9 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -998,7 +998,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = フォーラムのモデレータの皆さん build server = ビルドサーバ -Buy Gold = Gold版を購入 check = Dolphinもチェックしてください。最高のWii/GCエミュレータです: CheckOutPPSSPP = PPSSPPをチェックしてください。素晴らしいPSPエミュレータです: https://www.ppsspp.org/ contributors = 貢献者: diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index 5f39af525a..557a002d7f 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Tuku versi Emas (Gold) check = Ndeleng pula Dolphin, emulator Wii/GC terapik saat iki: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Kontributor: diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index b88e8c7f54..5fd2aa8d9f 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -981,7 +981,6 @@ MitchellNetravali = 고등차수 (미첼-네트라발리) 업스케일러 [PSPCredits] all the forum mods = 모든 포럼 모드 build server = 빌드 서버 -Buy Gold = 골드 버전 구매 check = 또한 최고의 Wii/GC 에뮤인 돌핀도 확인하세요: CheckOutPPSSPP = 멋진 PSP 에뮬레이터인 PPSSPP를 확인하세요: https://www.ppsspp.org/ contributors = 도움을 주신 분들: diff --git a/assets/lang/ku_SO.ini b/assets/lang/ku_SO.ini index 99d89c6dd2..013869e00f 100644 --- a/assets/lang/ku_SO.ini +++ b/assets/lang/ku_SO.ini @@ -995,7 +995,6 @@ MitchellNetravali = Bicubic (Mitchell-Netravali) Upscaler [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Buy Gold check = Also check out Dolphin, the best Wii/GC emu around: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index a68b3be5e9..a0f1782aee 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = ຊື້ແບບ Gold check = ລວມໄປເຖິງອີມູເລເຕີຣ໌ Dolphin, ດີທີ່ສຸດສຳລັບຫຼິ້ນ Wii/GC ໃນຕອນນີ້: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = ຜູ້ມີສ່ວນຊ່ອຍ: diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index a0856f9592..8fe1997d2b 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Nusipirkti "Gold" check = Be to, pažiūrekite Dolphin, geriausią Wii/GameCube emuliatorių aplink: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Pagalbininkai: diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index f4cfc314fa..3d5457b0b2 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Beli versi Gold check = Juga lihat Dolphin,emu terbaik Wii/GC disekitar: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Para penyumbang: diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index 0f633e8fb1..308fafca79 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -1030,7 +1030,6 @@ Vignette = Vignet [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Gold kopen check = Probeer ook Dolphin, de beste Wii/GC-emulator van het moment: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Bijdragers: diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index 3c6657b759..7d7946c626 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -1030,7 +1030,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Buy Gold check = Also check out Dolphin, the best Wii/GC emu around: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index 87ef077a8e..da6efc5afc 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -1035,7 +1035,6 @@ Vignette = Winieta [PSPCredits] all the forum mods = wszystkich moderatorów forum build server = Serwer kompilacji -Buy Gold = Kup PPSSPP Gold check = Wypróbuj również Dolphin, najlepszy emulator Wii/GC: CheckOutPPSSPP = Wypróbuj PPSSPP, świetny emulator PSP: https://www.ppsspp.org/ contributors = Współautorzy: diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index 6232814f1e..f2bc98159f 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -1005,7 +1005,6 @@ MitchellNetravali = Ampliador bi-cúbico (Mitchell-Netravali) [PSPCredits] all the forum mods = Todos os moderadores do fórum build server = Servidor dos builds -Buy Gold = Comprar Gold check = Verifique também o Dolphin, o melhor emu de Wii/GC: CheckOutPPSSPP = Verifique o PPSSPP, o incrível emulador de PSP: https://www.ppsspp.org/ contributors = Contribuidores: diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 590af3f726..8262aa46c9 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -1024,7 +1024,6 @@ MitchellNetravali = Ampliador Bicúbico (Mitchell-Netravali) [PSPCredits] all the forum mods = Todos os moderadores do fórum build server = Servidor das builds -Buy Gold = Comprar Versão Gold check = Experimenta também o Dolphin, o melhor emulador de Wii/GameCube: CheckOutPPSSPP = Experimenta o PPSSPP, o incrível emulador de PSP: https://www.ppsspp.org/ contributors = Contribuidores: diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index ce20b8fd0c..b5c36f7c3f 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -1031,7 +1031,6 @@ Vignette = Vignette [PSPCredits] all the forum mods = all the forum mods build server = build server -Buy Gold = Cumpară Gold check = Uitați-vă și la Dolphin, cel mai bun emulator Wii/GC CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contribuitori: diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index 6642b7a632..f14eb70846 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -998,7 +998,6 @@ Vignette = Виньетирование [PSPCredits] all the forum mods = всем модераторам форума build server = сборочный сервер -Buy Gold = Купить Gold check = Также попробуйте Dolphin - лучший эмулятор Wii/GC: CheckOutPPSSPP = Зацените PPSSPP, потрясающий эмулятор PSP: https://www.ppsspp.org/ contributors = При участии: diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index c99eb71bb5..488472dc28 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -982,7 +982,6 @@ Vignette = Vignett [PSPCredits] all the forum mods = all the forum mods build server = bygg-server -Buy Gold = Köp Guld check = Kolla också in Dolphin, den bästa Wii/GC-emulatorn CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Contributors: diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index e99d4fa6cc..82b8e31b16 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -1031,7 +1031,6 @@ Vignette = Vignet [PSPCredits] all the forum mods = lahat ng mods ng forum build server = build server -Buy Gold = Bilhin ang PPSSPP Gold check = Tingnan din ang Dolphin, ang Best na Wii/GC emu sa balat ng lupa: CheckOutPPSSPP = Subukan ang PPSSPP, ang kahanga-hangang PSP emulator: https://www.ppsspp.org/ contributors = Mga nag-ambag: diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index 354e813530..b4415ee68c 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -1047,7 +1047,6 @@ Vignette = ภาพเน้นขอบหม่น [PSPCredits] all the forum mods = และเว็บม็อดต่างๆ build server = บิ๊วด์ เซิร์ฟเวอร์ -Buy Gold = ซื้อแบบตัวสีทอง check = รวมไปถึงอีมูเลเตอร์ Dolphin ดีที่สุดในการเล่นเกม Wii/GC ด้วยอีกเช่นเดียวกัน: CheckOutPPSSPP = ตรวจสอบข้อมูลของ PPSSPP, PSP อีมูเลเตอร์ ขั้นเทพ ได้ที่: https://www.ppsspp.org/ contributors = ผู้มีส่วนช่วย: diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index 67ed2aebd3..e46a5bcd5f 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -1031,7 +1031,6 @@ Vignette = Vinyet [PSPCredits] all the forum mods = Bütün forum moderatörlerine build server = build server -Buy Gold = Gold Sürümü alın check = Ayrıca etraftaki en iyi Wii/GC emülatörü olan Dolphin'e göz atın: CheckOutPPSSPP = PPSSPP'ye göz atın: https://www.ppsspp.org/ contributors = Yardımcılar: diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index 3e6a748f49..db0b5c0798 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -1030,7 +1030,6 @@ Vignette = Віньєтка [PSPCredits] all the forum mods = всім модераторам форуму build server = сервер білдів -Buy Gold = Купити Gold check = Також спробуйте Dolphin - кращий Wii/GC емулятор : CheckOutPPSSPP = Перевірте PPSSPP, дивовижний емулятор PSP: https://www.ppsspp.org/ contributors = При участі : diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index 3f65f9388d..3816ba0958 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -1030,7 +1030,6 @@ Vignette = Đen góc [PSPCredits] all the forum mods = tất cả mod trong diễn đàn build server = xây dựng server -Buy Gold = Mua PPSSPP Gold check = Xin cũng xem qua Dolphin, giả lập Wii/GC tốt nhất hiện nay: CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/ contributors = Đóng góp: diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index 0a7c06f07e..12a8e5ab97 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -1031,7 +1031,6 @@ CatmullRom = Catmull-Rom双三插值缩放 [PSPCredits] all the forum mods = 论坛所有的管理员 build server = 编译服务器 -Buy Gold = 升级黄金版 check = 同时请浏览我们的海豚Dolphin模拟器,最好用的Wii/NGC模拟器 CheckOutPPSSPP = 浏览我们的PPSSPP,一款超级棒的PSP模拟器:https://www.ppsspp.org/ contributors = 贡献者: diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index ca7961790c..4cb405a2a1 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -998,7 +998,6 @@ MitchellNetravali = 雙立方 (密契爾 - 內拉瓦利) 放大 [PSPCredits] all the forum mods = 所有論壇模組 build server = 組建伺服器 -Buy Gold = 購買黃金版 check = 同樣歡迎使用 Dolphin 模擬器,這是最棒的 Wii/GC 模擬器 CheckOutPPSSPP = 體驗 PPSSPP,一款絕佳的 PSP 模擬器:https://www.ppsspp.org/ contributors = 參與者: