iOS app store: Hide the "Set memoery stick" option in developer tools

It's really not a good idea to change it.

In case someone does have a use case for it, we keep the option anyway,
but in developer tools, with a loud warning next to it.

Should help #18929 by reducing the number of people causing themselves trouble
with the option.
This commit is contained in:
Henrik Rydgård 2024-09-26 21:09:23 +02:00
parent 9208d9d49a
commit 4665196535
49 changed files with 168 additions and 95 deletions

View File

@ -28,10 +28,10 @@ public:
static Path appropriateMemoryStickDirectoryToUse();
static void setUserPreferredMemoryStickDirectory(Path);
static Path defaultMemoryStickPath();
static void ClearDelegate();
private:
static Path __defaultMemoryStickPath();
#if PPSSPP_PLATFORM(IOS)
// iOS only, needed for UIDocumentPickerViewController
static void *__pickerDelegate;

View File

@ -140,10 +140,10 @@ Path DarwinFileSystemServices::appropriateMemoryStickDirectoryToUse() {
if (userPreferred)
return Path(userPreferred.UTF8String);
return __defaultMemoryStickPath();
return defaultMemoryStickPath();
}
Path DarwinFileSystemServices::__defaultMemoryStickPath() {
Path DarwinFileSystemServices::defaultMemoryStickPath() {
#if PPSSPP_PLATFORM(IOS)
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
objectAtIndex:0];

View File

@ -57,6 +57,7 @@
#include "UI/MemStickScreen.h"
#include "UI/Theme.h"
#include "UI/RetroAchievementScreens.h"
#include "UI/OnScreenDisplay.h"
#include "Common/File/FileUtil.h"
#include "Common/File/AndroidContentURI.h"
@ -122,6 +123,17 @@ static bool SupportsCustomDriver() {
#endif
#if PPSSPP_PLATFORM(MAC) || PPSSPP_PLATFORM(IOS)
static void SetMemStickDirDarwin(int requesterToken) {
auto initialPath = g_Config.memStickDirectory;
INFO_LOG(Log::System, "Current path: %s", initialPath.c_str());
System_BrowseForFolder(requesterToken, "", initialPath, [](const std::string &value, int) {
INFO_LOG(Log::System, "Selected path: %s", value.c_str());
DarwinFileSystemServices::setUserPreferredMemoryStickDirectory(Path(value));
});
}
#endif
GameSettingsScreen::GameSettingsScreen(const Path &gamePath, std::string gameID, bool editThenRestore)
: TabbedUIDialogScreenWithGameBackground(gamePath), gameID_(gameID), editThenRestore_(editThenRestore) {
prevInflightFrames_ = g_Config.iInflightFrames;
@ -1113,7 +1125,20 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
}
#if PPSSPP_PLATFORM(MAC) || PPSSPP_PLATFORM(IOS)
systemSettings->Add(new Choice(sy->T("Set Memory Stick folder")))->OnClick.Handle(this, &GameSettingsScreen::OnChangeMemStickDir);
bool showItHere = true;
#if PPSSPP_PLATFORM(IOS_APP_STORE)
if (g_Config.memStickDirectory == DarwinFileSystemServices::defaultMemoryStickPath()) {
// We still keep a way to access it on the developer tools screen.
showItHere = false;
}
#endif
if (showItHere) {
systemSettings->Add(new Choice(sy->T("Set Memory Stick folder")))->OnClick.Add(
[=](UI::EventParams &) {
SetMemStickDirDarwin(GetRequesterToken());
return UI::EVENT_DONE;
});
}
#endif
#if PPSSPP_PLATFORM(ANDROID)
@ -1121,7 +1146,7 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
memstickPath->SetEnabled(!PSP_IsInited());
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnChangeMemStickDir);
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnShowMemstickScreen);
// Display USB path for convenience.
std::string usbPath;
@ -1138,7 +1163,7 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
memstickPath->SetEnabled(!PSP_IsInited());
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnChangeMemStickDir);
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnShowMemstickScreen);
#else
SavePathInMyDocumentChoice = systemSettings->Add(new CheckBox(&installed_, sy->T("Save path in My Documents", "Save path in My Documents")));
SavePathInMyDocumentChoice->SetEnabled(!PSP_IsInited());
@ -1347,15 +1372,8 @@ UI::EventReturn GameSettingsScreen::OnJitAffectingSetting(UI::EventParams &e) {
return UI::EVENT_DONE;
}
UI::EventReturn GameSettingsScreen::OnChangeMemStickDir(UI::EventParams &e) {
#if PPSSPP_PLATFORM(MAC) || PPSSPP_PLATFORM(IOS)
auto initialPath = g_Config.memStickDirectory;
System_BrowseForFolder(GetRequesterToken(), "", initialPath, [](const std::string &value, int) {
DarwinFileSystemServices::setUserPreferredMemoryStickDirectory(Path(value));
});
#else
UI::EventReturn GameSettingsScreen::OnShowMemstickScreen(UI::EventParams &e) {
screenManager()->push(new MemStickScreen(false));
#endif
return UI::EVENT_DONE;
}
@ -1763,6 +1781,7 @@ void DeveloperToolsScreen::CreateViews() {
auto a = GetI18NCategory(I18NCat::AUDIO);
auto sy = GetI18NCategory(I18NCat::SYSTEM);
auto ps = GetI18NCategory(I18NCat::POSTSHADERS);
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
AddStandardBack(root_);
@ -1882,6 +1901,15 @@ void DeveloperToolsScreen::CreateViews() {
});
#endif
#if PPSSPP_PLATFORM(IOS_APP_STORE)
list->Add(new NoticeView(NoticeLevel::WARN, ms->T("Moving the memstick directory is NOT recommended on iOS"), ""));
list->Add(new Choice(sy->T("Set Memory Stick folder")))->OnClick.Add(
[=](UI::EventParams &) {
SetMemStickDirDarwin(GetRequesterToken());
return UI::EVENT_DONE;
});
#endif
static const char *ffModes[] = { "Render all frames", "", "Frame Skipping" };
PopupMultiChoice *ffMode = list->Add(new PopupMultiChoice(&g_Config.iFastForwardMode, dev->T("Fast-forward mode"), ffModes, 0, ARRAY_SIZE(ffModes), I18NCat::GRAPHICS, screenManager()));
ffMode->SetEnabledFunc([]() { return !g_Config.bVSync; });

View File

@ -103,7 +103,7 @@ private:
UI::EventReturn OnMicDeviceChange(UI::EventParams& e);
UI::EventReturn OnAudioDevice(UI::EventParams &e);
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);
UI::EventReturn OnChangeMemStickDir(UI::EventParams &e);
UI::EventReturn OnShowMemstickScreen(UI::EventParams &e);
#if defined(_WIN32) && !PPSSPP_PLATFORM(UWP)
UI::EventReturn OnSavePathMydoc(UI::EventParams &e);
UI::EventReturn OnSavePathOther(UI::EventParams &e);

View File

@ -157,7 +157,7 @@ void MemStickScreen::CreateViews() {
using namespace UI;
auto di = GetI18NCategory(I18NCat::DIALOG);
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
Margins actionMenuMargins(15, 0, 15, 0);
@ -174,12 +174,12 @@ void MemStickScreen::CreateViews() {
if (initialSetup_) {
mainColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 12.0f, 0.0f)));
mainColumn->Add(new TextView(iz->T("Welcome to PPSSPP!"), ALIGN_LEFT, false));
mainColumn->Add(new TextView(ms->T("Welcome to PPSSPP!"), ALIGN_LEFT, false));
}
mainColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 18.0f, 0.0f)));
mainColumn->Add(new TextView(iz->T("MemoryStickDescription", "Choose where to keep PSP data (Memory Stick)"), ALIGN_LEFT, false));
mainColumn->Add(new TextView(ms->T("MemoryStickDescription", "Choose where to keep PSP data (Memory Stick)"), ALIGN_LEFT, false));
mainColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 18.0f, 0.0f)));
ViewGroup *subColumns = new LinearLayoutList(ORIENT_HORIZONTAL);
@ -195,7 +195,7 @@ void MemStickScreen::CreateViews() {
// Trying to avoid needing a scroll view, so only showing the explanation for one option at a time.
#if !PPSSPP_PLATFORM(UWP)
if (!System_GetPropertyBool(SYSPROP_ANDROID_SCOPED_STORAGE)) {
leftColumn->Add(new RadioButton(&choice_, CHOICE_STORAGE_ROOT, iz->T("Use PSP folder at root of storage")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
leftColumn->Add(new RadioButton(&choice_, CHOICE_STORAGE_ROOT, ms->T("Use PSP folder at root of storage")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
if (choice_ == CHOICE_STORAGE_ROOT) {
AddExplanation(leftColumn, (MemStickScreen::Choice)choice_);
}
@ -203,30 +203,30 @@ void MemStickScreen::CreateViews() {
#endif
if (storageBrowserWorking_) {
leftColumn->Add(new RadioButton(&choice_, CHOICE_BROWSE_FOLDER, iz->T("Create or Choose a PSP folder")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
leftColumn->Add(new RadioButton(&choice_, CHOICE_BROWSE_FOLDER, ms->T("Create or Choose a PSP folder")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
// TODO: Show current folder here if we have one set.
} else {
leftColumn->Add(new RadioButton(&choice_, CHOICE_SET_MANUAL, iz->T("Manually specify PSP folder")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
leftColumn->Add(new TextView(iz->T("DataWillStay", "Data will stay even if you uninstall PPSSPP.")))->SetBullet(true);
leftColumn->Add(new TextView(iz->T("DataCanBeShared", "Data can be shared between PPSSPP regular/Gold.")))->SetBullet(true);
leftColumn->Add(new RadioButton(&choice_, CHOICE_SET_MANUAL, ms->T("Manually specify PSP folder")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
leftColumn->Add(new TextView(ms->T("DataWillStay", "Data will stay even if you uninstall PPSSPP.")))->SetBullet(true);
leftColumn->Add(new TextView(ms->T("DataCanBeShared", "Data can be shared between PPSSPP regular/Gold.")))->SetBullet(true);
// TODO: Show current folder here if we have one set.
}
errorNoticeView_ = leftColumn->Add(new NoticeView(NoticeLevel::WARN, iz->T("Cancelled - try again"), ""));
errorNoticeView_ = leftColumn->Add(new NoticeView(NoticeLevel::WARN, ms->T("Cancelled - try again"), ""));
errorNoticeView_->SetVisibility(UI::V_GONE);
if (choice_ == CHOICE_BROWSE_FOLDER || choice_ == CHOICE_SET_MANUAL) {
UI::View *extraView = nullptr;
if (!g_Config.memStickDirectory.empty()) {
extraView = new TextView(StringFromFormat(" %s: %s", iz->T_cstr("Current"), g_Config.memStickDirectory.ToVisualString().c_str()), ALIGN_LEFT, false);
extraView = new TextView(StringFromFormat(" %s: %s", ms->T_cstr("Current"), g_Config.memStickDirectory.ToVisualString().c_str()), ALIGN_LEFT, false);
}
AddExplanation(leftColumn, (MemStickScreen::Choice)choice_, extraView);
}
std::string privateString(iz->T("Use App Private Data"));
std::string privateString(ms->T("Use App Private Data"));
if (initialSetup_) {
privateString = StringFromFormat("%s (%s)", iz->T_cstr("Skip for now"), privateString.c_str());
privateString = StringFromFormat("%s (%s)", ms->T_cstr("Skip for now"), privateString.c_str());
}
leftColumn->Add(new RadioButton(&choice_, CHOICE_PRIVATE_DIRECTORY, privateString))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
@ -265,7 +265,7 @@ void MemStickScreen::CreateViews() {
rightColumnItems->Add(new UI::Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack);
}
if (System_GetPropertyInt(SYSPROP_DEVICE_TYPE) != DEVICE_TYPE_TV) {
rightColumnItems->Add(new UI::Choice(iz->T("WhatsThis", "What's this?")))->OnClick.Handle<MemStickScreen>(this, &MemStickScreen::OnHelp);
rightColumnItems->Add(new UI::Choice(ms->T("WhatsThis", "What's this?")))->OnClick.Handle<MemStickScreen>(this, &MemStickScreen::OnHelp);
}
INFO_LOG(Log::System, "MemStickScreen: initialSetup=%d", (int)initialSetup_);
@ -420,16 +420,17 @@ UI::EventReturn MemStickScreen::Browse(UI::EventParams &params) {
auto mm = GetI18NCategory(I18NCat::MAINMENU);
System_BrowseForFolder(GetRequesterToken(), mm->T("Choose folder"), g_Config.memStickDirectory, [=](const std::string &value, int) {
Path pendingMemStickFolder = Path(value);
INFO_LOG(Log::System, "Got folder: '%s'", pendingMemStickFolder.c_str());
INFO_LOG(Log::System, "Got folder: '%s' (old: %s)", pendingMemStickFolder.c_str(), g_Config.memStickDirectory.c_str());
// Browse finished. Let's pop up the confirmation dialog.
if (!pendingMemStickFolder.empty() && pendingMemStickFolder == g_Config.memStickDirectory && File::IsDirectory(pendingMemStickFolder)) {
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
auto di = GetI18NCategory(I18NCat::DIALOG);
// Not sure how this could happen, but let's go with it.
g_OSD.Show(OSDType::MESSAGE_SUCCESS, iz->T("Done!"));
g_OSD.Show(OSDType::MESSAGE_SUCCESS, di->T("Done!"));
done_ = true;
return;
}
errorNoticeView_->SetVisibility(UI::V_GONE);
screenManager()->push(new ConfirmMemstickMoveScreen(pendingMemStickFolder, initialSetup_));
}, [=]() {
errorNoticeView_->SetVisibility(UI::V_VISIBLE);
@ -474,7 +475,7 @@ ConfirmMemstickMoveScreen::~ConfirmMemstickMoveScreen() {
void ConfirmMemstickMoveScreen::CreateViews() {
using namespace UI;
auto sy = GetI18NCategory(I18NCat::SYSTEM);
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
root_ = new LinearLayout(ORIENT_HORIZONTAL);
@ -492,17 +493,17 @@ void ConfirmMemstickMoveScreen::CreateViews() {
free_disk_space(newMemstickFolder_, freeSpaceNew);
free_disk_space(oldMemstickFolder, freeSpaceOld);
leftColumn->Add(new TextView(iz->T("Selected PSP Data Folder"), ALIGN_LEFT, false));
leftColumn->Add(new TextView(ms->T("Selected PSP Data Folder"), ALIGN_LEFT, false));
if (!initialSetup_) {
leftColumn->Add(new NoticeView(NoticeLevel::WARN, iz->T("PPSSPP will restart after the change"), ""));
leftColumn->Add(new NoticeView(NoticeLevel::WARN, ms->T("PPSSPP will restart after the change"), ""));
}
leftColumn->Add(new TextView(newMemstickFolder_.ToVisualString(), ALIGN_LEFT, false));
std::string newFreeSpaceText = std::string(iz->T("Free space")) + ": " + FormatSpaceString(freeSpaceNew);
std::string newFreeSpaceText = std::string(ms->T("Free space")) + ": " + FormatSpaceString(freeSpaceNew);
leftColumn->Add(new TextView(newFreeSpaceText, ALIGN_LEFT, false));
if (existingFilesInNewFolder_) {
leftColumn->Add(new NoticeView(NoticeLevel::SUCCESS, iz->T("Already contains PSP data"), ""));
leftColumn->Add(new NoticeView(NoticeLevel::SUCCESS, ms->T("Already contains PSP data"), ""));
if (!moveData_) {
leftColumn->Add(new NoticeView(NoticeLevel::INFO, iz->T("No data will be changed"), ""));
leftColumn->Add(new NoticeView(NoticeLevel::INFO, ms->T("No data will be changed"), ""));
}
}
if (!error_.empty()) {
@ -510,9 +511,9 @@ void ConfirmMemstickMoveScreen::CreateViews() {
}
if (!oldMemstickFolder.empty()) {
std::string oldFreeSpaceText = std::string(iz->T("Free space")) + ": " + FormatSpaceString(freeSpaceOld);
std::string oldFreeSpaceText = std::string(ms->T("Free space")) + ": " + FormatSpaceString(freeSpaceOld);
rightColumn->Add(new TextView(std::string(iz->T("Current")) + ":", ALIGN_LEFT, false));
rightColumn->Add(new TextView(std::string(ms->T("Current")) + ":", ALIGN_LEFT, false));
rightColumn->Add(new TextView(oldMemstickFolder.ToVisualString(), ALIGN_LEFT, false));
rightColumn->Add(new TextView(oldFreeSpaceText, ALIGN_LEFT, false));
}
@ -525,7 +526,7 @@ void ConfirmMemstickMoveScreen::CreateViews() {
if (!moveDataTask_) {
if (!initialSetup_) {
leftColumn->Add(new CheckBox(&moveData_, iz->T("Move Data")))->OnClick.Handle(this, &ConfirmMemstickMoveScreen::OnMoveDataClick);
leftColumn->Add(new CheckBox(&moveData_, ms->T("Move Data")))->OnClick.Handle(this, &ConfirmMemstickMoveScreen::OnMoveDataClick);
}
auto di = GetI18NCategory(I18NCat::DIALOG);
@ -541,7 +542,7 @@ UI::EventReturn ConfirmMemstickMoveScreen::OnMoveDataClick(UI::EventParams &para
void ConfirmMemstickMoveScreen::update() {
UIDialogScreenWithBackground::update();
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
if (moveDataTask_) {
if (progressView_) {
@ -552,12 +553,12 @@ void ConfirmMemstickMoveScreen::update() {
if (result) {
if (result->success) {
progressReporter_.SetProgress(iz->T("Done!"));
progressReporter_.SetProgress(ms->T("Done!"));
INFO_LOG(Log::System, "Move data task finished successfully!");
// Succeeded!
FinishFolderMove();
} else {
progressReporter_.SetProgress(iz->T("Failed to move some files!"));
progressReporter_.SetProgress(ms->T("Failed to move some files!"));
INFO_LOG(Log::System, "Move data task failed!");
// What do we do here? We might be in the middle of a move... Bad.
RecreateViews();

View File

@ -394,6 +394,7 @@ DeleteFailed = ‎غير قادر علي مسح البيانات.
Deleting = ‎يمسح\nمن فضلك إنتظر...
Disable All = ‎عطل الكل
Disabled = معطل
Done! = !تم
Dumps = Dumps
Edit = تعديل
Enable All = ‎فعل الكل
@ -872,7 +873,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = ...يتم الحذف
Done! = !تم
EasyUSBAccess = USBالوصول السهل للـ
Failed to move some files! = فشل في نقل بعض الملفات
Failed to save config = فشل في حفظ الإعدادات
@ -880,6 +880,7 @@ Free space = المساحة المتوفرة
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = نقل البيانات
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = لن يتم تعديل البيانات
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = Silinir\nZəhmət Olmasa Gözləyin...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = Изтриване\nМоля изчакайте...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Les dades no s'han pogut borrar.
Deleting = Esborrant\nEspera un moment...
Disable All = Desactivar tot
Disabled = Disabled
Done! = Done!
Dumps = Volcats
Edit = Editar
Enable All = Activar tot
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Nelze smazat data.
Deleting = Probíhá mazání\nČekejte prosím...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Ikke muligt at slette data.
Deleting = Sletter\nVent venligst...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Daten konnten nicht gelöscht werden.
Deleting = Löschen\nBitte warten...
Disable All = Alle deaktivieren
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Alle aktivieren
@ -864,7 +865,6 @@ DataCannotBeShared = Daten können NICHT mit Regulär/Gold geteilt werden!
DataWillBeLostOnUninstall = Warnung! Dateien gehen verloren beim deinstallieren von PPSSPP.
DataWillStay = Dateien gehen NICHT verloren beim deinstallieren von PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Konnte ein paar Dateien nicht bewegen!
Failed to save config = Konnte save config nicht speichern
@ -872,6 +872,7 @@ Free space = Freier Platz
Manually specify PSP folder = Manuellen PSP Folder spezifizieren
MemoryStickDescription = Wähle Speicher Ort(Memory Stick)
Move Data = Bewege Datei
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Gewählter PSP Daten Folder
No data will be changed = Keine Datei wird verändert
PPSSPP will restart after the change = PPSSPP wird nach der Änderung neugestartet

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = Dihapusmi\nTajammi...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -410,6 +410,7 @@ DeleteFailed = Unable to delete data.
Deleting = Deleting\nPlease wait...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -1049,7 +1050,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -1057,6 +1057,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
Skip for now = Skip for now
No data will be changed = No data will be changed

View File

@ -386,6 +386,7 @@ DeleteFailed = los datos no se pudieron borrar.
Deleting = Borrando\nEspera un momento...
Disable All = Desactivar todo
Disabled = Disabled
Done! = ¡Hecho!
Dumps = Volcados
Edit = Editar
Enable All = Activar todo
@ -865,7 +866,6 @@ DataCannotBeShared = ¡Los datos NO se pueden compartir entre PPSSPP regular/Gol
DataWillBeLostOnUninstall = ¡AVISO: los datos se perderán una vez desinstales PPSSPP!
DataWillStay = Los datos se mantendrán aunque desinstales PPSSPP.
Deleting... = Deleting...
Done! = ¡Hecho!
EasyUSBAccess = Acceso fácil USB
Failed to move some files! = ¡Error al mover algunos archivos!
Failed to save config = ¡Error al guardar la configuración!
@ -873,6 +873,7 @@ Free space = Espacio libre
Manually specify PSP folder = Especificar carpeta de PSP manualmente
MemoryStickDescription = Elegir dónde mantener los datos de PSP (Memory Stick)
Move Data = Mover datos
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Seleccionar carpeta de datos PSP
No data will be changed = Ningún dato será cambiado
PPSSPP will restart after the change = PPSSPP se reiniciará después del cambio

View File

@ -386,6 +386,7 @@ DeleteFailed = Los archivos no se pudieron borrar.
Deleting = Borrando\nPor favor espere...
Disable All = Apagar todo
Disabled = Deshabilitado
Done! = ¡Hecho!
Dumps = Volcados/dumpeos
Edit = Editar
Enable All = Activar todo
@ -864,7 +865,6 @@ DataCannotBeShared = ¡Datos NO pueden moverse entre PPSSPP regular/Gold!
DataWillBeLostOnUninstall = ADVERTENCIA: ¡Datos pueden borrarse al desinstalar PPSSPP!
DataWillStay = Datos pueden mantenerse incluso si desinstalas PPSSPP.
Deleting... = Eliminando...
Done! = ¡Hecho!
EasyUSBAccess = Acceso USB fácil
Failed to move some files! = ¡Falló al mover algunos archivos!
Failed to save config = Falló al guardar configuración
@ -872,6 +872,7 @@ Free space = Espacio disponible
Manually specify PSP folder = Especificar manualmente la carpeta PSP
MemoryStickDescription = Seleccionar donde se guarda los datos de PSP (Memory Stick)
Move Data = Mover datos
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Carpeta de datos PSP seleccionado
No data will be changed = Sin cambios en los datos
PPSSPP will restart after the change = PPSSPP se reiniciará trás el cambio.

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = ‎در حال حذف کردن\n...منتظر بمانید
Disable All = غیر فعال کردن همه؟
Disabled = Disabled
Done! = انجام شد!
Dumps = Dumps
Edit = ویرایش
Enable All = فعال کردن همه؟
@ -864,7 +865,6 @@ DataCannotBeShared = نمی‌توان داده‌ها را بین PPSSPP معم
DataWillBeLostOnUninstall = هشدار! وقتی PPSSPP را حذف کنید داده‌هایتان از بین خواهند رفت!
DataWillStay = حتی اگر PPSSPP را حذف کنید داده‌هایتان باقی می‌ماند.
Deleting... = درحال حذف...
Done! = انجام شد!
EasyUSBAccess = دسترسی راحت به USB
Failed to move some files! = Failed to move some files!
Failed to save config = ذخیرهٔ پیکربندی شکست خورد
@ -872,6 +872,7 @@ Free space = فضای خالی
Manually specify PSP folder = به طور دستی پوشه PSP را مشخص کنید
MemoryStickDescription = محل نگهداری داده‌های PSP را انتخاب کنید (کارت حافظه)
Move Data = انتقال داده
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = پوشهٔ داده‌ٔ PSP انتخاب شد.
No data will be changed = هیچ داده‌ای تغییر نخواهد کرد
PPSSPP will restart after the change = بعد از تغییر PPSSPP بازراه‌اندازی خواهد شد

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = Poistetaan\nOdota...
Disable All = Disable all
Disabled = Disabled
Done! = Valmis!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Tietoja EI VOIDA jakaan PPSSPP:n tavallisen / Gold-version
DataWillBeLostOnUninstall = Varoitus! Tiedot häviävät, kun poistat PPSSPP:n!
DataWillStay = Tiedot säilyvät jopa jos poistat PPSSPP:n.
Deleting... = Deleting...
Done! = Valmis!
EasyUSBAccess = Helppo USB-pääsy
Failed to move some files! = Joitain tiedostoja ei voitu siirtää!
Failed to save config = Asetusten tallentaminen epäonnistui
@ -872,6 +872,7 @@ Free space = Vapaa tila
Manually specify PSP folder = Määritä PSP-kansio manuaalisesti
MemoryStickDescription = Valitse minne haluat säilyttää PSP-tiedot (muistikortti)
Move Data = Siirrä tiedot
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = Mitään tietoja ei muuteta
PPSSPP will restart after the change = PPSSPP käynnistyy uudelleen muutoksen jälkeen

View File

@ -386,6 +386,7 @@ DeleteFailed = Suppression impossible.
Deleting = Suppression\nVeuillez patienter...
Disable All = Tout désactiver
Disabled = Disabled
Done! = Terminé!
Dumps = Dumps
Edit = Éditer
Enable All = Tout activer
@ -864,7 +865,6 @@ DataCannotBeShared = Les données NE PEUVENT PAS être partagées entre PPSSPP r
DataWillBeLostOnUninstall = Avertissement! Les données seront perdues lorsque vous désinstallez PPSSPP!
DataWillStay = Les données resteront même si vous désinstallez PPSSPP.
Deleting... = Deleting...
Done! = Terminé!
EasyUSBAccess = Easy USB access
Failed to move some files! = Impossible de déplacer certains fichiers!
Failed to save config = Échec de lenregistrement de la configuration
@ -872,6 +872,7 @@ Free space = Espace libre
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = Aucune donnée ne sera modifiée
PPSSPP will restart after the change = PPSSPP redémarrera après le changement

View File

@ -386,6 +386,7 @@ DeleteFailed = Os datos non se puideron borrar.
Deleting = Borrando\nEspera un momento...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = ΑΔΥΝΑΜΙΑ ΔΙΑΓΡΑΦΗΣ ΔΕΔΟΜΕΝΩΝ.
Deleting = ΔΙΑΓΡΑΦΗ\nΠΑΡΑΚΑΛΩ ΠΕΡΙΜΕΝΕΤΕ...
Disable All = ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ ΟΛΩΝ
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = ΕΝΕΡΓΟΠΟΙΗΣΗ ΟΛΩΝ
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = ...ןתמה אנא ...קחומ
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = ...ןתמה אנא ...קחומ
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Nije moguće izbrisati datu.
Deleting = Brisanje\nPričekajte...
Disable All = Isključi sve
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Uključi sve
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Törlés sikertelen.
Deleting = Törlés\nKérlek várj...
Disable All = Mind kikapcsolása
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Mind bekapcsolása
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Tidak dapat menghapus data.
Deleting = Menghapus\nMohon tunggu...
Disable All = Nonaktifkan semua
Disabled = Disabled
Done! = Selesai!
Dumps = Buang
Edit = Edit
Enable All = Aktifkan semua
@ -864,7 +865,6 @@ DataCannotBeShared = Data tidak bisa dibagi antar PPSSPP reguler/emas!
DataWillBeLostOnUninstall = Peringatan! Data akan hilang ketika Anda menghapus PPSSPP!
DataWillStay = Data akan tetap ada meskipun Anda menghapus PPSSPP.
Deleting... = Deleting...
Done! = Selesai!
EasyUSBAccess = Akses mudah USB
Failed to move some files! = Gagal memindahkan beberapa berkas!
Failed to save config = Gagal menyimpan konfigurasi
@ -872,6 +872,7 @@ Free space = Penyimpanan bebas
Manually specify PSP folder = Tentukan berkas PSP secara manual
MemoryStickDescription = Pilih tempat menyimpan data PSP (Memory Stick)
Move Data = Pindah data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Pilih berkas data PSP
No data will be changed = Tidak ada data yang akan diubah
PPSSPP will restart after the change = PPSSPP akan mulai ulang setelah perubahan

View File

@ -386,6 +386,7 @@ DeleteFailed = Impossibile cancellare i dati.
Deleting = Cancellazione in corso.\nAttendere, prego...
Disable All = Disattiva tutto
Disabled = Disabled
Done! = Fatto!
Dumps = Dumps
Edit = Modifica
Enable All = Attiva tutto
@ -1043,7 +1044,6 @@ DataCannotBeShared = I dati NON possono essere condivisi tra PPSSPP normale/Gold
DataWillBeLostOnUninstall = Attenzione! I dati andranno persi quando disinstalli PPSSPP!
DataWillStay = I dati rimarranno anche se disinstalli PPSSPP.
Deleting... = Deleting...
Done! = Fatto!
EasyUSBAccess = Facile accesso tramite USB
Failed to move some files! = Il trasferimento di alcuni file è fallito!
Failed to save config = Il salvataggio della configurazione è fallito
@ -1051,6 +1051,7 @@ Free space = Spazio disponibile
Manually specify PSP folder = Seleziona manualmente la cartella PSP
MemoryStickDescription = Scegli dove tenere i dati PSP (Memory Stick)
Move Data = Trasferisci i dati
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Seleziona la cartella per i dati PSP
No data will be changed = Nessun dato sarà modificato
PPSSPP will restart after the change = PPSSPP verrà riavviato dopo la modifica

View File

@ -386,6 +386,7 @@ DeleteFailed = データを削除できませんでした。
Deleting = 削除中です。\nしばらくお待ちください...
Disable All = 全て無効にする
Disabled = Disabled
Done! = 完了!
Dumps = Dumps
Edit = 編集
Enable All = 全て有効にする
@ -1040,13 +1041,13 @@ DataWillStay = データはPPSSPPをアンインストールしても残りま
DataCanBeShared = 通常版/ゴールド間でのデータの共有が可能です。
DataCannotBeShared = 通常版/ゴールド間でのデータの共有は「できません」。
Deleting... = 削除中...
Done! = 完了!
EasyUSBAccess = PCとのUSB接続で簡単にフォルダにアクセスできます。
Failed to move some files! = いくつかのファイルの移動に失敗しました!
Failed to save config = コンフィグの保存に失敗しました!
Free space = 空き容量
Manually specify PSP folder = PSPフォルダーを手動で設定する
Move Data = データ移動
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
No data will be changed = データに変更はありません
PPSSPP will restart after the change = PPSSPPは変更後に再起動します
Selected PSP Data Folder = 選択されたPSPフォルダー

View File

@ -386,6 +386,7 @@ DeleteFailed = ora dapat mbusek data.
Deleting = Mbusek\nMohon nteni...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = 데이터를 삭제할 수 없습니다.
Deleting = 삭제 중\n잠시만 기다려 주세요...
Disable All = 모두 비활성화
Disabled = 비활성화
Done! = 완료!
Dumps = 덤프
Edit = 편집
Enable All = 모두 활성화
@ -1025,7 +1026,6 @@ DataCannotBeShared = PPSSPP 레귤러/골드 간에 데이터를 공유할 수
DataWillBeLostOnUninstall = 경고! PPSSPP를 제거하면 데이터가 손실됩니다!
DataWillStay = PPSSPP를 제거해도 데이터는 유지됩니다.
Deleting... = 삭제 중...
Done! = 완료!
EasyUSBAccess = 쉬운 USB 접속
Failed to move some files! = 일부 파일을 이동하지 못했습니다!
Failed to save config = 구성을 저장하지 못했습니다.
@ -1033,6 +1033,7 @@ Free space = 여유 공간
Manually specify PSP folder = 수동으로 PSP 폴더 지정
MemoryStickDescription = PSP 데이터를 보관할 위치 선택 (메모리 스틱)
Move Data = 데이터 이동
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = 선택한 PSP 데이터 폴더
Skip for now = 일단은 건너뜀
No data will be changed = 데이터가 변경되지 않습니다.

View File

@ -400,6 +400,7 @@ DeleteFailed = نەتوانرا زانیاریەکان بسڕدرێنەوە.
Deleting = دەسڕدرێتەوە\nتکایە چاوەڕوان بە...
Disable All = لە کارخستنی هەمووی
Disabled = لە کارخرا
Done! = Done!
Dumps = Dumps
Edit = دەستکاری کردن
Enable All = بەکارپێکردنی هەمووی
@ -1039,7 +1040,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -1047,6 +1047,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
Skip for now = Skip for now
No data will be changed = No data will be changed

View File

@ -386,6 +386,7 @@ DeleteFailed = ບໍ່ສາມາດລຶບຂໍ້ມູນ.
Deleting = ກຳລັງລຶບຂໍ້ມູນ\nກະລຸນາຖ້າ..
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Neįmanoma ištrinti duomenų.
Deleting = Ištrina\nPrašome palaukti...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Pemadaman data gagal.
Deleting = Memadam\nSila tunggu...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Kan de data niet verwijderen.
Deleting = Bezig met verwijderen...\nEen ogenblik geduld.
Disable All = Alles uitschakelen
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Alles inschakelen
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
Deleting = Sletter\nVent litt...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Nie można usunąć danych.
Deleting = Usuwanie\nProszę czekać...
Disable All = Wyłącz wszystko
Disabled = Wyłączono
Done! = Ukończono!
Dumps = Zrzuty
Edit = Edytuj
Enable All = Włącz wszystko
@ -868,7 +869,6 @@ DataCannotBeShared = Dane NIE mogą być udostępniane pomiędzy zwykłą wersj
DataWillBeLostOnUninstall = Uwaga! Utracisz wszystkie dane po odinstalowaniu PPSSPP!
DataWillStay = Dane zostaną na urządzeniu, nawet po odinstalowaniu PPSSPP.
Deleting... = Usuwanie...
Done! = Ukończono!
EasyUSBAccess = Łatwy dostęþ do USB
Failed to move some files! = Nie udało się przenieść niektórych plików!
Failed to save config = Nie udało się zapisać ustawień
@ -876,6 +876,7 @@ Free space = Wolne miejsce
Manually specify PSP folder = Ustaw folder PSP ręcznie
MemoryStickDescription = Wybierz, gdzie chcesz umieścić dane PSP (Karta Pamięci)
Move Data = Przenieś dane
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Wybrany folder danych PSP
No data will be changed = Żadne dane nie zostaną zmienione
PPSSPP will restart after the change = Po zmianie nastąpi reset PPSSPP

View File

@ -410,6 +410,7 @@ DeleteFailed = Incapaz de apagar os dados.
Deleting = Apagando\nPor favor espere...
Disable All = Desativar tudo
Disabled = Desativado
Done! = Concluído!
Dumps = Dumps
Edit = Editar
Enable All = Ativar tudo
@ -1049,7 +1050,6 @@ DataCannotBeShared = Os dados NÃO PODEM ser compartilhados entre o PPSSPP regul
DataWillBeLostOnUninstall = Aviso! Os dados serão perdidos quando você desinstalar o PPSSPP!
DataWillStay = Os dados permanecerão mesmo se você desinstalar o PPSSPP
Deleting... = Apagando...
Done! = Concluído!
EasyUSBAccess = Acesso fácil ao USB
Failed to move some files! = Falhou em mover alguns arquivos!
Failed to save config = Falhou em salvar a configuração
@ -1057,6 +1057,7 @@ Free space = Espaço livre
Manually specify PSP folder = Especificar manualmente a pasta do PSP
MemoryStickDescription = Escolher aonde manter os dados do PSP (Cartão de Memória)
Move Data = Mover Dados
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Pasta Selecionada dos Dados do PSP
Skip for now = Ignorar por enquanto
No data will be changed = Nenhum dado será mudado

View File

@ -410,6 +410,7 @@ DeleteFailed = Não foi possível eliminar os dados.
Deleting = A eliminar\nPor favor espere...
Disable All = Desativar tudo
Disabled = Desativado
Done! = Concluído!
Dumps = Dumps
Edit = Editar
Enable All = Ativar tudo
@ -1068,7 +1069,6 @@ DataCannotBeShared = Os dados não podem ser partilhados entre o PPSSPP Regular/
DataWillBeLostOnUninstall = Aviso! Os dados serão perdidos quando desinstalares o PPSSPP!
DataWillStay = Os dados permanecerão intactos mesmo se desinstalares o PPSSPP.
Deleting... = Deleting...
Done! = Concluído!
EasyUSBAccess = Acesso fácil ao USB
Failed to move some files! = Erro ao mover alguns ficheiros!
Failed to save config = Erro ao salvar a definição
@ -1076,6 +1076,7 @@ Free space = Espaço livre
Manually specify PSP folder = Especificar manualmente a pasta da PSP
MemoryStickDescription = Escolher aonde manter os dados da PSP (cartão de memória)
Move Data = Mover Dados
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Pasta Selecionada dos dados da PSP
Skip for now = Ignorar por enquanto
No data will be changed = Nenhum dado será mudado

View File

@ -387,6 +387,7 @@ DeleteFailed = Nu s-au putut șterge datele.
Deleting = Ştergere în progres\nVă rugăm așteptați...
Disable All = Disable all
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Enable all
@ -865,7 +866,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -873,6 +873,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Не удалось удалить данные.
Deleting = Удаление\nПожалуйста, подождите...
Disable All = Отключить все
Disabled = Отключено
Done! = Завершено!
Dumps = Дампы
Edit = Изменить
Enable All = Включить все
@ -1042,7 +1043,6 @@ DataCannotBeShared = Данные НЕ МОГУТ передаваться ме
DataWillBeLostOnUninstall = Внимание! Данные будут утеряны, если вы удалите PPSSPP!
DataWillStay = Данные останутся, даже если вы удалите PPSSPP
Deleting... = Удаление...
Done! = Завершено!
EasyUSBAccess = Простой доступ к USB
Failed to move some files! = Не получилось переместить некоторые файлы!
Failed to save config = Не получилось сохранить настройки!
@ -1050,6 +1050,7 @@ Free space = Свободное пространство
Manually specify PSP folder = Выбрать папку PSP вручную
MemoryStickDescription = Выберите, где хранить данные PSP (карта памяти)
Move Data = Переместить данные
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Выбранная папка с данными PSP
Skip for now = Пока пропустить
No data will be changed = Данные не будут изменены

View File

@ -387,6 +387,7 @@ DeleteFailed = Misslyckades ta bort data.
Deleting = Tar bort\nVänta...
Disable All = Stäng av allt
Disabled = Av
Done! = Klar!
Dumps = Dumps
Edit = Redigera
Enable All = Slå på allt
@ -1043,7 +1044,6 @@ DataCannotBeShared = Data KAN INTE delas mellan PPSSPP vanlig/Gold!
DataWillBeLostOnUninstall = Varning! Data kommer förloras om du avinstallerar PPSSPP!
DataWillStay = Data stannar kvar även om du avinstallerar PPSSPP.
Deleting... = Deleting...
Done! = Klar!
EasyUSBAccess = Lätt åtkomst via USB
Failed to move some files! = Misslyckades att flytta några filer!
Failed to save config = Misslyckades att spara konfiguration
@ -1051,6 +1051,7 @@ Free space = Ledig plats
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Välj var PSP-data ska lagras (Memory Stick)
Move Data = Flytta data
Moving the memstick directory is NOT recommended on iOS = Att flytta memstick-katalogen är INTE rekommenderat på iOS
Selected PSP Data Folder = Vald PSP-data-mapp
No data will be changed = Ingen data kommer ändras
PPSSPP will restart after the change = PPSSPP kommer att starta om efter ändringen
@ -1357,29 +1358,29 @@ Save path in My Documents = Sparkatalog i Dokument
Savestate Slot = Savestate slot
Savestate slot backups = Savestate slot backups
Screenshots as PNG = Skärmdumpar som PNG
Set Memory Stick folder = Set Memory Stick folder
Set Memory Stick folder = Byt memstick-mapp
Set UI background... = Välj UI-bakgrund...
Show ID = Show ID
Show Memory Stick folder = Visa Memory Stick-mappen
Show region flag = Visa region-flaggor
Simulate UMD delays = Simulera UMD-fördröjningar
Simulate UMD slow reading speed = Simulate UMD slow reading speed
Simulate UMD slow reading speed = Simulera långsam läshastighet från UMD
Slot 1 = Slot 1
Slot 2 = Slot 2
Slot 3 = Slot 3
Slot 4 = Slot 4
Slot 5 = Slot 5
Storage full = Lagringsutrymme fullt
Sustained performance mode = Sustained performance mode
Swipe once to switch app (indicator auto-hides) = Swipe once to switch app (indicator auto-hides)
Swipe twice to switch app (indicator stays visible) = Swipe twice to switch app (indicator stays visible)
Sustained performance mode = Hållbar-prestanda-läge
Swipe once to switch app (indicator auto-hides) = Svep en gång för att byta app (indikatorlinje göms)
Swipe twice to switch app (indicator stays visible) = Svep två gånger för att byta app (indikatorlinje synlig)
Theme = Tema
Time Format = Tidsformat
Transparent UI background = Genomskinlig UI-bakground
UI = Användargränssnitt
UI background animation = Bakgrundsanimering
UI Sound = Ljud i användargränssnittet
undo %c = backup %c
undo %c = ångra %c
USB = USB
Use Lossless Video Codec (FFV1) = Använd förlust-fri video codec (FFV1)
Use O to confirm = Använd O för att bekräfta
@ -1387,8 +1388,8 @@ Use output buffer (with overlay) for recording = Use output buffer (with overlay
Use system native keyboard = Använd systemets tangentbord för text-input
Use X to confirm = Använd X för att bekräfta
VersionCheck = Kolla efter nya versioner av PPSSPP
WARNING: Android battery save mode is on = WARNING: Android battery save mode is On
WARNING: Battery save mode is on = WARNING: Battery save mode is on
WARNING: Android battery save mode is on = WARNING: Android's batteri-spar-läge är aktivt
WARNING: Battery save mode is on = WARNING: Batteri-spar-läge äraktivt
Waves = Vågor
YYYYMMDD = YYYYMMDD

View File

@ -387,6 +387,7 @@ DeleteFailed = Hindi mabura ang datos.
Deleting = Binubura...\nSandali lamang...
Disable All = I-disable lahat
Disabled = Disabled
Done! = Tapos na!
Dumps = Mga Dump
Edit = I-Edit
Enable All = Paganahin lahat
@ -865,7 +866,6 @@ DataCannotBeShared = Maaaring maibabahagi ang data sa pagitan ng PPSSPP Regular
DataWillBeLostOnUninstall = Babala! Data will be lost when you uninstall PPSSPP!
DataWillStay = Mananatili ang data kahit na i-uninstall mo ang PPSSPP.
Deleting... = Binubura...
Done! = Tapos na!
EasyUSBAccess = Madaling pag-access sa USB
Failed to move some files! = Nabigong ilipat ang ilang file!
Failed to save config = Nabigong i-save ang config
@ -873,6 +873,7 @@ Free space = Libreng espasyo
Manually specify PSP folder = Manu-manong tukuyin ang PSP na folder
MemoryStickDescription = Piliin kung saan itatabi ang data ng PSP (Memory Stick)
Move Data = Ilipat ang Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Napiling PSP Data Folder
No data will be changed = Walang data na mababago
PPSSPP will restart after the change = Magsisimula muli ang PPSSPP pagkatapos ng pagbabago

View File

@ -387,6 +387,7 @@ DeleteFailed = ไม่สามารถลบข้อมูลนี้ไ
Deleting = กำลังลบข้อมูล\nโปรดรอ...
Disable All = ปิดใช้งานทั้งหมด
Disabled = ปิดการใช้งาน
Done! = เรียบร้อย!
Dumps = ไฟล์ดั๊มพ์
Edit = แก้ไข
Enable All = เปิดใช้งานทั้งหมด
@ -871,7 +872,6 @@ DataCannotBeShared = ข้อมูลไม่สามารถใช้ง
DataWillBeLostOnUninstall = คำเตือน! ข้อมูลอาจจะสูญหาย เมื่อคุณถอนการติดตั้ง PPSSPP!
DataWillStay = ข้อมูลจะยังคงอยู่ ถึงแม้ว่าจะถอนการติดตั้ง PPSSPP ออกไปแล้ว
Deleting... = กำลังลบ...
Done! = เรียบร้อย!
EasyUSBAccess = การเข้าถึงข้อมูลทำได้ง่าย
Failed to move some files! = ล้มเหลวในการย้ายบางไฟล์!
Failed to save config = ล้มเหลวในการบันทึกตั้งค่า
@ -879,6 +879,7 @@ Free space = พื้นที่ว่าง
Manually specify PSP folder = ใช้โฟลเดอร์ PSP แบบกำหนดเส้นทางเอง
MemoryStickDescription = เลือกแหล่งที่เก็บข้อมูล PSP (เม็มโมรี่ สติ๊ก)
Move Data = ย้ายข้อมูล
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
No data will be changed = ไม่มีข้อมูลอะไรถูกเปลี่ยนแปลง
PPSSPP will restart after the change = PPSSPP จะรีสตาร์ทใหม่หลังจากปรับเปลี่ยนตั้งค่า
Selected PSP Data Folder = โฟลเดอร์ข้อมูล PSP ที่เลือกไว้

View File

@ -388,6 +388,7 @@ DeleteFailed = Veri silinemedi.
Deleting = Siliniyor\nLütfen Bekleyin...
Disable All = Hepsini devre dışı bırak
Disabled = Devre dışı
Done! = Tamamlandı!
Dumps = Dökümler
Edit = Düzenle
Enable All = Hepsini etkinleştir
@ -866,7 +867,6 @@ DataCannotBeShared = Veri PPSSPP normal/Gold arasında PAYLAŞILAMAZ!
DataWillBeLostOnUninstall = Uyarı! PPSSPP'yi kaldırdığınızda veriler kaybolacak!
DataWillStay = PPSSPP'yi kaldırsanız bile veriler kalacaktır.
Deleting... = Siliniyor...
Done! = Tamamlandı!
EasyUSBAccess = Kolay USB erişimi
Failed to move some files! = Bazı dosyalar taşınamadı!
Failed to save config = Yapılandırma kaydedilemedi
@ -874,6 +874,7 @@ Free space = Boş alan
Manually specify PSP folder = PSP klasörünü manuel olarak belirtin
MemoryStickDescription = PSP verisinin nerede tutulacağını seçin (Hafıza Kartı)
Move Data = Veriyi Taşı
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Seçilen PSP Veri Klasörü
No data will be changed = Hiçbir veri değişmeyecektir
PPSSPP will restart after the change = PPSSPP değişiklikten sonra yeniden başlayacak

View File

@ -386,6 +386,7 @@ DeleteFailed = Неможливо видалити дані.
Deleting = Видалення\nБудь ласка, зачекайте...
Disable All = Вимкнути все
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Ввімкнути все
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = Không thể xóa dữ liệu này.
Deleting = Đang xóa\nXin đợi...
Disable All = Vô hiệu hóa tất cả
Disabled = Disabled
Done! = Done!
Dumps = Dumps
Edit = Edit
Enable All = Cho phép tất cả
@ -864,7 +865,6 @@ DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
DataWillStay = Data will stay even if you uninstall PPSSPP.
Deleting... = Deleting...
Done! = Done!
EasyUSBAccess = Easy USB access
Failed to move some files! = Failed to move some files!
Failed to save config = Failed to save config
@ -872,6 +872,7 @@ Free space = Free space
Manually specify PSP folder = Manually specify PSP folder
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
Move Data = Move Data
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = Selected PSP Data Folder
No data will be changed = No data will be changed
PPSSPP will restart after the change = PPSSPP will restart after the change

View File

@ -386,6 +386,7 @@ DeleteFailed = 无法删除存档。
Deleting = 删除中。\n请稍候…
Disable All = 全部禁用
Disabled = 禁用
Done! = 完成!
Dumps = 转储
Edit = 编辑
Enable All = 全部启用
@ -864,7 +865,6 @@ DataCannotBeShared = 数据无法在普通和黄金版之间互通!
DataWillBeLostOnUninstall = 警告除非手动备份转移卸载APP时将擦除全部数据和存档
DataWillStay = 即使卸载PPSSPP数据也能保留。
Deleting... = 删除中...
Done! = 完成!
EasyUSBAccess = 备份、转移、连电脑更简单
Failed to move some files! = 无法移动部分文件!
Failed to save config = 无法保存配置!
@ -872,6 +872,7 @@ Free space = 可用的空间
Manually specify PSP folder = 手动指定PSP文件夹
MemoryStickDescription = 开始之前请选择PSP数据的存放空间
Move Data = 移动PSP数据
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = 您提供的PSP数据文件夹
No data will be changed = 数据不会更改
PPSSPP will restart after the change = 更改这项设置需要PPSSPP重启。

View File

@ -386,6 +386,7 @@ DeleteFailed = 無法刪除資料
Deleting = 正在刪除\n請稍候…
Disable All = 全部停用
Disabled = 已停用
Done! = 完成!
Dumps = 傾印
Edit = 編輯
Enable All = 全部啟用
@ -1042,7 +1043,6 @@ DataCannotBeShared = 資料無法在 PPSSPP 標準版/黃金版之間共用!
DataWillBeLostOnUninstall = 警告!資料會在解除安裝 PPSSPP 後遺失!
DataWillStay = 資料會在解除安裝 PPSSPP 後保留
Deleting... = 正在刪除…
Done! = 完成!
EasyUSBAccess = USB 輕鬆存取
Failed to move some files! = 無法移動部分檔案!
Failed to save config = 無法儲存組態
@ -1050,6 +1050,7 @@ Free space = 可用空間
Manually specify PSP folder = 手動指定 PSP 資料夾
MemoryStickDescription = 選擇 PSP 資料存放位置 (記憶棒)
Move Data = 移動資料
Moving the memstick directory is NOT recommended on iOS = Moving the memstick directory is NOT recommended on iOS
Selected PSP Data Folder = 選取的 PSP 資料資料夾
Skip for now = 暫時跳過
No data will be changed = 沒有要變更的資料