mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add Show In Folder button, delete confirmation to savedata manager popup
This commit is contained in:
parent
02734b03a1
commit
f59ba78f0b
47 changed files with 123 additions and 70 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);
|
||||
|
@ -491,11 +495,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;
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 = مسافة
|
||||
|
@ -565,7 +567,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -581,7 +583,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
|
||||
|
@ -558,7 +560,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
|
||||
|
@ -557,7 +559,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 = فاصله
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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 = ΚΕΝΟ
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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 = スペース
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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 = 공간
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -571,7 +573,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 = ຍະວ່າງ
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -561,7 +563,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
|
||||
|
@ -581,7 +583,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
|
||||
|
@ -581,7 +583,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
|
||||
|
@ -558,7 +560,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 = Пробел
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -558,7 +560,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
|
||||
|
@ -558,7 +560,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 = เว้นวรรค
|
||||
|
@ -567,7 +569,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
|
||||
|
@ -559,7 +561,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 = Пробіл
|
||||
|
@ -557,7 +559,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
|
||||
|
@ -557,7 +559,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 = 空格键
|
||||
|
@ -557,7 +559,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 = 空白
|
||||
|
@ -557,7 +559,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