From 6eb0b3fd516d440cdd874c03d3b1546d27131fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 4 May 2026 09:42:30 +0200 Subject: [PATCH] Fix an issue with Exit icon not showing up in MessagePopup --- UI/EmuScreen.cpp | 4 ++-- UI/MainScreen.cpp | 3 ++- UI/PauseScreen.cpp | 7 +++---- Windows/MainWindow.cpp | 3 +-- android/src/main/jniLibs/README.txt | 12 +++++++++++- assets/lang/ar_AE.ini | 2 +- assets/lang/az_AZ.ini | 2 +- assets/lang/be_BY.ini | 2 +- assets/lang/bg_BG.ini | 2 +- assets/lang/ca_ES.ini | 2 +- assets/lang/cz_CZ.ini | 2 +- assets/lang/da_DK.ini | 2 +- assets/lang/de_DE.ini | 2 +- assets/lang/dr_ID.ini | 2 +- assets/lang/en_US.ini | 2 +- assets/lang/es_ES.ini | 2 +- assets/lang/es_LA.ini | 2 +- assets/lang/fa_IR.ini | 2 +- assets/lang/fi_FI.ini | 2 +- assets/lang/fr_FR.ini | 2 +- assets/lang/gl_ES.ini | 2 +- assets/lang/gr_EL.ini | 2 +- assets/lang/he_IL.ini | 2 +- assets/lang/he_IL_invert.ini | 2 +- assets/lang/hr_HR.ini | 2 +- assets/lang/hu_HU.ini | 2 +- assets/lang/id_ID.ini | 2 +- assets/lang/it_IT.ini | 2 +- assets/lang/ja_JP.ini | 2 +- assets/lang/jv_ID.ini | 2 +- assets/lang/ko_KR.ini | 2 +- assets/lang/ku_SO.ini | 2 +- assets/lang/lo_LA.ini | 2 +- assets/lang/lt-LT.ini | 2 +- assets/lang/ms_MY.ini | 2 +- assets/lang/nl_NL.ini | 2 +- assets/lang/no_NO.ini | 2 +- assets/lang/pl_PL.ini | 2 +- assets/lang/pt_BR.ini | 2 +- assets/lang/pt_PT.ini | 2 +- assets/lang/ro_RO.ini | 2 +- assets/lang/ru_RU.ini | 2 +- assets/lang/sv_SE.ini | 2 +- assets/lang/tg_PH.ini | 2 +- assets/lang/th_TH.ini | 1 - assets/lang/tr_TR.ini | 2 +- assets/lang/uk_UA.ini | 2 +- assets/lang/vi_VN.ini | 2 +- assets/lang/zh_CN.ini | 2 +- assets/lang/zh_TW.ini | 2 +- 50 files changed, 63 insertions(+), 55 deletions(-) diff --git a/UI/EmuScreen.cpp b/UI/EmuScreen.cpp index aef18b5a7c..58d5148e24 100644 --- a/UI/EmuScreen.cpp +++ b/UI/EmuScreen.cpp @@ -992,7 +992,7 @@ void EmuScreen::ProcessVKey(VirtKey virtKey) { auto mm = GetI18NCategory(I18NCat::MAINMENU); confirmExitMessage += '\n'; confirmExitMessage += di->T("Are you sure you want to exit?"); - screenManager()->push(new UI::MessagePopupScreen(mm->T("Exit"), confirmExitMessage, di->T("Yes"), di->T("No"), [=](bool result) { + screenManager()->push(new UI::MessagePopupScreen(di->T("Exit"), confirmExitMessage, di->T("Yes"), di->T("No"), [](bool result) { if (result) { System_ExitApp(); } @@ -1542,7 +1542,7 @@ bool EmuScreen::checkPowerDown() { } ScreenRenderRole EmuScreen::renderRole(bool isTop) const { - auto CanBeBackground = [&]() -> bool { + auto CanBeBackground = [this, isTop]() -> bool { if (skipBufferEffects_) { return isTop || (g_Config.bTransparentBackground && ShouldRunBehind()); } diff --git a/UI/MainScreen.cpp b/UI/MainScreen.cpp index bac0ad1661..1af913cbc8 100644 --- a/UI/MainScreen.cpp +++ b/UI/MainScreen.cpp @@ -275,6 +275,7 @@ private: void MainScreen::CreateMainButtons(UI::ViewGroup *parent, bool portrait) { using namespace UI; auto mm = GetI18NCategory(I18NCat::MAINMENU); + auto di = GetI18NCategory(I18NCat::DIALOG); if (portrait) { parent->Add(new Spacer(1.0f, new LinearLayoutParams(1.0f))); } @@ -314,7 +315,7 @@ void MainScreen::CreateMainButtons(UI::ViewGroup *parent, bool portrait) { #endif // Officially, iOS apps should not have exit buttons. Remove it to maximize app store review chances. if (showExitButton) { - parent->Add(new Choice(mm->T("Exit")))->OnClick.Add([](UI::EventParams &e) { + parent->Add(new Choice(di->T("Exit")))->OnClick.Add([](UI::EventParams &e) { // Let's make sure the config was saved, since it may not have been. if (!g_Config.Save("MainScreen::OnExit")) { System_Toast("Failed to save settings!\nCheck permissions, or try to restart the device."); diff --git a/UI/PauseScreen.cpp b/UI/PauseScreen.cpp index 849c5ccb48..12b9d00a02 100644 --- a/UI/PauseScreen.cpp +++ b/UI/PauseScreen.cpp @@ -686,8 +686,8 @@ void GamePauseScreen::CreateViews() { rightColumnItems->Add(new Spacer(20.0)); Choice *exit; if (g_Config.bPauseMenuExitsEmulator) { - auto mm = GetI18NCategory(I18NCat::MAINMENU); - exit = new Choice(mm->T("Exit"), ImageID("I_EXIT")); + auto di = GetI18NCategory(I18NCat::DIALOG); + exit = new Choice(di->T("Exit"), ImageID("I_EXIT")); } else { exit = new Choice(pa->T("Exit to menu"), ImageID("I_EXIT")); } @@ -862,10 +862,9 @@ void GamePauseScreen::OnExit(UI::EventParams &e) { std::string confirmExitMessage = GetConfirmExitMessage(); if (!confirmExitMessage.empty()) { - auto mm = GetI18NCategory(I18NCat::MAINMENU); auto di = GetI18NCategory(I18NCat::DIALOG); std::string_view title = di->T("Are you sure you want to exit?"); - screenManager()->push(new UI::MessagePopupScreen(title, confirmExitMessage, mm->T("Exit"), di->T("Cancel"), [this](bool result) { + screenManager()->push(new UI::MessagePopupScreen(title, confirmExitMessage, di->T("Exit"), di->T("Cancel"), [this](bool result) { if (result) { if (g_Config.bPauseMenuExitsEmulator) { System_ExitApp(); diff --git a/Windows/MainWindow.cpp b/Windows/MainWindow.cpp index 6c4e4f3a92..480a4c667f 100644 --- a/Windows/MainWindow.cpp +++ b/Windows/MainWindow.cpp @@ -630,14 +630,13 @@ namespace MainWindow { return true; } auto di = GetI18NCategory(I18NCat::DIALOG); - auto mm = GetI18NCategory(I18NCat::MAINMENU); if (!actionIsReset) { confirmExitMessage += '\n'; confirmExitMessage += di->T("Are you sure you want to exit?"); } else { // Reset is bit rarer, let's just omit the extra message for now. } - return IDYES == MessageBox(hWnd, ConvertUTF8ToWString(confirmExitMessage).c_str(), ConvertUTF8ToWString(mm->T("Exit")).c_str(), MB_YESNO | MB_ICONQUESTION); + return IDYES == MessageBox(hWnd, ConvertUTF8ToWString(confirmExitMessage).c_str(), ConvertUTF8ToWString(di->T("Exit")).c_str(), MB_YESNO | MB_ICONQUESTION); } LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { diff --git a/android/src/main/jniLibs/README.txt b/android/src/main/jniLibs/README.txt index 320752570d..0176ee3cdb 100644 --- a/android/src/main/jniLibs/README.txt +++ b/android/src/main/jniLibs/README.txt @@ -1 +1,11 @@ -Put the arm64-v8a and the other folders here, downloaded from https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases \ No newline at end of file +Put the arm64-v8a and the other folders here, downloaded from https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases + +src/main/jniLibs/ + arm64-v8a/ + libVkLayer_khronos_validation.so + armeabi-v7a/ + libVkLayer_khronos_validation.so + x86/ + libVkLayer_khronos_validation.so + x86-64/ + libVkLayer_khronos_validation.so \ No newline at end of file diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index 79b22f1c21..07f5df38f5 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -451,6 +451,7 @@ Edit = تعديل Enable All = ‎فعل الكل Enabled = مفعل Enter = ‎إدخال +Exit = ‎خروج Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -834,7 +835,6 @@ About PPSSPP = ‎&عن البرنامج... Browse = ‎تصفح... Buy PPSSPP Gold = الذهبي PPSSPP اشتر Choose folder = اختر المجلد -Exit = ‎خروج Game Settings = ‎الإعدادات Games = ‎الألعاب Give PPSSPP permission to access storage = ‎الأذون للوصول إلي مساحة التخزين PPSSPP أعطي الـ diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index e949a81bf4..85224b8cda 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -443,6 +443,7 @@ Edit = Düzəlt Enable All = Hamısını aç Enabled = Açıqdır Enter = Gir +Exit = Çıx Failed to connect to server, check your internet connection. = Qulluqçuya qoşulma uğursuz oldu, inernet bağlantınızı yoxlayın. Failed to log in, check your username and password. = Giriş uğursuz oldu, işlədici adınızı və keçid sözünü yoxlayın. Filter = Süzgəc @@ -826,7 +827,6 @@ About PPSSPP = &PPSSPP ilə bağlı... Browse = Göz at... Buy PPSSPP Gold = PPSSPP Gold al Choose folder = Qovluq seç -Exit = Çıx Game Settings = Quruluşlar Games = Oyunlar Give PPSSPP permission to access storage = Qorunağa giriş üçün PPSSPP'yə icazə ver diff --git a/assets/lang/be_BY.ini b/assets/lang/be_BY.ini index 5fa31267f6..370764210f 100644 --- a/assets/lang/be_BY.ini +++ b/assets/lang/be_BY.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Enter +Exit = Выхад Failed to log in, check your username and password. = Failed to log in, check your username and password. Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Filter = Фільтр @@ -826,7 +827,6 @@ About PPSSPP = About PPSSPP Browse = Агляд... Buy PPSSPP Gold = Купіць PPSSPP Gold Choose folder = Выберыце папку -Exit = Выхад Game Settings = Налады Games = Гульні Give PPSSPP permission to access storage = Дайце PPSSPP дазвол на доступ да сховішча diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index 22c671c567..069dc6c1b4 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -443,6 +443,7 @@ Edit = Редактиране Enable All = Активиране на всички Enabled = Активирано Enter = Въвеждане +Exit = Изход Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Филтър @@ -826,7 +827,6 @@ About PPSSPP = &Относно PPSSPP... Browse = Разгледай... Buy PPSSPP Gold = Купете PPSSPP Gold Choose folder = Изберете папка -Exit = Изход Game Settings = Настройки Games = Игри Give PPSSPP permission to access storage = Дайте на PPSSPP разрешение за достъп до хранилището diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index c674e82985..893748f4c5 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -443,6 +443,7 @@ Edit = Editar Enable All = Activar tot Enabled = Enabled Enter = Confirmar +Exit = Sortir Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filtrar @@ -826,7 +827,6 @@ About PPSSPP = &Quant a PPSSPP... Browse = Cercar... Buy PPSSPP Gold = Comprar PPSSPP Gold Choose folder = Triar carpeta -Exit = Sortir Game Settings = Configuració Games = Jocs Give PPSSPP permission to access storage = Donar permís a PPSSPP per a accedir a l'emmagatzemament diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index dff6f1b415..4ab3502913 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Potvrdit +Exit = Ukončit Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = &O PPSSPP... Browse = Procházet... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Ukončit Game Settings = Nastavení Games = Hry Give PPSSPP permission to access storage = Dát PPSSPP oprávnění k přístupu do úložiště diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index 635506cf0e..dd3d9b99ec 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Enter +Exit = Afslut Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = &Om PPSSPP... Browse = Gennemse... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Afslut Game Settings = Indstillinger Games = Spil Give PPSSPP permission to access storage = Giv PPSSPP adgang til at tilgå lager diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 5eb9fb0ee4..ef3f035b67 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -442,6 +442,7 @@ Edit = Bearbeiten Enable All = Alle aktivieren Enabled = Aktiviert Enter = Eingabe +Exit = Beenden Failed to connect to server, check your internet connection. = Verbindung zum Server fehlgeschlagen. Überprüfe deine Internetverbindung. Failed to log in, check your username and password. = Anmeldung fehlgeschlagen. Überprüfe deinen Benutzernamen und dein Passwort. Filter = Filter @@ -825,7 +826,6 @@ About PPSSPP = Über PPSSPP... Browse = Durchsuchen... Buy PPSSPP Gold = Kaufe PPSSPP Gold Choose folder = Ordner wählen -Exit = Beenden Game Settings = Einstellungen Games = Spiele Give PPSSPP permission to access storage = PPSSPP-Speicherzugriff erlauben diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index 3cf300eae7..a2de31394e 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Enter +Exit = Pessu'un Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Masala PPSSPP Browse = Browse... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Pessu'un Game Settings = Pangngaturan Paningoan Games = Paningoan Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index 768639aec7..e7f6e6f172 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -467,6 +467,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Enter +Exit = Exit Failed to log in, check your username and password. = Failed to log in, check your username and password. Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Filter = Filter @@ -850,7 +851,6 @@ About PPSSPP = About PPSSPP Browse = Browse... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Exit Game Settings = Settings Games = Games Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index a689023e65..7d6d38d95d 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -444,6 +444,7 @@ Edit = Editar Enable All = Activar todo Enabled = Activado Enter = Enter +Exit = Salir Failed to connect to server, check your internet connection. = Error al iniciar sesión, comprueba tu nombre de usuario y contraseña. Failed to log in, check your username and password. = No se pudo conectar al servidor, comprueba tu conexión a Internet. Filter = Filtrar @@ -827,7 +828,6 @@ About PPSSPP = Acerca de PPSSPP Browse = Buscar... Buy PPSSPP Gold = Comprar PPSSPP Gold Choose folder = Elegir carpeta -Exit = Salir Game Settings = Ajustes de juegos Games = Juegos Give PPSSPP permission to access storage = Dar permiso a PPSSPP para acceder al almacenamiento diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index 047ff1ebae..20c8717f47 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -443,6 +443,7 @@ Edit = Editar Enable All = Activar todo Enabled = Habilitado Enter = Confirmar +Exit = Salir Failed to connect to server, check your internet connection. = No se pudo conectar al servidor, verifique su conexión a Internet. Failed to log in, check your username and password. = No se pudo iniciar sesión, verifique su nombre de usuario y contraseña. Filter = Filtrar @@ -826,7 +827,6 @@ About PPSSPP = Acerca de PPSSPP Browse = Buscar... Buy PPSSPP Gold = Comprar PPSSPP Gold Choose folder = Seleccionar carpeta -Exit = Salir Game Settings = Preferencias Games = Juegos Give PPSSPP permission to access storage = Pedir permiso a PPSSPP para acceder a la tienda diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index d30118330f..85438f61e1 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -443,6 +443,7 @@ Edit = ویرایش Enable All = فعال کردن همه؟ Enabled = فعال Enter = ‎ورود +Exit = ‎خروج Failed to connect to server, check your internet connection. = اتصال به سرور شکست خورد، اتصال اینترنت خود را بررسی کنید. Failed to log in, check your username and password. = ورود شکست خورد، نام کاربری و رمز عبور خود را بررسی کنید. Filter = فیلتر @@ -826,7 +827,6 @@ About PPSSPP = ‎PPSSPP دربارهٔ Browse = ‎...جستجو Buy PPSSPP Gold = خرید PPSSPP Gold Choose folder = Choose folder -Exit = ‎خروج Game Settings = ‎تنظیمات بازی Games = ‎بازی‌ها Give PPSSPP permission to access storage = ‎داده شود PPSSPP اجازه دسترسی به حافظه به diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index 3bdbd2f593..ade2033d8d 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -443,6 +443,7 @@ Edit = Muokkaa Enable All = Ota kaikki käyttöön Enabled = Käytössä Enter = Enter +Exit = Sulje Failed to connect to server, check your internet connection. = Yhteys palvelimeen epäonnistui, tarkista internet-yhteytesi. Failed to log in, check your username and password. = Kirjautuminen epäonnistui, tarkista käyttäjätunnus ja salasana. Filter = Suodatin @@ -826,7 +827,6 @@ About PPSSPP = Tietoa PPSSPP:stä Browse = Selaa... Buy PPSSPP Gold = Osta PPSSPP Gold Choose folder = Valitse kansio -Exit = Sulje Game Settings = Peliasetukset Games = Pelit Give PPSSPP permission to access storage = Anna PPSSPP lupa käyttää tallenustilaa diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index c46e487944..00aa139db1 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -467,6 +467,7 @@ Edit = Éditer Enable All = Tout activer Enabled = Activé Enter = Entrer +Exit = Quitter Failed to connect to server, check your internet connection. = Impossible de se connecter au serveur. Vérifiez votre connexion Internet. Failed to log in, check your username and password. = La connexion a échoué. Vérifiez votre nom d'utilisateur et votre mot de passe. Filter = Filter @@ -850,7 +851,6 @@ About PPSSPP = À propos de PPSSPP Browse = Parcourir... Buy PPSSPP Gold = Acheter PPSSPP Gold Choose folder = Choisir un dossier -Exit = Quitter Game Settings = Paramètres Games = Jeux Give PPSSPP permission to access storage = Autoriser PPSSPP à accéder au stockage diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index d508277a30..61cc2cede2 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Intro +Exit = Saír Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Acerca de PPSSPP Browse = Buscar... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Saír Game Settings = Axustes Games = Xogos Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index 4c91f1f144..aa6f325617 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = ΕΝΕΡΓΟΠΟΙΗΣΗ ΟΛΩΝ Enabled = Enabled Enter = Enter +Exit = Έξοδος Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Περί του PPSSPP Browse = Αναζήτηση... Buy PPSSPP Gold = Αγορά PPSSPP Gold Choose folder = Επιλογή φακέλου -Exit = Έξοδος Game Settings = Ρυθμίσεις Παιχνιδιού Games = Παιχνίδια Give PPSSPP permission to access storage = Αδειοδότηση PPSSPP για πρόσβαση σε χώρο αποθήκευσης diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index 115a1a386f..1dea18bfc6 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = סנכה +Exit = צא Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = About PPSSPP Browse = Browse... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = צא Game Settings = הגדרות משחק Games = משחקים Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index 04c3abab43..54d2e46d14 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = סנכה +Exit = אצ Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = About PPSSPP Browse = Browse... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = אצ Game Settings = קחשמ תורדגה Games = םיקחשמ Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index 628a54876a..af9f61ce50 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Uključi sve Enabled = Enabled Enter = Enter +Exit = Izlaz Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = O PPSSPP Browse = Pretraži... Buy PPSSPP Gold = Kupi PPSSPP Gold Choose folder = Izaberi mapu -Exit = Izlaz Game Settings = Postavke Games = Igre Give PPSSPP permission to access storage = Dopusti PPSSPP dozvolu za pristup datotekama diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index 3f3e6eaef9..7bb97b7c21 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -443,6 +443,7 @@ Edit = Szerkeszt Enable All = Összes bekapcsolása Enabled = Bekapcsolva Enter = Belép +Exit = Kilépés Failed to connect to server, check your internet connection. = Nem sikerült csatlakozni a szerverhez, ellenőrizd az internetkapcsolatodat! Failed to log in, check your username and password. = Nem sikerült bejelentkezni, ellenőrizd a felhasználónevedet és jelszavadat! Filter = Szűrő @@ -826,7 +827,6 @@ About PPSSPP = PPSSPP névjegye Browse = Tallózás… Buy PPSSPP Gold = Gold vásárlása… Choose folder = Mappa választása -Exit = Kilépés Game Settings = Beállítások Games = Játékok Give PPSSPP permission to access storage = Engedélyezd a PPSSPP számára a hozzáférést a háttértárhoz! diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 80f577c83c..8d79c1950a 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Aktifkan semua Enabled = Enabled Enter = Masuk +Exit = Keluar Failed to connect to server, check your internet connection. = Gagal terhubung ke server, periksa koneksi internet Anda. Failed to log in, check your username and password. = Gagal masuk, periksa nama pengguna dan kata sandi Anda. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Tentang PPSSPP Browse = Telusuri... Buy PPSSPP Gold = Beli PPSSPP Emas Choose folder = Pilih berkas -Exit = Keluar Game Settings = Pengaturan Games = Game Give PPSSPP permission to access storage = Berikan PPSSPP izin untuk mengakses penyimpanan diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index bd07d58ea8..1737c8e2d5 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -443,6 +443,7 @@ Edit = Modifica Enable All = Attiva tutto Enabled = Abilitato Enter = Invio +Exit = Esci Failed to connect to server, check your internet connection. = Impossibile connettersi al server, controllare la connessione a Internet. Failed to log in, check your username and password. = Accesso non riuscito, verificare il nome utente e la password. Filter = Filtro @@ -827,7 +828,6 @@ About PPSSPP = Informazioni su PPSSPP Browse = Sfoglia... Buy PPSSPP Gold = Compra PPSSPP Gold Choose folder = Scegli cartella -Exit = Esci Game Settings = Impostazioni Games = Giochi Give PPSSPP permission to access storage = Da' a PPSSPP il permesso di accedere alla memoria di massa diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index 067efebaec..0e14c66305 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -443,6 +443,7 @@ Edit = 編集 Enable All = 全て有効にする Enabled = 有効 Enter = 決定 +Exit = 終了 Failed to connect to server, check your internet connection. = サーバーへの接続に失敗しました。インターネット接続を確認してください。 Failed to log in, check your username and password. = ログインに失敗しました。ユーザー名とパスワードを確認してください。 Filter = フィルター @@ -826,7 +827,6 @@ About PPSSPP = PPSSPPについて Browse = 参照... Buy PPSSPP Gold = PPSSPP Goldを購入 Choose folder = フォルダを選択する -Exit = 終了 Game Settings = ゲームの設定 Games = ゲーム Give PPSSPP permission to access storage = PPSSPPにストレージへのアクセス権限を与えてください diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index b3eb588040..cc255e4d6c 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Ketik +Exit = Metu Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Tentang PPSSPP Browse = Nelusuri... Buy PPSSPP Gold = Tuku PPSSPP Gold Choose folder = Choose folder -Exit = Metu Game Settings = Setelan Dolanan Games = Dolanan Give PPSSPP permission to access storage = Menehi PPSSPP ijin kanggo ngakses panyimpenan diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index a0b4706717..2c321d9d0b 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -443,6 +443,7 @@ Edit = 편집 Enable All = 모두 활성화 Enabled = 활성화 Enter = 입력 +Exit = 나가기 Failed to log in, check your username and password. = 로그인에 실패했습니다. 사용자 이름과 비밀번호를 확인하세요. Failed to connect to server, check your internet connection. = 서버에 연결하지 못했습니다. 인터넷 연결을 확인하세요. Filter = 필터 @@ -826,7 +827,6 @@ About PPSSPP = PPSSPP 정보 Browse = 찾아보기... Buy PPSSPP Gold = PPSSPP 골드 구매 Choose folder = 폴더 선택 -Exit = 나가기 Game Settings = 설정 Games = 게임 Give PPSSPP permission to access storage = PPSSPP에 저장공간 접속 권한 부여 diff --git a/assets/lang/ku_SO.ini b/assets/lang/ku_SO.ini index f21423cb6b..e1542ef704 100644 --- a/assets/lang/ku_SO.ini +++ b/assets/lang/ku_SO.ini @@ -457,6 +457,7 @@ Edit = دەستکاری کردن Enable All = بەکارپێکردنی هەمووی Enabled = بەکارخرا Enter = Enter +Exit = دەرچوون Failed to log in, check your username and password. = Failed to log in, check your username and password. Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Filter = Filter @@ -840,7 +841,6 @@ About PPSSPP = PPSSPP زانیاری دەربارەی Browse = گەڕان... Buy PPSSPP Gold = گۆلد بکڕە PPSSPP Choose folder = فۆڵدەرێک هەڵبژێرە -Exit = دەرچوون Game Settings = سێتینگ Games = یاریەکان Give PPSSPP permission to access storage = بدە کە دەسەڵاتی خەزن کردنی هەبێت PPSSPP ڕێگە بە diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index 8bdc929655..4669cf22cb 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = ຢືນຢັນ +Exit = ອອກ Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = ກ່ຽວກັບ PPSSPP Browse = ຮຽກເບິ່ງ... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = ອອກ Game Settings = ຕັ້ງຄ່າເກມ Games = ເກມ Give PPSSPP permission to access storage = ອະນຸຍາດໃຫ້ PPSSPP ເຂົ້າເຖິງບ່ອນຈັດເກັບຂໍ້ມູນເຄື່ອງ diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index ddec1ab408..48627630d9 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Įeitis +Exit = Išeiti Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Apie PPSSPP Browse = Ieškoti... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Išeiti Game Settings = Parametrai Games = Žaidimai Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index 30c25e83a5..41fccf97e7 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Masuk +Exit = Keluar Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Mengenai PPSSPP Browse = Memilah... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Keluar Game Settings = Tetapan Games = Permainan Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index f03d121c00..88bcc8d34c 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Alles inschakelen Enabled = Enabled Enter = Bevestigen +Exit = Afsluiten Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Over PPSSPP Browse = Bladeren... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Afsluiten Game Settings = Instellingen Games = Games Give PPSSPP permission to access storage = Geef PPSSPP toegang tot de opslagruimte diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index cf2824395c..e8027f7bed 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Skru på alle Enabled = Skrudd på Enter = Gå inn i +Exit = Avslutt Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Om PPSSPP Browse = Bla gjennom Buy PPSSPP Gold = Kjøp PPSSPP Gold Choose folder = Choose folder -Exit = Avslutt Game Settings = Spillinnstillinger Games = Spill Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index fede581e7b..e73a4fc161 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -443,6 +443,7 @@ Edit = Edytuj Enable All = Włącz wszystko Enabled = Włączono Enter = Dalej +Exit = Zamknij Failed to connect to server, check your internet connection. = Połączenie z serwerem nieudane, sprawdź swoje połączenie z internetem. Failed to log in, check your username and password. = Logowanie nieudane, sprawdź swoje hasło i nazwę użytkownika. Filter = Filtruj @@ -830,7 +831,6 @@ About PPSSPP = O PPSSPP Browse = Przeglądaj... Buy PPSSPP Gold = Kup PPSSPP Gold Choose folder = Wybierz folder -Exit = Zamknij Game Settings = Ustawienia Games = Gry Give PPSSPP permission to access storage = Zezwól PPSSPP na dostęp do pamięci diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index 9d51146017..6828b263e7 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -467,6 +467,7 @@ Edit = Editar Enable All = Ativar tudo Enabled = Ativado Enter = Inserir +Exit = Sair Failed to log in, check your username and password. = Falhou em logar, verifique seu nome de usuário e senha. Failed to connect to server, check your internet connection. = Falhou em conectar ao servidor, verifique sua conexão com a internet. Filter = Filtro @@ -850,7 +851,6 @@ About PPSSPP = Sobre o PPSSPP Browse = Procurar... Buy PPSSPP Gold = Comprar PPSSPP Gold Choose folder = Escolher pasta -Exit = Sair Game Settings = Configurações Games = Jogos Give PPSSPP permission to access storage = Dê ao PPSSPP permissão pra acessar a armazenagem diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 288fc7977d..eccab803cb 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -467,6 +467,7 @@ Edit = Editar Enable All = Ativar tudo Enabled = Ativado Enter = Inserir +Exit = Sair Failed to connect to server, check your internet connection. = Não foi possível conectar ao servidor, verifica a tua conexão com a internet. Failed to log in, check your username and password. = Não foi possível cadastrar, verifica o teu apelido e palavra-passe. Filter = Filtro @@ -851,7 +852,6 @@ About PPSSPP = Sobre a PPSSPP Browse = Procurar... Buy PPSSPP Gold = Comprar PPSSPP Gold Choose folder = Escolher pasta -Exit = Sair Game Settings = Definições Games = Jogos Give PPSSPP permission to access storage = Dê à PPSSPP permissão para acessar o armazenamento diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index 32baeabea2..eab7551128 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -444,6 +444,7 @@ Edit = Edit Enable All = Enable all Enabled = Enabled Enter = Confirmare +Exit = Ieșire Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -827,7 +828,6 @@ About PPSSPP = About PPSSPP Browse = Răsfoiește... Buy PPSSPP Gold = Buy PPSSPP Gold Choose folder = Choose folder -Exit = Ieșire Game Settings = Setări Games = Jocuri Give PPSSPP permission to access storage = Give PPSSPP permission to access storage diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index bb2347fcaf..71cd838971 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -443,6 +443,7 @@ Edit = Изменить Enable All = Включить всё Enabled = Включено Enter = Ввод +Exit = Выход Failed to connect to server, check your internet connection. = Не удалось подключиться к серверу, проверьте ваше интернет-соединение. Failed to log in, check your username and password. = Не удалось войти, проверьте ваши имя пользователя и пароль. Filter = Фильтр @@ -826,7 +827,6 @@ About PPSSPP = О PPSSPP Browse = Обзор... Buy PPSSPP Gold = Купить PPSSPP Gold Choose folder = Выберите папку -Exit = Выход Game Settings = Настройки Games = Игры Give PPSSPP permission to access storage = Дать доступ к хранилищу данных diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index dd8a2f2caf..9c037023f3 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -444,6 +444,7 @@ Edit = Redigera Enable All = Aktivera allt Enabled = På Enter = Enter +Exit = Avsluta Failed to connect to server, check your internet connection. = Misslyckades med att ansluta till servern, kontrollera din internetanslutning. Failed to log in, check your username and password. = Misslyckades med att logga in, kontrollera ditt användarnamn och lösenord. Filter = Filtrera @@ -827,7 +828,6 @@ About PPSSPP = Om PPSSPP Browse = Bläddra... Buy PPSSPP Gold = Köp PPSSPP Gold Choose folder = Välj mapp -Exit = Avsluta Game Settings = Inställningar Games = Spel Give PPSSPP permission to access storage = Ge PPSSPP tillstånd att komma åt lagring diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index 1c225952ba..d767e717ab 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -444,6 +444,7 @@ Edit = I-Edit Enable All = Paganahin lahat Enabled = Enabled Enter = Pumasok +Exit = Lumabas Failed to connect to server, check your internet connection. = Bigong kumonekta sa server, paki-check ang iyong internet koneksyon. Failed to log in, check your username and password. = Hindi makapag-login, paki-check ang iyoug username at password. Filter = I-Filter @@ -827,7 +828,6 @@ About PPSSPP = Tungkol sa PPSSPP Browse = I-browse Buy PPSSPP Gold = Bilhin ang PPSSPP Gold Choose folder = Pumili ng folder -Exit = Lumabas Game Settings = Mga setting ng laro Games = Mga laro Give PPSSPP permission to access storage = Bigyan ang PPSSPP ng permiso para maka pasok sa storage diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index a6b6747f78..2b2cacc97e 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -844,7 +844,6 @@ About PPSSPP = เกี่ยวกับ PPSSPP Browse = เรียกดู... Buy PPSSPP Gold = ซื้อ PPSSPP Gold Choose folder = เลือกโฟลเดอร์ -Exit = ออก Game Settings = ตั้งค่าเกม Games = เกมอื่นๆ Give PPSSPP permission to access storage = อนุญาตให้สิทธิ์เข้าถึงพื้นที่เก็บข้อมูลเครื่องผ่าน PPSSPP diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index ab2a356a01..5ccc123f34 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -445,6 +445,7 @@ Edit = Düzenle Enable All = Tümünü Etkinleştir Enabled = Etkin Enter = Gir +Exit = Çıkış Failed to connect to server, check your internet connection. = Sunucuya bağlanılamadı, internetinizi kontrol edin. Failed to log in, check your username and password. = Giriş yapılamadı, kullanıcı adı ve şifrenizi kontrol edin. Filter = Filtre @@ -828,7 +829,6 @@ About PPSSPP = PPSSPP Hakkında Browse = Gözat... Buy PPSSPP Gold = PPSSPP Gold Al Choose folder = Klasör Seç -Exit = Çıkış Game Settings = Oyun Ayarları Games = Oyunlar Give PPSSPP permission to access storage = PPSSPP'ye depolamaya erişmesi için izin ver diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index ef4dee8217..bb0a2a2c17 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -443,6 +443,7 @@ Edit = Редагувати Enable All = Ввімкнути все Enabled = Увімкнено Enter = Введення +Exit = Вихід Failed to connect to server, check your internet connection. = Не вдалося підключитися до сервера, перевірте підключення до Інтернету. Failed to log in, check your username and password. = Не вдалося увійти, перевірте ім'я користувача та пароль. Filter = Фільтр @@ -826,7 +827,6 @@ About PPSSPP = Про PPSSPP Browse = Огляд... Buy PPSSPP Gold = Купити PPSSPP золото Choose folder = Виберіть папку -Exit = Вихід Game Settings = Налаштування гри Games = Ігри Give PPSSPP permission to access storage = Надати PPSSPP права на доступ до данних diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index 3a7cc3bdd1..78df78aee9 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -443,6 +443,7 @@ Edit = Edit Enable All = Cho phép tất cả Enabled = Enabled Enter = Enter +Exit = Thoát Failed to connect to server, check your internet connection. = Failed to connect to server, check your internet connection. Failed to log in, check your username and password. = Failed to log in, check your username and password. Filter = Filter @@ -826,7 +827,6 @@ About PPSSPP = Thông tin về PPSSPP Browse = Trình duyệt Buy PPSSPP Gold = Mua PPSSPP Gold Choose folder = Chọn thư mục -Exit = Thoát Game Settings = Cấu hình trò chơi Games = Trò chơi Give PPSSPP permission to access storage = Nâng cấp premium PPSSPP để truy cập bộ nhớ diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index 8a90c1188c..5498eb00cf 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -443,6 +443,7 @@ Edit = 自由编辑 Enable All = 全部启用 Enabled = 启用 Enter = 确定 +Exit = 退出程序 Failed to connect to server, check your internet connection. = 未连接到服务器,请检查网络情况 Failed to log in, check your username and password. = 无法登录,请检查账号密码 Filter = 输入关键词 @@ -826,7 +827,6 @@ About PPSSPP = 关于PPSSPP Browse = 浏览... Buy PPSSPP Gold = 购买黄金版 Choose folder = 选择文件夹 -Exit = 退出程序 Game Settings = 游戏设置 Games = 载入新游戏 Give PPSSPP permission to access storage = 请授权PPSSPP读写必要的存储空间 diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index 2fedfbe294..937b29b3ed 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -443,6 +443,7 @@ Edit = 編輯 Enable All = 全部啟用 Enabled = 已啟用 Enter = 輸入 +Exit = 離開 Failed to connect to server, check your internet connection. = 無法連線至伺服器,請檢查您的網際網路連線。 Failed to log in, check your username and password. = 無法登入,請檢查您的使用者名稱和密碼。 Filter = 篩選器 @@ -826,7 +827,6 @@ About PPSSPP = 關於 PPSSPP Browse = 瀏覽… Buy PPSSPP Gold = 購買黃金版 Choose folder = 選擇資料夾 -Exit = 離開 Game Settings = 設定 Games = 遊戲 Give PPSSPP permission to access storage = 授與 PPSSPP 權限以存取儲存空間