mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #20087 from hrydgard/savedata-manager-confirm
Add Show In Folder button, delete confirmation to savedata manager popup
This commit is contained in:
commit
05bc0dea7d
48 changed files with 127 additions and 122 deletions
|
@ -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<GameInfo> 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;
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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<UIScreen>(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<UIScreen>(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<GameInfo> 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<GameInfo> 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);
|
||||
}
|
||||
|
|
|
@ -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 = أمريكا
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = آمریکا
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = ΗΠΑ
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = 미국
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = США
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 (โซนอเมริกา)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = США
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = 美国
|
||||
|
|
|
@ -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 = 美國
|
||||
|
|
Loading…
Add table
Reference in a new issue