diff --git a/UI/GameScreen.cpp b/UI/GameScreen.cpp index ef7d5ddca8..2c060bf317 100644 --- a/UI/GameScreen.cpp +++ b/UI/GameScreen.cpp @@ -274,9 +274,13 @@ void GameScreen::CreateViews() { } } -#if (defined(USING_QT_UI) || PPSSPP_PLATFORM(WINDOWS) || PPSSPP_PLATFORM(MAC)) && !PPSSPP_PLATFORM(UWP) - rightColumnItems->Add(AddOtherChoice(new Choice(ga->T("Show In Folder"))))->OnClick.Handle(this, &GameScreen::OnShowInFolder); -#endif + if (System_GetPropertyBool(SYSPROP_CAN_SHOW_FILE)) { + rightColumnItems->Add(AddOtherChoice(new Choice(di->T("Show in folder"))))->OnClick.Add([this](UI::EventParams &e) { + System_ShowFileInFolder(gamePath_); + return UI::EVENT_DONE; + }); + } + if (g_Config.bEnableCheats) { auto pa = GetI18NCategory(I18NCat::PAUSE); rightColumnItems->Add(AddOtherChoice(new Choice(pa->T("Cheats"))))->OnClick.Handle(this, &GameScreen::OnCwCheat); @@ -330,9 +334,8 @@ void GameScreen::CallbackDeleteConfig(bool yes) { UI::EventReturn GameScreen::OnDeleteConfig(UI::EventParams &e) { auto di = GetI18NCategory(I18NCat::DIALOG); - auto ga = GetI18NCategory(I18NCat::GAME); screenManager()->push( - new PromptScreen(gamePath_, di->T("DeleteConfirmGameConfig", "Do you really want to delete the settings for this game?"), ga->T("ConfirmDelete"), di->T("Cancel"), + new PromptScreen(gamePath_, di->T("DeleteConfirmGameConfig", "Do you really want to delete the settings for this game?"), di->T("Delete"), di->T("Cancel"), std::bind(&GameScreen::CallbackDeleteConfig, this, std::placeholders::_1))); return UI::EVENT_DONE; @@ -491,11 +494,6 @@ ScreenRenderFlags GameScreen::render(ScreenRenderMode mode) { return flags; } -UI::EventReturn GameScreen::OnShowInFolder(UI::EventParams &e) { - System_ShowFileInFolder(gamePath_); - return UI::EVENT_DONE; -} - UI::EventReturn GameScreen::OnCwCheat(UI::EventParams &e) { screenManager()->push(new CwCheatScreen(gamePath_)); return UI::EVENT_DONE; @@ -538,9 +536,8 @@ UI::EventReturn GameScreen::OnDeleteSaveData(UI::EventParams &e) { // Check that there's any savedata to delete if (info->saveDataSize) { auto di = GetI18NCategory(I18NCat::DIALOG); - auto ga = GetI18NCategory(I18NCat::GAME); screenManager()->push( - new PromptScreen(gamePath_, di->T("DeleteConfirmAll", "Do you really want to delete all\nyour save data for this game?"), ga->T("ConfirmDelete"), di->T("Cancel"), + new PromptScreen(gamePath_, di->T("DeleteConfirmAll", "Do you really want to delete all\nyour save data for this game?"), di->T("Delete"), di->T("Cancel"), std::bind(&GameScreen::CallbackDeleteSaveData, this, std::placeholders::_1))); } } @@ -561,12 +558,11 @@ UI::EventReturn GameScreen::OnDeleteGame(UI::EventParams &e) { std::shared_ptr info = g_gameInfoCache->GetInfo(NULL, gamePath_, GameInfoFlags::PARAM_SFO); if (info->Ready(GameInfoFlags::PARAM_SFO)) { auto di = GetI18NCategory(I18NCat::DIALOG); - auto ga = GetI18NCategory(I18NCat::GAME); std::string prompt; prompt = di->T("DeleteConfirmGame", "Do you really want to delete this game\nfrom your device? You can't undo this."); prompt += "\n\n" + gamePath_.ToVisualString(g_Config.memStickDirectory.c_str()); screenManager()->push( - new PromptScreen(gamePath_, prompt, ga->T("ConfirmDelete"), di->T("Cancel"), + new PromptScreen(gamePath_, prompt, di->T("Delete"), di->T("Cancel"), std::bind(&GameScreen::CallbackDeleteGame, this, std::placeholders::_1))); } return UI::EVENT_DONE; diff --git a/UI/GameScreen.h b/UI/GameScreen.h index b1ec5554d8..7c180ac074 100644 --- a/UI/GameScreen.h +++ b/UI/GameScreen.h @@ -59,7 +59,6 @@ private: UI::EventReturn OnDeleteGame(UI::EventParams &e); UI::EventReturn OnSwitchBack(UI::EventParams &e); UI::EventReturn OnRemoveFromRecent(UI::EventParams &e); - UI::EventReturn OnShowInFolder(UI::EventParams &e); UI::EventReturn OnCreateConfig(UI::EventParams &e); UI::EventReturn OnDeleteConfig(UI::EventParams &e); UI::EventReturn OnCwCheat(UI::EventParams &e); diff --git a/UI/PauseScreen.cpp b/UI/PauseScreen.cpp index 87d58a4e6d..fea0d3cd92 100644 --- a/UI/PauseScreen.cpp +++ b/UI/PauseScreen.cpp @@ -700,9 +700,8 @@ UI::EventReturn GamePauseScreen::OnCreateConfig(UI::EventParams &e) { UI::EventReturn GamePauseScreen::OnDeleteConfig(UI::EventParams &e) { auto di = GetI18NCategory(I18NCat::DIALOG); - auto ga = GetI18NCategory(I18NCat::GAME); screenManager()->push( - new PromptScreen(gamePath_, di->T("DeleteConfirmGameConfig", "Do you really want to delete the settings for this game?"), ga->T("ConfirmDelete"), di->T("Cancel"), + new PromptScreen(gamePath_, di->T("DeleteConfirmGameConfig", "Do you really want to delete the settings for this game?"), di->T("Delete"), di->T("Cancel"), std::bind(&GamePauseScreen::CallbackDeleteConfig, this, std::placeholders::_1))); return UI::EVENT_DONE; } diff --git a/UI/SavedataScreen.cpp b/UI/SavedataScreen.cpp index fd8c1acd53..2048c18fd9 100644 --- a/UI/SavedataScreen.cpp +++ b/UI/SavedataScreen.cpp @@ -128,7 +128,7 @@ SavedataView::SavedataView(UIContext &dc, GameInfo *ginfo, IdentifiedFileType ty class SavedataPopupScreen : public PopupScreen { public: - SavedataPopupScreen(Path savePath, std::string_view title) : PopupScreen(StripSpaces(title)), savePath_(savePath) { } + SavedataPopupScreen(Path gamePath, Path savePath, std::string_view title) : PopupScreen(StripSpaces(title)), savePath_(savePath), gamePath_(gamePath) { } const char *tag() const override { return "SavedataPopup"; } void update() override { @@ -159,22 +159,40 @@ public: savedataView_ = contentScroll->Add(new SavedataView(dc, ginfo.get(), ginfo->fileType, true)); auto di = GetI18NCategory(I18NCat::DIALOG); - LinearLayout *buttons = new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT)); - buttons->SetSpacing(0); - Margins buttonMargins(5, 5); - buttons->Add(new Button(di->T("Back"), new LinearLayoutParams(1.0f, buttonMargins)))->OnClick.Handle(this, &UIScreen::OnBack); - buttons->Add(new Button(di->T("Delete"), new LinearLayoutParams(1.0f, buttonMargins)))->OnClick.Handle(this, &SavedataPopupScreen::OnDeleteButtonClick); - parent->Add(buttons); + LinearLayout *buttonRow = new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT)); + buttonRow->SetSpacing(0); + Margins buttonMargins(5, 5, 5, 13); // not sure why we need more at the bottom to make it look right + + buttonRow->Add(new Button(di->T("Back"), new LinearLayoutParams(1.0f, buttonMargins)))->OnClick.Handle(this, &UIScreen::OnBack); + buttonRow->Add(new Button(di->T("Delete"), new LinearLayoutParams(1.0f, buttonMargins)))->OnClick.Add([this](UI::EventParams &e) { + auto di = GetI18NCategory(I18NCat::DIALOG); + std::shared_ptr ginfo = g_gameInfoCache->GetInfo(nullptr, savePath_, GameInfoFlags::PARAM_SFO); + std::string_view confirmMessage = di->T("Are you sure you want to delete the file?"); + screenManager()->push(new PromptScreen(gamePath_, confirmMessage, di->T("Delete"), di->T("Cancel"), [=](bool result) { + if (result) { + ginfo->Delete(); + TriggerFinish(DR_NO); + } + })); + return UI::EVENT_DONE; + }); + if (System_GetPropertyBool(SYSPROP_CAN_SHOW_FILE)) { + buttonRow->Add(new Button(di->T("Show in folder"), new LinearLayoutParams(1.0f, buttonMargins)))->OnClick.Add([this](UI::EventParams &e) { + System_ShowFileInFolder(savePath_); + return UI::EVENT_DONE; + }); + } + parent->Add(buttonRow); } protected: - UI::Size PopupWidth() const override { return 500; } + UI::Size PopupWidth() const override { return 600; } private: - UI::EventReturn OnDeleteButtonClick(UI::EventParams &e); SavedataView *savedataView_ = nullptr; Path savePath_; + Path gamePath_; }; class SortedLinearLayout : public UI::LinearLayoutList { @@ -254,13 +272,6 @@ void SavedataButton::UpdateDateSeconds() { hasDateSeconds_ = true; } -UI::EventReturn SavedataPopupScreen::OnDeleteButtonClick(UI::EventParams &e) { - std::shared_ptr ginfo = g_gameInfoCache->GetInfo(nullptr, savePath_, GameInfoFlags::PARAM_SFO); - ginfo->Delete(); - TriggerFinish(DR_NO); - return UI::EVENT_DONE; -} - static std::string CleanSaveString(std::string_view str) { std::string s = ReplaceAll(str, "\n", " "); s = ReplaceAll(s, "\r", " "); @@ -686,7 +697,7 @@ UI::EventReturn SavedataScreen::OnSavedataButtonClick(UI::EventParams &e) { if (!ginfo->Ready(GameInfoFlags::PARAM_SFO)) { return UI::EVENT_DONE; } - SavedataPopupScreen *popupScreen = new SavedataPopupScreen(Path(e.s), ginfo->GetTitle()); + SavedataPopupScreen *popupScreen = new SavedataPopupScreen(gamePath_, Path(e.s), ginfo->GetTitle()); if (e.v) { popupScreen->SetPopupOrigin(e.v); } diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index 11175a9208..c2dd1b3f4e 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -374,6 +374,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = ‎* PSP حجم Active = نشط +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = ‎رجوع Bottom Center = Bottom center @@ -457,6 +458,7 @@ seconds, 0:off = إطارات, 0 = ‎مُغلق Select = ‎حدد Settings = Settings Shift = ‎شفت +Show in folder = ‎أظهر في المجلد Skip = Skip Snap = Snap Space = ‎مسافة @@ -541,7 +543,6 @@ ZIP file detected (Require WINRAR) = ‎الملف مضغوط (ZIP).\nمن فض Asia = ‎أسيا Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = ‎مسح CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = ‎أنشاء إعدادت للعبة Create Shortcut = ‎إصنع إختصار @@ -565,7 +566,6 @@ Play = ‎إبدء اللعب Remove From Recent = ‎مسح من "الحالي" SaveData = ‎بيانات الحفظ Setting Background = ‎إعدادات الخلفية -Show In Folder = ‎أظهر في المجلد Time Played: %1h %2m %3s = %1س %2د %3ث : وقت اللعب Uncompressed = تم فك الضغط USA = ‎أمريكا diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index f526f77ee0..7445c0ed69 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Geri Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Seç Settings = Settings Shift = Shift +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Create shortcut @@ -557,7 +558,6 @@ Play = Play Remove From Recent = Remove from "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index 3f279def16..31f66296a2 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Назад Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Select Settings = Settings Shift = Shift +Show in folder = Покажи в папка Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Файла е архивиран (ZIP).\nМ Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Изтрий CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Създай пряк път @@ -557,7 +558,6 @@ Play = Play Remove From Recent = Премахни от „Скорошни“ SaveData = Savedata Setting Background = Setting background -Show In Folder = Покажи в папка Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index e2bb73c043..24313a0ca1 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d segons * PSP res = * resolució PSP Active = Actiu +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Enrere Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = segons, 0 = off Select = Seleccionar Settings = Settings Shift = Canviar +Show in folder = Mostrar en carpeta Skip = Saltar Snap = Capturar Space = Espai @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Àsia Calculate CRC = Calcular valor CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Confirmar esborrat CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Crear config. del joc Create Shortcut = Crear accés directe @@ -557,7 +558,6 @@ Play = Jugar Remove From Recent = Remove from "Recent" SaveData = Dades guardades Setting Background = Imatge de fons -Show In Folder = Mostrar en carpeta Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = EEUU diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index d20bf9e57f..cfbeb67222 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d vteřin * PSP res = * PSP rozlišení Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Zpět Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = sekundy, 0 = vypnuto Select = Vybrat Settings = Settings Shift = Shift +Show in folder = Zobrazit ve složce Skip = Skip Snap = Snap Space = Mezera @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Soubor je komprimován (ZIP).\nNejdříve h Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Smazat CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Vytvořit nastavení hry Create Shortcut = Vytvořit zkratku @@ -557,7 +558,6 @@ Play = Hrát Remove From Recent = Odstranit z "Nedávné" SaveData = Uložená data Setting Background = Setting background -Show In Folder = Zobrazit ve složce Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index 0a4e54f17e..8373ce0c7a 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekunder * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Tilbage Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = sekunder, 0 = off Select = Vælg Settings = Settings Shift = Shift +Show in folder = Vis i katalog Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Fil er pakket (ZIP).\nPak venligst ud førs Asia = Asien Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Slet CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Opret data konfiguration Create Shortcut = Opret genvej @@ -557,7 +558,6 @@ Play = Spil Remove From Recent = Fjern fra "Nylige" SaveData = Gem data Setting Background = Setting background -Show In Folder = Vis i katalog Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 3475c9130c..504eef5779 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d Sekunden * PSP res = * PSP Auflösung Active = Aktiv +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Zurück Bottom Center = Mitte unten @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = Aus Select = Auswahl Settings = Settings Shift = Umschalt +Show in folder = Ordner öffnen Skip = Skip Snap = Einrasten Space = Leertaste @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Datei ist komprimiert (ZIP).\nBitte zuerst Asia = Asien Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Löschen CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Erstelle Spielkonfig. Create Shortcut = Verknüpfung erstellen @@ -557,7 +558,6 @@ Play = Spielen Remove From Recent = Aus der Liste entfernen SaveData = Speicherdaten Setting Background = Einstellungshintergrund -Show In Folder = Ordner öffnen Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index 96544e191d..dc6fb8ebda 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Poleboko' Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Pillei Settings = Settings Shift = Angka'i +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Garaganni shortcut @@ -557,7 +558,6 @@ Play = Maningo Remove From Recent = Remove from "Recent" SaveData = Pangsave Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index 40937a8755..3bd85cdf50 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -390,6 +390,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Back Bottom Center = Bottom center @@ -473,6 +474,7 @@ seconds, 0:off = seconds, 0 = off Select = Select Settings = Settings Shift = Shift +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -557,7 +559,6 @@ ZIP file detected (Require WINRAR) = File is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Create shortcut @@ -581,7 +582,6 @@ Play = Play Remove From Recent = Remove from "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index 37a7f44df0..4d79cb7d32 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -367,6 +367,7 @@ VFPU = VFPU %d seconds = %d segundos * PSP res = * resolución PSP Active = Activo +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = ¿Estás seguro de que quieres salir? Back = Atrás Bottom Center = Inferior centrado @@ -450,6 +451,7 @@ seconds, 0:off = segundos, 0 = no Select = Seleccionar Settings = Ajustes Shift = Alternar +Show in folder = Mostrar carpeta Skip = Saltar Snap = Capturar Space = Espacio @@ -534,7 +536,6 @@ ZIP file detected (Require WINRAR) = El archivo está comprimido (ZIP).\nDescomp Asia = Asia Calculate CRC = Calcular CRC Click "Calculate CRC" to verify ISO = Haz clic en "Calcular CRC" para comprobar la ISO -ConfirmDelete = Confirmar CRC checksum does not match, bad or modified ISO = La suma de verificaión CRC no coincide, ISO incorrecta o modificada Create Game Config = Crear configuración de juego Create Shortcut = Crear acceso directo @@ -558,7 +559,6 @@ Play = Jugar Remove From Recent = Borrar de recientes SaveData = Datos guardados Setting Background = Configurar fondo -Show In Folder = Mostrar carpeta Time Played: %1h %2m %3s = Tiempo jugado: %1h %2m %3s Uncompressed = Sin comprimir USA = América diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index 6059b921e6..8647cac8ea 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d segundos * PSP res = * PSP res Active = Activo +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Atrás Bottom Center = Abajo @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = No Select = Seleccionar Settings = Settings Shift = Alternar +Show in folder = Mostrar en carpeta Skip = Saltar Snap = Capturar Space = Espacio @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Se ha detectado un archivo ZIP.\nUtiliza co Asia = Asia Calculate CRC = Calcular valor CRC Click "Calculate CRC" to verify ISO = Click en "Calcular CRC" para verificar ISO -ConfirmDelete = Borrar CRC checksum does not match, bad or modified ISO = La suma de comprobación CRC no coincide, la ISO es mala o está modificada Create Game Config = Crear config. del juego Create Shortcut = Crear acceso directo @@ -557,7 +558,6 @@ Play = Jugar Remove From Recent = Borrar de recientes SaveData = Datos Setting Background = Configurar fondo -Show In Folder = Mostrar en carpeta Time Played: %1h %2m %3s = Tiempo Jugado: %1h %2m %3s Uncompressed = Sin comprimir USA = América diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index 98614b465d..94f4975378 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d ثانیه * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = ‎بازگشت Bottom Center = پایین وسط @@ -449,6 +450,7 @@ seconds, 0:off = ‎تعداد فریم، 0 : ثانیه Select = ‎انتخاب Settings = تنظیمات Shift = ‎تغییر +Show in folder = نمایش پوشه Skip = رد کردن Snap = Snap Space = فاصله @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = ‎\n.فشرده سازی شده است ZIP Asia = اسیا Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = حذف CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = ایجاد کانفیگ بازی Create Shortcut = ‎ساخت میانبر @@ -557,7 +558,6 @@ Play = ‎بازی کردن Remove From Recent = Remove from "Recent" SaveData = ‎دادهٔ ذخیره Setting Background = تنظیمات پس زمینا -Show In Folder = نمایش پوشه Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = آمریکا diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index f148f4ffda..09c88d129a 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekuntia * PSP res = * PSP res Active = Aktiivinen +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Takaisin Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = sekunteissa, 0 = pois Select = Valitse Settings = Settings Shift = Shift +Show in folder = Näytä kansiossa Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Aasia Calculate CRC = Laske CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Create shortcut @@ -557,7 +558,6 @@ Play = Pelaa Remove From Recent = Poista "äskettäin" listalta... SaveData = Tallennustieto Setting Background = Setting background -Show In Folder = Näytä kansiossa Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index 8690816fd3..ac94c32eda 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d secondes * PSP res = × définition PSP Active = Actif +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Retour Bottom Center = En bas au centre @@ -449,6 +450,7 @@ seconds, 0:off = secondes, 0 = off Select = Sélectionner Settings = Settings Shift = Majuscule +Show in folder = Montrer dans dossier Skip = Skip Snap = Aligner Space = Espace @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Le fichier est compressé (.zip).\nVeuillez Asia = Asie Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Confirmer CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Créer config. de jeu Create Shortcut = Créer un raccourci @@ -557,7 +558,6 @@ Play = Jouer Remove From Recent = Supprimer de "Récemment" SaveData = Sauvegarde  Setting Background = Paramétrage du fond d'écran -Show In Folder = Montrer dans dossier Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index 742f81107d..c44898213e 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Atrás Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Seleccionar Settings = Settings Shift = Alternar +Show in folder = Mostrar en carpeta Skip = Skip Snap = Snap Space = Espacio @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Arquivo comprimido (ZIP).\nNecesita ser des Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Confirmar CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Crear config. do xogo Create Shortcut = Crear acceso directo @@ -557,7 +558,6 @@ Play = Xogar Remove From Recent = Borrar de recentes SaveData = Datos Setting Background = Setting background -Show In Folder = Mostrar en carpeta Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index 44589d8478..ae95b8ab4d 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d δευτερόλεπτα * PSP res = * ανάλυση PSP Active = ΕΝΕΡΓΟ +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = ΠΙΣΩ Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = δευτερόλεπτα, 0 = off Select = Select Settings = Settings Shift = Shift +Show in folder = Εμφάνιση σε Φάκελο Skip = Skip Snap = Snap Space = ΚΕΝΟ @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Το αρχείο είναι συμπισμ Asia = Ασία Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Διαγραφή CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Δημιουργία ρυθμίσεων παιχνιδιού Create Shortcut = Δημιουργία Συντόμευσης @@ -557,7 +558,6 @@ Play = Εκκίνηση Remove From Recent = Κατάργηση από τα πρόσφατα SaveData = Δεδομένα Αποθήκευσης Setting Background = Ρύθμιση φόντου -Show In Folder = Εμφάνιση σε Φάκελο Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = ΗΠΑ diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index dbe5e221f1..bccb2e121b 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = << Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = רחב Settings = Settings Shift = העבר +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = צור קיצור דרך @@ -557,7 +558,6 @@ Play = שחק Remove From Recent = Remove from "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index 9e6cfbef91..2560ce2131 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = << Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = רחב Settings = Settings Shift = העבר +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Create shortcut @@ -557,7 +558,6 @@ Play = Play Remove From Recent = Remove from "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index 444fe08ae1..b0304200eb 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekundi * PSP res = * PSP res Active = Aktivno +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Nazad Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = sekundi, 0 = isključeno Select = Select Settings = Settings Shift = Shift +Show in folder = Prikaži u mapi Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Datoteka je pakirana (ZIP).\nPrvo raspakira Asia = Azija Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Izbriši CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Kreiraj postavke igre Create Shortcut = Kreiraj prečac @@ -557,7 +558,6 @@ Play = Igraj Remove From Recent = Makni iz "Nedavno" SaveData = Savedata Setting Background = Postavljanje pozadine -Show In Folder = Prikaži u mapi Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = SAD diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index f497b98c2a..ef63bbed26 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d másodpercig * PSP res = * PSP felbontás Active = Aktív +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Vissza Bottom Center = Alul középen @@ -449,6 +450,7 @@ seconds, 0:off = másodpercig, 0 = ki Select = Kiválaszt Settings = Beállítások Shift = Shift +Show in folder = Mutatás mappában Skip = Skip Snap = Igazít Space = Szóköz @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = A fájl tömörített (ZIP).\nElőbb csomag Asia = Ázsia Calculate CRC = CRC kiszámítása Click "Calculate CRC" to verify ISO = Kattints a "CRC kiszámítására" az ISO hitelesítéséhez -ConfirmDelete = Törlés CRC checksum does not match, bad or modified ISO = CRC ellenőrzőösszeg nem egyezik - hibás vagy módosított ISO Create Game Config = Új játékbeállítás Create Shortcut = Parancsikon létrehozása @@ -557,7 +558,6 @@ Play = Indítás Remove From Recent = Törlés a listából SaveData = Mentések Setting Background = Háttér beállítása -Show In Folder = Mutatás mappában Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Tömörítetlen USA = USA diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 74a0cbc45c..17397a739c 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d detik * PSP res = * PSP res Active = Aktif +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Kembali Bottom Center = Tengah bawah @@ -449,6 +450,7 @@ seconds, 0:off = detik, 0 = mati Select = Pilih Settings = Pengaturan Shift = Geser +Show in folder = Tampilkan di berkas Skip = Lewati Snap = Garis pinggir Space = Spasi @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Berkas terkompresi (ZIP).\nSilakan ekstrak Asia = Asia Calculate CRC = Kalkulasi CRC Click "Calculate CRC" to verify ISO = Klik "Hitung CRC" untuk memverifikasi ISO -ConfirmDelete = Hapus CRC checksum does not match, bad or modified ISO = Checksum CRC tidak cocok, ISO buruk atau dimodifikasi Create Game Config = Buat konfigurasi permainan Create Shortcut = Buat jalan pintas @@ -557,7 +558,6 @@ Play = Mainkan Remove From Recent = Hapus dari "Terbaru" SaveData = Simpanan data Setting Background = Atur latar belakang -Show In Folder = Tampilkan di berkas Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Tidak terkompresi USA = Amerika Serikat diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index 375de70533..98c73d3248 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d secondi * PSP res = * definizione PSP Active = Attiva +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Indietro Bottom Center = In basso al centro @@ -449,6 +450,7 @@ seconds, 0:off = secondi, 0 = spento Select = Seleziona Settings = Impostazioni Shift = Maiuscolo +Show in folder = Mostra nella Cartella Skip = Salta Snap = Allinea Space = Spazio @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Il file è compresso (ZIP).\nPrima si deve Asia = Asia Calculate CRC = Calcola CRC Click "Calculate CRC" to verify ISO = Clicca su "Calcola CRC" per verificare l'ISO -ConfirmDelete = Elimina CRC checksum does not match, bad or modified ISO = Il checksum CRC non corrisponde, l'ISO è errata o modificata Create Game Config = Crea Configurazione di Gioco Create Shortcut = Crea Scorciatoia @@ -557,7 +558,6 @@ Play = Gioca Remove From Recent = Rimuovi dai Recenti SaveData = Dati salvataggio Setting Background = Imposta sfondo -Show In Folder = Mostra nella Cartella Time Played: %1h %2m %3s = Tempo di gioco: %1h %2m %3s Uncompressed = Non compresso USA = USA diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index 375d2110ec..a772192696 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d 秒 * PSP res = * PSP 解像度 Active = アクティブ +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = 戻る Bottom Center = 下中央 @@ -449,6 +450,7 @@ seconds, 0:off = 秒, 0 = オフ Select = 選択 Settings = 設定 Shift = シフト +Show in folder = フォルダを表示する Skip = スキップ Snap = グリッドに吸着 Space = スペース @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = ファイルが圧縮されています (ZI Asia = アジア Calculate CRC = CRCを算出 Click "Calculate CRC" to verify ISO = "CRCを算出" をクリックしてISOを検証します -ConfirmDelete = 削除 CRC checksum does not match, bad or modified ISO = CRCチェックサムが一致しません。不良であるか変更されたISOです Create Game Config = ゲームの設定を作成する Create Shortcut = ショートカットを作成する @@ -557,7 +558,6 @@ Play = プレイ Remove From Recent = 履歴から削除する SaveData = セーブデータ Setting Background = 背景を設定 -Show In Folder = フォルダを表示する Time Played: %1h %2m %3s = プレイ時間: %1時間 %2分 %3秒 Uncompressed = 非圧縮 USA = USA diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index a3231911be..be38841176 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d detik * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Bali Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = detik, 0 = off Select = Peleh Settings = Settings Shift = Shift +Show in folder = Tampilno Nang Folder Skip = Skip Snap = Snap Space = Spasi @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = berkas iki terkompres (ZIP).\nMohon bongkar Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Mbusek CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Nggawe Setelan Dolanan Create Shortcut = Nggawe Trobosan @@ -557,7 +558,6 @@ Play = Muter Remove From Recent = Mbusek soko "Terakher" SaveData = Simpen Data Setting Background = Setting background -Show In Folder = Tampilno Nang Folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index bafa2d4ed0..f60ca24f41 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d 초 * PSP res = * PSP 리소스 Active = 활성화 +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = 정말 종료할까요? Back = 뒤로가기 Bottom Center = 하단 중앙 @@ -449,6 +450,7 @@ seconds, 0:off = 초, 0 = 끔 Select = 선택 Settings = 설정 Shift = 전환 +Show in folder = 폴더에 표기 Skip = 건너뜀 Snap = 스냅 Space = 공간 @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = 파일은 (ZIP으로) 압축되어 있습 Asia = 아시아 Calculate CRC = CRC 계산 Click "Calculate CRC" to verify ISO = ISO를 확인하려면 "CRC 계산"을 클릭 -ConfirmDelete = 삭제 CRC checksum does not match, bad or modified ISO = CRC 체크섬이 일치하지 않거나, ISO가 잘못되었거나 수정 Create Game Config = 게임 구성 생성 Create Shortcut = 단축 키 생성 @@ -557,7 +558,6 @@ Play = 재생 Remove From Recent = "최근"에서 제거 SaveData = 저장데이터 Setting Background = 배경 설정 -Show In Folder = 폴더에 표기 Time Played: %1h %2m %3s = 플레이 시간: %1시간 %2분 %3초 Uncompressed = 비압축 USA = 미국 diff --git a/assets/lang/ku_SO.ini b/assets/lang/ku_SO.ini index 4653dc9c21..015dd26c0a 100644 --- a/assets/lang/ku_SO.ini +++ b/assets/lang/ku_SO.ini @@ -380,6 +380,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = چالاک +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = گەڕانەوە Bottom Center = خوارەوە ناوەڕاست @@ -463,6 +464,7 @@ seconds, 0:off = چرکەکان، 0 = کوژاوە Select = دەستنیشان کردن Settings = سێتینگەکان Shift = Shift +Show in folder = نیشاندانەوە لە فۆڵدەر Skip = پەڕاندن Snap = Snap Space = Space @@ -547,7 +549,6 @@ ZIP file detected (Require WINRAR) = File is compressed (ZIP).\nPlease decompres Asia = ئاسیا Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = سڕینەوە CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = درووستکردنی سێتینگی تایبەت بە یاریەکە Create Shortcut = Create shortcut @@ -571,7 +572,6 @@ Play = دەست کردن بە یاری Remove From Recent = لابردن لە بەشی "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = نیشاندانەوە لە فۆڵدەر Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index c3b0f7789e..5f3e6928ef 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d ວິນາທີ * PSP res = * ຂະໜາດຈໍ PSP Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = ຍ້ອນກັບ Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = ວິນາທີ, 0 = ປິດ Select = ເລືອກ Settings = Settings Shift = ປ່ຽນ +Show in folder = ສະແດງໃນໂຟນເດີ້ Skip = Skip Snap = Snap Space = ຍະວ່າງ @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = ໄຟລ໌ຖືກບີບອັດ (ZI Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = ຢືນຢັນການລຶບ CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = ສ້າງການຕັ້ງຄ່າເກມ Create Shortcut = ຈາກຫຼ້າສຸດ @@ -557,7 +558,6 @@ Play = ຫຼິ້ນ Remove From Recent = ເອົາອອກຈາກໜ້າ "ຫຼ້າສຸດ" SaveData = ບັນທຶກຂໍ້ມູນ Setting Background = Setting background -Show In Folder = ສະແດງໃນໂຟນເດີ້ Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index 6103967ed2..7cab716e77 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekundžių * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Atgal Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = sekundžių, 0 = off Select = Pasirinkti Settings = Settings Shift = Shift +Show in folder = Rodyti aplanke Skip = Skip Snap = Snap Space = Tarpas @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Failas yra suspaustas (ZIP formato).\nReiki Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Ištrinti CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Kurti nuorodą @@ -557,7 +558,6 @@ Play = Žaisti Remove From Recent = Ištrinti iš "Paskutiniai" sąrašo SaveData = Išsaugojimai Setting Background = Setting background -Show In Folder = Rodyti aplanke Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index c2c2d40892..504dbc8af9 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Balik Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Pilih Settings = Settings Shift = Shif +Show in folder = Papar dalam folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Fail dimampatkan (ZIP).\nSila nyah-mampatka Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Padam CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Buat pintasan @@ -557,7 +558,6 @@ Play = Mainkan Remove From Recent = Hapuskan dari "Semasa" SaveData = Data disimpan Setting Background = Setting background -Show In Folder = Papar dalam folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index d6ab0ccafb..e31472b24d 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP-resolutie Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Terug Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = uit Select = Selecteren Settings = Settings Shift = Shift +Show in folder = Weergeven in map Skip = Skip Snap = Snap Space = Spatie @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = het bestand is verkleind (ZIP).\nPak het be Asia = Azië Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Verwijderen CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Gameopties aanmaken Create Shortcut = Snelkoppeling maken @@ -557,7 +558,6 @@ Play = Spelen Remove From Recent = Wissen uit "Recent" SaveData = Opgeslagen data Setting Background = Achtergrondinstelling -Show In Folder = Weergeven in map Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = VS diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index 97b2c4fc7f..ce0bc2a1bd 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d seconds * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Tilbake Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = seconds, 0 = off Select = Velg Settings = Settings Shift = Shift +Show in folder = Show in folder Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompres Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Delete CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Create game config Create Shortcut = Create shortcut @@ -557,7 +558,6 @@ Play = Play Remove From Recent = Remove from "Recent" SaveData = Savedata Setting Background = Setting background -Show In Folder = Show in folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index 5e14ae4b0f..d47b59197e 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekund * PSP res = * rozdz. PSP Active = Aktywny +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Powrót Bottom Center = Dolny środek @@ -449,6 +450,7 @@ seconds, 0:off = sekundy, 0 = wył. Select = Wybierz Settings = Ustawienia Shift = Shift +Show in folder = Pokaż w folderze Skip = Pomiń Snap = Tryb siatki Space = Spacja @@ -537,7 +539,6 @@ ZIP file detected (Require WINRAR) = Wykryto plik ZIP.\nRozpakuj go przed użyci Asia = Azja Calculate CRC = Oblicz CRC Click "Calculate CRC" to verify ISO = Kliknij "Oblicz CRC" aby zweryfikować plik ISO -ConfirmDelete = Usuń CRC checksum does not match, bad or modified ISO = Niezgodna suma kontrolna CRC, plik ISO jest zły lub zmodyfikowany Create Game Config = Utwórz konfigurację gry Create Shortcut = Utwórz skrót @@ -561,7 +562,6 @@ Play = Graj Remove From Recent = Usuń z "Ostatnio uruchamianych" SaveData = Zapisy gier Setting Background = Ustawianie tła -Show In Folder = Pokaż w folderze Time Played: %1h %2m %3s = Czas gry: %1h %2m %3s Uncompressed = Nieskompresowane USA = USA diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index df29c09af9..6f58e64a5c 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -390,6 +390,7 @@ VFPU = VFPU %d seconds = %d segundos * PSP res = * Resolução do PSP Active = Ativo +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Você tem certeza que você quer sair? Back = Voltar Bottom Center = No centro do rodapé @@ -473,6 +474,7 @@ seconds, 0:off = segundos, 0 = desligado Select = Selecionar Settings = Configurações Shift = Shift +Show in folder = Mostrar na pasta Skip = Ignorar Snap = Grade Space = Espaço @@ -557,7 +559,6 @@ ZIP file detected (Require WINRAR) = O arquivo está comprimido (ZIP).\nPor favo Asia = Ásia Calculate CRC = Calcular CRC Click "Calculate CRC" to verify ISO = Clique em "Calcular CRC" pra verificar a ISO -ConfirmDelete = Apagar CRC checksum does not match, bad or modified ISO = O checksum do CRC não combina, ISO ruim ou modificada Create Game Config = Criar configuração do jogo Create Shortcut = Criar atalho @@ -581,7 +582,6 @@ Play = Jogar Remove From Recent = Remover dos "Recentes" SaveData = Dados do save Setting Background = Configurando o cenário de fundo -Show In Folder = Mostrar na pasta Time Played: %1h %2m %3s = Tempo Jogado: %1h %2m %3s Uncompressed = Descomprimido USA = EUA diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 7250007625..1dc4894221 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -390,6 +390,7 @@ VFPU = VFPU %d seconds = %d segundos * PSP res = * Resolução da PSP Active = Ativo +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Voltar Bottom Center = Centro do rodapé @@ -473,6 +474,7 @@ seconds, 0:off = segundos, 0 = Desativado Select = Selecionar Settings = Definições Shift = Shift +Show in folder = Mostrar na pasta Skip = Ignorar Snap = Grade Space = Espaço @@ -557,7 +559,6 @@ ZIP file detected (Require WINRAR) = O ficheiro está comprimido (.zip).\nPor fa Asia = Ásia Calculate CRC = Calcular CRC Click "Calculate CRC" to verify ISO = Clica em "Calcular CRC" para verificar a ISO -ConfirmDelete = Eliminar CRC checksum does not match, bad or modified ISO = A checksum da CRC não corresponde, esta ISO provavelmente é uma copia de má qualidade ou está modificada Create Game Config = Criar definições do jogo Create Shortcut = Criar atalho @@ -581,7 +582,6 @@ Play = Jogar Remove From Recent = Remover de "Recente" SaveData = Dados Salvos Setting Background = Definindo o cenário de fundo -Show In Folder = Mostrar na pasta Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = EUA diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index e206980a15..b1c378243e 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -367,6 +367,7 @@ VFPU = VFPU %d seconds = %d secunde * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Înapoi Bottom Center = Bottom center @@ -450,6 +451,7 @@ seconds, 0:off = secunde, 0 = off Select = Selectează Settings = Settings Shift = Shift +Show in folder = Arată în folder Skip = Skip Snap = Snap Space = Space @@ -534,7 +536,6 @@ ZIP file detected (Require WINRAR) = Fișierul e compresat(ZIP).\nVă rog decomp Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Ștergere CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Creează configurare joc Create Shortcut = Creează scurtătură @@ -558,7 +559,6 @@ Play = Joacă Remove From Recent = Ștergere de la "Recent" SaveData = Salvare Setting Background = Setting background -Show In Folder = Arată în folder Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index df3e7e2b70..2a7a2563f4 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d секунд * PSP res = * разр. PSP Active = Активно +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Назад Bottom Center = Внизу в центре @@ -449,6 +450,7 @@ seconds, 0:off = секунд, 0 = выкл. Select = Выбрать Settings = Настройки Shift = Сдвинуть +Show in folder = Показать в папке Skip = Пропустить Snap = Разметка Space = Пробел @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = файл сжат (ZIP).\nПожалуйс Asia = Азия Calculate CRC = Вычислить CRC Click "Calculate CRC" to verify ISO = Нажмите "Вычислить CRC" для проверки подлинности ISO -ConfirmDelete = Удалить CRC checksum does not match, bad or modified ISO = Контрольная сумма CRC не совпадает, ISO испорчен или изменен Create Game Config = Создать конфиг Create Shortcut = Создать ярлык @@ -557,7 +558,6 @@ Play = Запустить Remove From Recent = Удалить из недавних SaveData = Сохранения Setting Background = Установка фона -Show In Folder = Показать в папке Time Played: %1h %2m %3s = Проведено в игре: %1ч %2м %3с Uncompressed = Несжато USA = США diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index 833659d0e6..cdb637d811 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d sekunder * PSP res = * PSP res Active = Aktiv +Are you sure you want to delete the file? = Är du säker på att du vill ta bort filen? Are you sure you want to exit? = Är du säker på att du vill avsluta? Back = Tillbaka Bottom Center = Underkant centrerad @@ -450,6 +451,7 @@ seconds, 0:off = sek, 0: av Select = Välj Settings = Inställningar Shift = Skift +Show in folder = Visa i mapp Skip = Hoppa över Snap = Fäst Space = Mellanslag @@ -534,7 +536,6 @@ ZIP file detected (Require WINRAR) = filen är komprimerad (ZIP).\nPacka upp fil Asia = Asia Calculate CRC = Beräkna CRC Click "Calculate CRC" to verify ISO = Klicka på "Beräkna CRC" för att verifiera ISO -ConfirmDelete = Ta bort CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Skapa spelconfig Create Shortcut = Skapa genväg @@ -558,7 +559,6 @@ Play = Spela Remove From Recent = Ta bort från "Senast spelat" SaveData = Sparad data Setting Background = Sätter UI-bakgrund -Show In Folder = Visa i mapp Time Played: %1h %2m %3s = Spelad tid: %1h %2m %3s Uncompressed = Okomprimerat USA = USA diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index c331e535e4..a55db62528 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -367,6 +367,7 @@ VFPU = VFPU %d seconds = %d na segundo * PSP res = * PSP res Active = Active +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Bumalik Bottom Center = Bottom center @@ -450,6 +451,7 @@ seconds, 0:off = segundo, 0 = Nakapatay Select = Piliin Settings = Mga Setting Shift = Shift +Show in folder = Ipakita sa folder Skip = I-Skip Snap = Snap Space = Space @@ -534,7 +536,6 @@ ZIP file detected (Require WINRAR) = Ang File ay na Compress (ZIP).\nPaki-decomp Asia = Asia Calculate CRC = Kalkulahin ang CRC Click "Calculate CRC" to verify ISO = I-click ang "Kalkulahin ang CRC" para i-verify ang ISO -ConfirmDelete = Kumpirmahin ang pag bura CRC checksum does not match, bad or modified ISO = Hindi tugma ang CRC checksum, maaring binago/dinaya ang ISO Create Game Config = Gumawa ng game config Create Shortcut = Gumawa ng shortcut @@ -558,7 +559,6 @@ Play = Laruin Remove From Recent = Alisin mula sa "Nakaraang nilaro" SaveData = SaveData Setting Background = Background sa Setting -Show In Folder = Ipakita sa folder Time Played: %1h %2m %3s = Oras ng paglalaro: %1h %2m %3s Uncompressed = Di Compressed USA = USA diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index 3d82446f66..389dad9421 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -376,6 +376,7 @@ VFPU = VFPU %d seconds = %d วินาที * PSP res = * ขนาดจอ PSP Active = เปิดการทำงาน +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = คุณแน่ใจนะว่าต้องการออกเกม? Back = ย้อนกลับ Bottom Center = มุมล่างกลางจอ @@ -459,6 +460,7 @@ seconds, 0:off = วินาที, 0 = ปิด Select = เลือก Settings = การตั้งค่า Shift = เปลี่ยน +Show in folder = แสดงในโฟลเดอร์ Skip = ข้าม Snap = ขยับ Space = เว้นวรรค @@ -543,7 +545,6 @@ ZIP file detected (Require WINRAR) = ไฟล์นี้ถูกบีบอ Asia = AS (โซนเอเชีย) Calculate CRC = คำนวณค่า CRC Click "Calculate CRC" to verify ISO = กดที่ "คำนวณค่า CRC" เพื่อตรวจสอบไฟล์เกม ISO -ConfirmDelete = ยืนยันการลบ CRC checksum does not match, bad or modified ISO = ค่า CRC ไม่ตรงกัน ไฟล์เกม ISO นี้ อาจจะไม่ดีหรือถูกดัดแปลงมา Create Game Config = สร้างการตั้งค่าเฉพาะเกม Create Shortcut = สร้างทางลัด @@ -567,7 +568,6 @@ Play = เริ่มเล่น Remove From Recent = ลบออกจากในหน้า "ล่าสุด" SaveData = ขนาดข้อมูลเซฟ Setting Background = การตั้งค่าพื้นหลัง -Show In Folder = แสดงในโฟลเดอร์ Time Played: %1h %2m %3s = เวลาที่เล่น: %1ชั่วโมง %2นาที %3วินาที Uncompressed = ไม่ได้ถูกบีบอัด USA = USA (โซนอเมริกา) diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index 21301ef183..fb47e6ac8a 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -368,6 +368,7 @@ VFPU = VFPU %d seconds = %d saniye * PSP res = * PSP Çözünürlüğü Active = Etkin +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Geri Bottom Center = Orta alt @@ -451,6 +452,7 @@ seconds, 0:off = saniye, 0 = kapalı Select = Seç Settings = Ayarlar Shift = Shift +Show in folder = Dosyada göster Skip = Geç Snap = Hizala Space = Boşluk @@ -535,7 +537,6 @@ ZIP file detected (Require WINRAR) = Dosya sıkıştırlmış (ZIP).\nLütfen il Asia = Asya Calculate CRC = CRC'yi Hesapla Click "Calculate CRC" to verify ISO = ISO'yu doğrulamak için "CRC'yi Hesapla"ya tıklayın -ConfirmDelete = Sil CRC checksum does not match, bad or modified ISO = CRC sağlama toplamı eşleşmiyor, ISO hatalı veya değiştirilmiş olabilir. Create Game Config = Oyun için yapılandırma dosyası oluştur Create Shortcut = Kısayol oluştur @@ -559,7 +560,6 @@ Play = Oyna Remove From Recent = Geçmişten sil SaveData = Kayıt Setting Background = Arkaplan ayarlanıyor -Show In Folder = Dosyada göster Time Played: %1h %2m %3s = Oynandığı Süre: %1h %2m %3s Uncompressed = Sıkıştırılmamış USA = ABD diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index 759ebb2c31..c4e932605f 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d сек * PSP res = * дозв. PSP Active = Активно +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Назад Bottom Center = Знизу центрально @@ -449,6 +450,7 @@ seconds, 0:off = секунд, 0 = вимк. Select = Вибрати Settings = Параметри Shift = Shift +Show in folder = Показати в теці Skip = Пропустити Snap = знімок Space = Пробіл @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = Файл стиснуто (ZIP).\nБудь Asia = Азія Calculate CRC = Обчислити CRC Click "Calculate CRC" to verify ISO = Натисніть "Обчислити CRC" для перевірки ISO -ConfirmDelete = Видалити CRC checksum does not match, bad or modified ISO = CRC контрольна сума не збігається, поганий або змінений ISO Create Game Config = Створити конфіг Create Shortcut = Створити ярлик @@ -557,7 +558,6 @@ Play = Грати Remove From Recent = Видалити з останніх SaveData = Збереження Setting Background = Налаштування фону -Show In Folder = Показати в теці Time Played: %1h %2m %3s = Час гри: %1г %2х %3с Uncompressed = Без стиснення USA = США diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index 4aa6b2bb50..e14955eb64 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d giây * PSP res = * PSP như thật Active = Hoạt động +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = Trở lại Bottom Center = Bottom center @@ -449,6 +450,7 @@ seconds, 0:off = giây, 0 = tắt Select = Lựa chọn Settings = Settings Shift = Shift +Show in folder = Hiện trong thư mục Skip = Skip Snap = Snap Space = Space @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = đây là file nén (ZIP).\nXin hãy giải Asia = Asia Calculate CRC = Calculate CRC Click "Calculate CRC" to verify ISO = Click "Calculate CRC" to verify ISO -ConfirmDelete = Xóa CRC checksum does not match, bad or modified ISO = CRC checksum does not match, bad or modified ISO Create Game Config = Tạo thiết lập cho game Create Shortcut = Tạo lối tắt @@ -557,7 +558,6 @@ Play = Chơi Remove From Recent = Xóa danh sách trò chơi gần đây SaveData = Dữ liệu save Setting Background = Cài đặt nền -Show In Folder = Hiện trong thư mục Time Played: %1h %2m %3s = Time Played: %1h %2m %3s Uncompressed = Uncompressed USA = USA diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index 187c396ac1..ace567d8e6 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d秒 * PSP res = * PSP分辨率 Active = 激活 +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = 返回 Bottom Center = 正下方 @@ -449,6 +450,7 @@ seconds, 0:off = 秒,0=禁用 Select = 选择 Settings = 设置 Shift = 翻页 +Show in folder = 在文件夹中显示 Skip = 是,跳过 Snap = 网格对齐 Space = 空格键 @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = 这是ZIP压缩文件。\n请尝试使用Wi Asia = 亚洲 Calculate CRC = 计算CRC码 Click "Calculate CRC" to verify ISO = 点击"计算CRC码"可校验ISO镜像 -ConfirmDelete = 确认删除 CRC checksum does not match, bad or modified ISO = CRC校验与原版不符, 此ISO镜像有修改或损坏 Create Game Config = 建立游戏配置 Create Shortcut = 创建快捷方式 @@ -557,7 +558,6 @@ Play = 启动 Remove From Recent = 从最近游玩中删除 SaveData = 存档 Setting Background = 设置壁纸中 -Show In Folder = 在文件夹中显示 Time Played: %1h %2m %3s = 游玩时间:%1小时 %2分 %3秒 Uncompressed = 已解压 USA = 美国 diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index 8789069bc3..e37ca1d7bc 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -366,6 +366,7 @@ VFPU = VFPU %d seconds = %d 秒 * PSP res = * PSP 解析度 Active = 啟用 +Are you sure you want to delete the file? = Are you sure you want to delete the file? Are you sure you want to exit? = Are you sure you want to exit? Back = 返回 Bottom Center = 正下 @@ -449,6 +450,7 @@ seconds, 0:off = 秒,0 = 關閉 Select = 選取 Settings = 設定 Shift = 移位 +Show in folder = 在資料夾中顯示 Skip = 跳過 Snap = 貼齊 Space = 空白 @@ -533,7 +535,6 @@ ZIP file detected (Require WINRAR) = 檔案已壓縮 (ZIP)\n請先解壓縮 (嘗 Asia = 亞州 Calculate CRC = 計算 CRC Click "Calculate CRC" to verify ISO = 按一下「計算 CRC」以驗證 ISO -ConfirmDelete = 刪除 CRC checksum does not match, bad or modified ISO = CRC 總和檢查碼不相符,ISO 檔案錯誤或經過修改 Create Game Config = 建立遊戲組態 Create Shortcut = 建立捷徑 @@ -557,7 +558,6 @@ Play = 開始遊戲 Remove From Recent = 從「最近遊玩」中移除 SaveData = 儲存資料 Setting Background = 設定背景 -Show In Folder = 在資料夾中顯示 Time Played: %1h %2m %3s = 已遊玩時間:%1小時 %2分鐘 %3秒 Uncompressed = 已解壓縮 USA = 美國