mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Fix an issue with Exit icon not showing up in MessagePopup
This commit is contained in:
+2
-2
@@ -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());
|
||||
}
|
||||
|
||||
+2
-1
@@ -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.");
|
||||
|
||||
+3
-4
@@ -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();
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -1 +1,11 @@
|
||||
Put the arm64-v8a and the other folders here, downloaded from https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases
|
||||
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
|
||||
@@ -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 أعطي الـ
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 дазвол на доступ да сховішча
|
||||
|
||||
@@ -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 разрешение за достъп до хранилището
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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ě
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 اجازه دسترسی به حافظه به
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 για πρόσβαση σε χώρο αποθήκευσης
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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!
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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にストレージへのアクセス権限を与えてください
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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에 저장공간 접속 권한 부여
|
||||
|
||||
@@ -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 ڕێگە بە
|
||||
|
||||
@@ -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 ເຂົ້າເຖິງບ່ອນຈັດເກັບຂໍ້ມູນເຄື່ອງ
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 = Дать доступ к хранилищу данных
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 права на доступ до данних
|
||||
|
||||
@@ -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ớ
|
||||
|
||||
@@ -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读写必要的存储空间
|
||||
|
||||
@@ -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 權限以存取儲存空間
|
||||
|
||||
Reference in New Issue
Block a user