mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
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:
parent
9208d9d49a
commit
4665196535
@ -28,10 +28,10 @@ public:
|
|||||||
|
|
||||||
static Path appropriateMemoryStickDirectoryToUse();
|
static Path appropriateMemoryStickDirectoryToUse();
|
||||||
static void setUserPreferredMemoryStickDirectory(Path);
|
static void setUserPreferredMemoryStickDirectory(Path);
|
||||||
|
static Path defaultMemoryStickPath();
|
||||||
|
|
||||||
static void ClearDelegate();
|
static void ClearDelegate();
|
||||||
private:
|
private:
|
||||||
static Path __defaultMemoryStickPath();
|
|
||||||
#if PPSSPP_PLATFORM(IOS)
|
#if PPSSPP_PLATFORM(IOS)
|
||||||
// iOS only, needed for UIDocumentPickerViewController
|
// iOS only, needed for UIDocumentPickerViewController
|
||||||
static void *__pickerDelegate;
|
static void *__pickerDelegate;
|
||||||
|
@ -140,10 +140,10 @@ Path DarwinFileSystemServices::appropriateMemoryStickDirectoryToUse() {
|
|||||||
if (userPreferred)
|
if (userPreferred)
|
||||||
return Path(userPreferred.UTF8String);
|
return Path(userPreferred.UTF8String);
|
||||||
|
|
||||||
return __defaultMemoryStickPath();
|
return defaultMemoryStickPath();
|
||||||
}
|
}
|
||||||
|
|
||||||
Path DarwinFileSystemServices::__defaultMemoryStickPath() {
|
Path DarwinFileSystemServices::defaultMemoryStickPath() {
|
||||||
#if PPSSPP_PLATFORM(IOS)
|
#if PPSSPP_PLATFORM(IOS)
|
||||||
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
|
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
|
||||||
objectAtIndex:0];
|
objectAtIndex:0];
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
#include "UI/MemStickScreen.h"
|
#include "UI/MemStickScreen.h"
|
||||||
#include "UI/Theme.h"
|
#include "UI/Theme.h"
|
||||||
#include "UI/RetroAchievementScreens.h"
|
#include "UI/RetroAchievementScreens.h"
|
||||||
|
#include "UI/OnScreenDisplay.h"
|
||||||
|
|
||||||
#include "Common/File/FileUtil.h"
|
#include "Common/File/FileUtil.h"
|
||||||
#include "Common/File/AndroidContentURI.h"
|
#include "Common/File/AndroidContentURI.h"
|
||||||
@ -122,6 +123,17 @@ static bool SupportsCustomDriver() {
|
|||||||
|
|
||||||
#endif
|
#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)
|
GameSettingsScreen::GameSettingsScreen(const Path &gamePath, std::string gameID, bool editThenRestore)
|
||||||
: TabbedUIDialogScreenWithGameBackground(gamePath), gameID_(gameID), editThenRestore_(editThenRestore) {
|
: TabbedUIDialogScreenWithGameBackground(gamePath), gameID_(gameID), editThenRestore_(editThenRestore) {
|
||||||
prevInflightFrames_ = g_Config.iInflightFrames;
|
prevInflightFrames_ = g_Config.iInflightFrames;
|
||||||
@ -1113,7 +1125,20 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if PPSSPP_PLATFORM(MAC) || PPSSPP_PLATFORM(IOS)
|
#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
|
#endif
|
||||||
|
|
||||||
#if PPSSPP_PLATFORM(ANDROID)
|
#if PPSSPP_PLATFORM(ANDROID)
|
||||||
@ -1121,7 +1146,7 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
|
|||||||
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
|
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
|
||||||
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
|
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
|
||||||
memstickPath->SetEnabled(!PSP_IsInited());
|
memstickPath->SetEnabled(!PSP_IsInited());
|
||||||
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnChangeMemStickDir);
|
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnShowMemstickScreen);
|
||||||
|
|
||||||
// Display USB path for convenience.
|
// Display USB path for convenience.
|
||||||
std::string usbPath;
|
std::string usbPath;
|
||||||
@ -1138,7 +1163,7 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
|
|||||||
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
|
memstickDisplay_ = g_Config.memStickDirectory.ToVisualString();
|
||||||
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
|
auto memstickPath = systemSettings->Add(new ChoiceWithValueDisplay(&memstickDisplay_, sy->T("Memory Stick folder", "Memory Stick folder"), I18NCat::NONE));
|
||||||
memstickPath->SetEnabled(!PSP_IsInited());
|
memstickPath->SetEnabled(!PSP_IsInited());
|
||||||
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnChangeMemStickDir);
|
memstickPath->OnClick.Handle(this, &GameSettingsScreen::OnShowMemstickScreen);
|
||||||
#else
|
#else
|
||||||
SavePathInMyDocumentChoice = systemSettings->Add(new CheckBox(&installed_, sy->T("Save path in My Documents", "Save path in My Documents")));
|
SavePathInMyDocumentChoice = systemSettings->Add(new CheckBox(&installed_, sy->T("Save path in My Documents", "Save path in My Documents")));
|
||||||
SavePathInMyDocumentChoice->SetEnabled(!PSP_IsInited());
|
SavePathInMyDocumentChoice->SetEnabled(!PSP_IsInited());
|
||||||
@ -1347,15 +1372,8 @@ UI::EventReturn GameSettingsScreen::OnJitAffectingSetting(UI::EventParams &e) {
|
|||||||
return UI::EVENT_DONE;
|
return UI::EVENT_DONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
UI::EventReturn GameSettingsScreen::OnChangeMemStickDir(UI::EventParams &e) {
|
UI::EventReturn GameSettingsScreen::OnShowMemstickScreen(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
|
|
||||||
screenManager()->push(new MemStickScreen(false));
|
screenManager()->push(new MemStickScreen(false));
|
||||||
#endif
|
|
||||||
return UI::EVENT_DONE;
|
return UI::EVENT_DONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1763,6 +1781,7 @@ void DeveloperToolsScreen::CreateViews() {
|
|||||||
auto a = GetI18NCategory(I18NCat::AUDIO);
|
auto a = GetI18NCategory(I18NCat::AUDIO);
|
||||||
auto sy = GetI18NCategory(I18NCat::SYSTEM);
|
auto sy = GetI18NCategory(I18NCat::SYSTEM);
|
||||||
auto ps = GetI18NCategory(I18NCat::POSTSHADERS);
|
auto ps = GetI18NCategory(I18NCat::POSTSHADERS);
|
||||||
|
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
|
||||||
|
|
||||||
AddStandardBack(root_);
|
AddStandardBack(root_);
|
||||||
|
|
||||||
@ -1882,6 +1901,15 @@ void DeveloperToolsScreen::CreateViews() {
|
|||||||
});
|
});
|
||||||
#endif
|
#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" };
|
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()));
|
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; });
|
ffMode->SetEnabledFunc([]() { return !g_Config.bVSync; });
|
||||||
|
@ -103,7 +103,7 @@ private:
|
|||||||
UI::EventReturn OnMicDeviceChange(UI::EventParams& e);
|
UI::EventReturn OnMicDeviceChange(UI::EventParams& e);
|
||||||
UI::EventReturn OnAudioDevice(UI::EventParams &e);
|
UI::EventReturn OnAudioDevice(UI::EventParams &e);
|
||||||
UI::EventReturn OnJitAffectingSetting(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)
|
#if defined(_WIN32) && !PPSSPP_PLATFORM(UWP)
|
||||||
UI::EventReturn OnSavePathMydoc(UI::EventParams &e);
|
UI::EventReturn OnSavePathMydoc(UI::EventParams &e);
|
||||||
UI::EventReturn OnSavePathOther(UI::EventParams &e);
|
UI::EventReturn OnSavePathOther(UI::EventParams &e);
|
||||||
|
@ -157,7 +157,7 @@ void MemStickScreen::CreateViews() {
|
|||||||
using namespace UI;
|
using namespace UI;
|
||||||
|
|
||||||
auto di = GetI18NCategory(I18NCat::DIALOG);
|
auto di = GetI18NCategory(I18NCat::DIALOG);
|
||||||
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
|
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
|
||||||
|
|
||||||
Margins actionMenuMargins(15, 0, 15, 0);
|
Margins actionMenuMargins(15, 0, 15, 0);
|
||||||
|
|
||||||
@ -174,12 +174,12 @@ void MemStickScreen::CreateViews() {
|
|||||||
|
|
||||||
if (initialSetup_) {
|
if (initialSetup_) {
|
||||||
mainColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 12.0f, 0.0f)));
|
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 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)));
|
mainColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 18.0f, 0.0f)));
|
||||||
|
|
||||||
ViewGroup *subColumns = new LinearLayoutList(ORIENT_HORIZONTAL);
|
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.
|
// Trying to avoid needing a scroll view, so only showing the explanation for one option at a time.
|
||||||
#if !PPSSPP_PLATFORM(UWP)
|
#if !PPSSPP_PLATFORM(UWP)
|
||||||
if (!System_GetPropertyBool(SYSPROP_ANDROID_SCOPED_STORAGE)) {
|
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) {
|
if (choice_ == CHOICE_STORAGE_ROOT) {
|
||||||
AddExplanation(leftColumn, (MemStickScreen::Choice)choice_);
|
AddExplanation(leftColumn, (MemStickScreen::Choice)choice_);
|
||||||
}
|
}
|
||||||
@ -203,30 +203,30 @@ void MemStickScreen::CreateViews() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (storageBrowserWorking_) {
|
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.
|
// TODO: Show current folder here if we have one set.
|
||||||
} else {
|
} else {
|
||||||
leftColumn->Add(new RadioButton(&choice_, CHOICE_SET_MANUAL, iz->T("Manually specify PSP folder")))->OnClick.Handle(this, &MemStickScreen::OnChoiceClick);
|
leftColumn->Add(new RadioButton(&choice_, CHOICE_SET_MANUAL, ms->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(ms->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 TextView(ms->T("DataCanBeShared", "Data can be shared between PPSSPP regular/Gold.")))->SetBullet(true);
|
||||||
// TODO: Show current folder here if we have one set.
|
// 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);
|
errorNoticeView_->SetVisibility(UI::V_GONE);
|
||||||
|
|
||||||
if (choice_ == CHOICE_BROWSE_FOLDER || choice_ == CHOICE_SET_MANUAL) {
|
if (choice_ == CHOICE_BROWSE_FOLDER || choice_ == CHOICE_SET_MANUAL) {
|
||||||
UI::View *extraView = nullptr;
|
UI::View *extraView = nullptr;
|
||||||
if (!g_Config.memStickDirectory.empty()) {
|
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);
|
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_) {
|
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);
|
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);
|
rightColumnItems->Add(new UI::Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack);
|
||||||
}
|
}
|
||||||
if (System_GetPropertyInt(SYSPROP_DEVICE_TYPE) != DEVICE_TYPE_TV) {
|
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_);
|
INFO_LOG(Log::System, "MemStickScreen: initialSetup=%d", (int)initialSetup_);
|
||||||
@ -420,16 +420,17 @@ UI::EventReturn MemStickScreen::Browse(UI::EventParams ¶ms) {
|
|||||||
auto mm = GetI18NCategory(I18NCat::MAINMENU);
|
auto mm = GetI18NCategory(I18NCat::MAINMENU);
|
||||||
System_BrowseForFolder(GetRequesterToken(), mm->T("Choose folder"), g_Config.memStickDirectory, [=](const std::string &value, int) {
|
System_BrowseForFolder(GetRequesterToken(), mm->T("Choose folder"), g_Config.memStickDirectory, [=](const std::string &value, int) {
|
||||||
Path pendingMemStickFolder = Path(value);
|
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.
|
// Browse finished. Let's pop up the confirmation dialog.
|
||||||
if (!pendingMemStickFolder.empty() && pendingMemStickFolder == g_Config.memStickDirectory && File::IsDirectory(pendingMemStickFolder)) {
|
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.
|
// 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;
|
done_ = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
errorNoticeView_->SetVisibility(UI::V_GONE);
|
errorNoticeView_->SetVisibility(UI::V_GONE);
|
||||||
|
|
||||||
screenManager()->push(new ConfirmMemstickMoveScreen(pendingMemStickFolder, initialSetup_));
|
screenManager()->push(new ConfirmMemstickMoveScreen(pendingMemStickFolder, initialSetup_));
|
||||||
}, [=]() {
|
}, [=]() {
|
||||||
errorNoticeView_->SetVisibility(UI::V_VISIBLE);
|
errorNoticeView_->SetVisibility(UI::V_VISIBLE);
|
||||||
@ -474,7 +475,7 @@ ConfirmMemstickMoveScreen::~ConfirmMemstickMoveScreen() {
|
|||||||
void ConfirmMemstickMoveScreen::CreateViews() {
|
void ConfirmMemstickMoveScreen::CreateViews() {
|
||||||
using namespace UI;
|
using namespace UI;
|
||||||
auto sy = GetI18NCategory(I18NCat::SYSTEM);
|
auto sy = GetI18NCategory(I18NCat::SYSTEM);
|
||||||
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
|
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
|
||||||
|
|
||||||
root_ = new LinearLayout(ORIENT_HORIZONTAL);
|
root_ = new LinearLayout(ORIENT_HORIZONTAL);
|
||||||
|
|
||||||
@ -492,17 +493,17 @@ void ConfirmMemstickMoveScreen::CreateViews() {
|
|||||||
free_disk_space(newMemstickFolder_, freeSpaceNew);
|
free_disk_space(newMemstickFolder_, freeSpaceNew);
|
||||||
free_disk_space(oldMemstickFolder, freeSpaceOld);
|
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_) {
|
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));
|
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));
|
leftColumn->Add(new TextView(newFreeSpaceText, ALIGN_LEFT, false));
|
||||||
if (existingFilesInNewFolder_) {
|
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_) {
|
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()) {
|
if (!error_.empty()) {
|
||||||
@ -510,9 +511,9 @@ void ConfirmMemstickMoveScreen::CreateViews() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!oldMemstickFolder.empty()) {
|
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(oldMemstickFolder.ToVisualString(), ALIGN_LEFT, false));
|
||||||
rightColumn->Add(new TextView(oldFreeSpaceText, ALIGN_LEFT, false));
|
rightColumn->Add(new TextView(oldFreeSpaceText, ALIGN_LEFT, false));
|
||||||
}
|
}
|
||||||
@ -525,7 +526,7 @@ void ConfirmMemstickMoveScreen::CreateViews() {
|
|||||||
|
|
||||||
if (!moveDataTask_) {
|
if (!moveDataTask_) {
|
||||||
if (!initialSetup_) {
|
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);
|
auto di = GetI18NCategory(I18NCat::DIALOG);
|
||||||
@ -541,7 +542,7 @@ UI::EventReturn ConfirmMemstickMoveScreen::OnMoveDataClick(UI::EventParams ¶
|
|||||||
|
|
||||||
void ConfirmMemstickMoveScreen::update() {
|
void ConfirmMemstickMoveScreen::update() {
|
||||||
UIDialogScreenWithBackground::update();
|
UIDialogScreenWithBackground::update();
|
||||||
auto iz = GetI18NCategory(I18NCat::MEMSTICK);
|
auto ms = GetI18NCategory(I18NCat::MEMSTICK);
|
||||||
|
|
||||||
if (moveDataTask_) {
|
if (moveDataTask_) {
|
||||||
if (progressView_) {
|
if (progressView_) {
|
||||||
@ -552,12 +553,12 @@ void ConfirmMemstickMoveScreen::update() {
|
|||||||
|
|
||||||
if (result) {
|
if (result) {
|
||||||
if (result->success) {
|
if (result->success) {
|
||||||
progressReporter_.SetProgress(iz->T("Done!"));
|
progressReporter_.SetProgress(ms->T("Done!"));
|
||||||
INFO_LOG(Log::System, "Move data task finished successfully!");
|
INFO_LOG(Log::System, "Move data task finished successfully!");
|
||||||
// Succeeded!
|
// Succeeded!
|
||||||
FinishFolderMove();
|
FinishFolderMove();
|
||||||
} else {
|
} 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!");
|
INFO_LOG(Log::System, "Move data task failed!");
|
||||||
// What do we do here? We might be in the middle of a move... Bad.
|
// What do we do here? We might be in the middle of a move... Bad.
|
||||||
RecreateViews();
|
RecreateViews();
|
||||||
|
@ -394,6 +394,7 @@ DeleteFailed = غير قادر علي مسح البيانات.
|
|||||||
Deleting = يمسح\nمن فضلك إنتظر...
|
Deleting = يمسح\nمن فضلك إنتظر...
|
||||||
Disable All = عطل الكل
|
Disable All = عطل الكل
|
||||||
Disabled = معطل
|
Disabled = معطل
|
||||||
|
Done! = !تم
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = تعديل
|
Edit = تعديل
|
||||||
Enable All = فعل الكل
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = ...يتم الحذف
|
Deleting... = ...يتم الحذف
|
||||||
Done! = !تم
|
|
||||||
EasyUSBAccess = USBالوصول السهل للـ
|
EasyUSBAccess = USBالوصول السهل للـ
|
||||||
Failed to move some files! = فشل في نقل بعض الملفات
|
Failed to move some files! = فشل في نقل بعض الملفات
|
||||||
Failed to save config = فشل في حفظ الإعدادات
|
Failed to save config = فشل في حفظ الإعدادات
|
||||||
@ -880,6 +880,7 @@ Free space = المساحة المتوفرة
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
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
|
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
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Silinir\nZəhmət Olmasa Gözləyin...
|
Deleting = Silinir\nZəhmət Olmasa Gözləyin...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Изтриване\nМоля изчакайте...
|
Deleting = Изтриване\nМоля изчакайте...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Les dades no s'han pogut borrar.
|
|||||||
Deleting = Esborrant\nEspera un moment...
|
Deleting = Esborrant\nEspera un moment...
|
||||||
Disable All = Desactivar tot
|
Disable All = Desactivar tot
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Volcats
|
Dumps = Volcats
|
||||||
Edit = Editar
|
Edit = Editar
|
||||||
Enable All = Activar tot
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Nelze smazat data.
|
|||||||
Deleting = Probíhá mazání\nČekejte prosím...
|
Deleting = Probíhá mazání\nČekejte prosím...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Ikke muligt at slette data.
|
|||||||
Deleting = Sletter\nVent venligst...
|
Deleting = Sletter\nVent venligst...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Daten konnten nicht gelöscht werden.
|
|||||||
Deleting = Löschen\nBitte warten...
|
Deleting = Löschen\nBitte warten...
|
||||||
Disable All = Alle deaktivieren
|
Disable All = Alle deaktivieren
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Alle aktivieren
|
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.
|
DataWillBeLostOnUninstall = Warnung! Dateien gehen verloren beim deinstallieren von PPSSPP.
|
||||||
DataWillStay = Dateien gehen NICHT verloren beim deinstallieren von PPSSPP.
|
DataWillStay = Dateien gehen NICHT verloren beim deinstallieren von PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Konnte ein paar Dateien nicht bewegen!
|
Failed to move some files! = Konnte ein paar Dateien nicht bewegen!
|
||||||
Failed to save config = Konnte save config nicht speichern
|
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
|
Manually specify PSP folder = Manuellen PSP Folder spezifizieren
|
||||||
MemoryStickDescription = Wähle Speicher Ort(Memory Stick)
|
MemoryStickDescription = Wähle Speicher Ort(Memory Stick)
|
||||||
Move Data = Bewege Datei
|
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
|
Selected PSP Data Folder = Gewählter PSP Daten Folder
|
||||||
No data will be changed = Keine Datei wird verändert
|
No data will be changed = Keine Datei wird verändert
|
||||||
PPSSPP will restart after the change = PPSSPP wird nach der Änderung neugestartet
|
PPSSPP will restart after the change = PPSSPP wird nach der Änderung neugestartet
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Dihapusmi\nTajammi...
|
Deleting = Dihapusmi\nTajammi...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -410,6 +410,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Deleting\nPlease wait...
|
Deleting = Deleting\nPlease wait...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP
|
DataWillStay = Data will stay even if you uninstall PPSSPP
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -1057,6 +1057,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
Skip for now = Skip for now
|
Skip for now = Skip for now
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = los datos no se pudieron borrar.
|
|||||||
Deleting = Borrando\nEspera un momento...
|
Deleting = Borrando\nEspera un momento...
|
||||||
Disable All = Desactivar todo
|
Disable All = Desactivar todo
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = ¡Hecho!
|
||||||
Dumps = Volcados
|
Dumps = Volcados
|
||||||
Edit = Editar
|
Edit = Editar
|
||||||
Enable All = Activar todo
|
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!
|
DataWillBeLostOnUninstall = ¡AVISO: los datos se perderán una vez desinstales PPSSPP!
|
||||||
DataWillStay = Los datos se mantendrán aunque desinstales PPSSPP.
|
DataWillStay = Los datos se mantendrán aunque desinstales PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = ¡Hecho!
|
|
||||||
EasyUSBAccess = Acceso fácil USB
|
EasyUSBAccess = Acceso fácil USB
|
||||||
Failed to move some files! = ¡Error al mover algunos archivos!
|
Failed to move some files! = ¡Error al mover algunos archivos!
|
||||||
Failed to save config = ¡Error al guardar la configuración!
|
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
|
Manually specify PSP folder = Especificar carpeta de PSP manualmente
|
||||||
MemoryStickDescription = Elegir dónde mantener los datos de PSP (Memory Stick)
|
MemoryStickDescription = Elegir dónde mantener los datos de PSP (Memory Stick)
|
||||||
Move Data = Mover datos
|
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
|
Selected PSP Data Folder = Seleccionar carpeta de datos PSP
|
||||||
No data will be changed = Ningún dato será cambiado
|
No data will be changed = Ningún dato será cambiado
|
||||||
PPSSPP will restart after the change = PPSSPP se reiniciará después del cambio
|
PPSSPP will restart after the change = PPSSPP se reiniciará después del cambio
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Los archivos no se pudieron borrar.
|
|||||||
Deleting = Borrando\nPor favor espere...
|
Deleting = Borrando\nPor favor espere...
|
||||||
Disable All = Apagar todo
|
Disable All = Apagar todo
|
||||||
Disabled = Deshabilitado
|
Disabled = Deshabilitado
|
||||||
|
Done! = ¡Hecho!
|
||||||
Dumps = Volcados/dumpeos
|
Dumps = Volcados/dumpeos
|
||||||
Edit = Editar
|
Edit = Editar
|
||||||
Enable All = Activar todo
|
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!
|
DataWillBeLostOnUninstall = ADVERTENCIA: ¡Datos pueden borrarse al desinstalar PPSSPP!
|
||||||
DataWillStay = Datos pueden mantenerse incluso si desinstalas PPSSPP.
|
DataWillStay = Datos pueden mantenerse incluso si desinstalas PPSSPP.
|
||||||
Deleting... = Eliminando...
|
Deleting... = Eliminando...
|
||||||
Done! = ¡Hecho!
|
|
||||||
EasyUSBAccess = Acceso USB fácil
|
EasyUSBAccess = Acceso USB fácil
|
||||||
Failed to move some files! = ¡Falló al mover algunos archivos!
|
Failed to move some files! = ¡Falló al mover algunos archivos!
|
||||||
Failed to save config = Falló al guardar configuración
|
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
|
Manually specify PSP folder = Especificar manualmente la carpeta PSP
|
||||||
MemoryStickDescription = Seleccionar donde se guarda los datos de PSP (Memory Stick)
|
MemoryStickDescription = Seleccionar donde se guarda los datos de PSP (Memory Stick)
|
||||||
Move Data = Mover datos
|
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
|
Selected PSP Data Folder = Carpeta de datos PSP seleccionado
|
||||||
No data will be changed = Sin cambios en los datos
|
No data will be changed = Sin cambios en los datos
|
||||||
PPSSPP will restart after the change = PPSSPP se reiniciará trás el cambio.
|
PPSSPP will restart after the change = PPSSPP se reiniciará trás el cambio.
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = در حال حذف کردن\n...منتظر بمانید
|
Deleting = در حال حذف کردن\n...منتظر بمانید
|
||||||
Disable All = غیر فعال کردن همه؟
|
Disable All = غیر فعال کردن همه؟
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = انجام شد!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = ویرایش
|
Edit = ویرایش
|
||||||
Enable All = فعال کردن همه؟
|
Enable All = فعال کردن همه؟
|
||||||
@ -864,7 +865,6 @@ DataCannotBeShared = نمیتوان دادهها را بین PPSSPP معم
|
|||||||
DataWillBeLostOnUninstall = هشدار! وقتی PPSSPP را حذف کنید دادههایتان از بین خواهند رفت!
|
DataWillBeLostOnUninstall = هشدار! وقتی PPSSPP را حذف کنید دادههایتان از بین خواهند رفت!
|
||||||
DataWillStay = حتی اگر PPSSPP را حذف کنید دادههایتان باقی میماند.
|
DataWillStay = حتی اگر PPSSPP را حذف کنید دادههایتان باقی میماند.
|
||||||
Deleting... = درحال حذف...
|
Deleting... = درحال حذف...
|
||||||
Done! = انجام شد!
|
|
||||||
EasyUSBAccess = دسترسی راحت به USB
|
EasyUSBAccess = دسترسی راحت به USB
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = ذخیرهٔ پیکربندی شکست خورد
|
Failed to save config = ذخیرهٔ پیکربندی شکست خورد
|
||||||
@ -872,6 +872,7 @@ Free space = فضای خالی
|
|||||||
Manually specify PSP folder = به طور دستی پوشه PSP را مشخص کنید
|
Manually specify PSP folder = به طور دستی پوشه PSP را مشخص کنید
|
||||||
MemoryStickDescription = محل نگهداری دادههای PSP را انتخاب کنید (کارت حافظه)
|
MemoryStickDescription = محل نگهداری دادههای PSP را انتخاب کنید (کارت حافظه)
|
||||||
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 = پوشهٔ دادهٔ PSP انتخاب شد.
|
Selected PSP Data Folder = پوشهٔ دادهٔ PSP انتخاب شد.
|
||||||
No data will be changed = هیچ دادهای تغییر نخواهد کرد
|
No data will be changed = هیچ دادهای تغییر نخواهد کرد
|
||||||
PPSSPP will restart after the change = بعد از تغییر PPSSPP بازراهاندازی خواهد شد
|
PPSSPP will restart after the change = بعد از تغییر PPSSPP بازراهاندازی خواهد شد
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Poistetaan\nOdota...
|
Deleting = Poistetaan\nOdota...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Valmis!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Varoitus! Tiedot häviävät, kun poistat PPSSPP:n!
|
||||||
DataWillStay = Tiedot säilyvät jopa jos poistat PPSSPP:n.
|
DataWillStay = Tiedot säilyvät jopa jos poistat PPSSPP:n.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Valmis!
|
|
||||||
EasyUSBAccess = Helppo USB-pääsy
|
EasyUSBAccess = Helppo USB-pääsy
|
||||||
Failed to move some files! = Joitain tiedostoja ei voitu siirtää!
|
Failed to move some files! = Joitain tiedostoja ei voitu siirtää!
|
||||||
Failed to save config = Asetusten tallentaminen epäonnistui
|
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
|
Manually specify PSP folder = Määritä PSP-kansio manuaalisesti
|
||||||
MemoryStickDescription = Valitse minne haluat säilyttää PSP-tiedot (muistikortti)
|
MemoryStickDescription = Valitse minne haluat säilyttää PSP-tiedot (muistikortti)
|
||||||
Move Data = Siirrä tiedot
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = Mitään tietoja ei muuteta
|
No data will be changed = Mitään tietoja ei muuteta
|
||||||
PPSSPP will restart after the change = PPSSPP käynnistyy uudelleen muutoksen jälkeen
|
PPSSPP will restart after the change = PPSSPP käynnistyy uudelleen muutoksen jälkeen
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Suppression impossible.
|
|||||||
Deleting = Suppression\nVeuillez patienter...
|
Deleting = Suppression\nVeuillez patienter...
|
||||||
Disable All = Tout désactiver
|
Disable All = Tout désactiver
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Terminé!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Éditer
|
Edit = Éditer
|
||||||
Enable All = Tout activer
|
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!
|
DataWillBeLostOnUninstall = Avertissement! Les données seront perdues lorsque vous désinstallez PPSSPP!
|
||||||
DataWillStay = Les données resteront même si vous désinstallez PPSSPP.
|
DataWillStay = Les données resteront même si vous désinstallez PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Terminé!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Impossible de déplacer certains fichiers!
|
Failed to move some files! = Impossible de déplacer certains fichiers!
|
||||||
Failed to save config = Échec de l’enregistrement de la configuration
|
Failed to save config = Échec de l’enregistrement de la configuration
|
||||||
@ -872,6 +872,7 @@ Free space = Espace libre
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = Aucune donnée ne sera modifiée
|
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
|
PPSSPP will restart after the change = PPSSPP redémarrera après le changement
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Os datos non se puideron borrar.
|
|||||||
Deleting = Borrando\nEspera un momento...
|
Deleting = Borrando\nEspera un momento...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = ΑΔΥΝΑΜΙΑ ΔΙΑΓΡΑΦΗΣ ΔΕΔΟΜΕΝΩΝ.
|
|||||||
Deleting = ΔΙΑΓΡΑΦΗ\nΠΑΡΑΚΑΛΩ ΠΕΡΙΜΕΝΕΤΕ...
|
Deleting = ΔΙΑΓΡΑΦΗ\nΠΑΡΑΚΑΛΩ ΠΕΡΙΜΕΝΕΤΕ...
|
||||||
Disable All = ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ ΟΛΩΝ
|
Disable All = ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ ΟΛΩΝ
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = ...ןתמה אנא ...קחומ
|
Deleting = ...ןתמה אנא ...קחומ
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = ...ןתמה אנא ...קחומ
|
Deleting = ...ןתמה אנא ...קחומ
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Nije moguće izbrisati datu.
|
|||||||
Deleting = Brisanje\nPričekajte...
|
Deleting = Brisanje\nPričekajte...
|
||||||
Disable All = Isključi sve
|
Disable All = Isključi sve
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Uključi sve
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Törlés sikertelen.
|
|||||||
Deleting = Törlés\nKérlek várj...
|
Deleting = Törlés\nKérlek várj...
|
||||||
Disable All = Mind kikapcsolása
|
Disable All = Mind kikapcsolása
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Mind bekapcsolása
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Tidak dapat menghapus data.
|
|||||||
Deleting = Menghapus\nMohon tunggu...
|
Deleting = Menghapus\nMohon tunggu...
|
||||||
Disable All = Nonaktifkan semua
|
Disable All = Nonaktifkan semua
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Selesai!
|
||||||
Dumps = Buang
|
Dumps = Buang
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Aktifkan semua
|
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!
|
DataWillBeLostOnUninstall = Peringatan! Data akan hilang ketika Anda menghapus PPSSPP!
|
||||||
DataWillStay = Data akan tetap ada meskipun Anda menghapus PPSSPP.
|
DataWillStay = Data akan tetap ada meskipun Anda menghapus PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Selesai!
|
|
||||||
EasyUSBAccess = Akses mudah USB
|
EasyUSBAccess = Akses mudah USB
|
||||||
Failed to move some files! = Gagal memindahkan beberapa berkas!
|
Failed to move some files! = Gagal memindahkan beberapa berkas!
|
||||||
Failed to save config = Gagal menyimpan konfigurasi
|
Failed to save config = Gagal menyimpan konfigurasi
|
||||||
@ -872,6 +872,7 @@ Free space = Penyimpanan bebas
|
|||||||
Manually specify PSP folder = Tentukan berkas PSP secara manual
|
Manually specify PSP folder = Tentukan berkas PSP secara manual
|
||||||
MemoryStickDescription = Pilih tempat menyimpan data PSP (Memory Stick)
|
MemoryStickDescription = Pilih tempat menyimpan data PSP (Memory Stick)
|
||||||
Move Data = Pindah data
|
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
|
Selected PSP Data Folder = Pilih berkas data PSP
|
||||||
No data will be changed = Tidak ada data yang akan diubah
|
No data will be changed = Tidak ada data yang akan diubah
|
||||||
PPSSPP will restart after the change = PPSSPP akan mulai ulang setelah perubahan
|
PPSSPP will restart after the change = PPSSPP akan mulai ulang setelah perubahan
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Impossibile cancellare i dati.
|
|||||||
Deleting = Cancellazione in corso.\nAttendere, prego...
|
Deleting = Cancellazione in corso.\nAttendere, prego...
|
||||||
Disable All = Disattiva tutto
|
Disable All = Disattiva tutto
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Fatto!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Modifica
|
Edit = Modifica
|
||||||
Enable All = Attiva tutto
|
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!
|
DataWillBeLostOnUninstall = Attenzione! I dati andranno persi quando disinstalli PPSSPP!
|
||||||
DataWillStay = I dati rimarranno anche se disinstalli PPSSPP.
|
DataWillStay = I dati rimarranno anche se disinstalli PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Fatto!
|
|
||||||
EasyUSBAccess = Facile accesso tramite USB
|
EasyUSBAccess = Facile accesso tramite USB
|
||||||
Failed to move some files! = Il trasferimento di alcuni file è fallito!
|
Failed to move some files! = Il trasferimento di alcuni file è fallito!
|
||||||
Failed to save config = Il salvataggio della configurazione è 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
|
Manually specify PSP folder = Seleziona manualmente la cartella PSP
|
||||||
MemoryStickDescription = Scegli dove tenere i dati PSP (Memory Stick)
|
MemoryStickDescription = Scegli dove tenere i dati PSP (Memory Stick)
|
||||||
Move Data = Trasferisci i dati
|
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
|
Selected PSP Data Folder = Seleziona la cartella per i dati PSP
|
||||||
No data will be changed = Nessun dato sarà modificato
|
No data will be changed = Nessun dato sarà modificato
|
||||||
PPSSPP will restart after the change = PPSSPP verrà riavviato dopo la modifica
|
PPSSPP will restart after the change = PPSSPP verrà riavviato dopo la modifica
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = データを削除できませんでした。
|
|||||||
Deleting = 削除中です。\nしばらくお待ちください...
|
Deleting = 削除中です。\nしばらくお待ちください...
|
||||||
Disable All = 全て無効にする
|
Disable All = 全て無効にする
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = 完了!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = 編集
|
Edit = 編集
|
||||||
Enable All = 全て有効にする
|
Enable All = 全て有効にする
|
||||||
@ -1040,13 +1041,13 @@ DataWillStay = データはPPSSPPをアンインストールしても残りま
|
|||||||
DataCanBeShared = 通常版/ゴールド間でのデータの共有が可能です。
|
DataCanBeShared = 通常版/ゴールド間でのデータの共有が可能です。
|
||||||
DataCannotBeShared = 通常版/ゴールド間でのデータの共有は「できません」。
|
DataCannotBeShared = 通常版/ゴールド間でのデータの共有は「できません」。
|
||||||
Deleting... = 削除中...
|
Deleting... = 削除中...
|
||||||
Done! = 完了!
|
|
||||||
EasyUSBAccess = PCとのUSB接続で簡単にフォルダにアクセスできます。
|
EasyUSBAccess = PCとのUSB接続で簡単にフォルダにアクセスできます。
|
||||||
Failed to move some files! = いくつかのファイルの移動に失敗しました!
|
Failed to move some files! = いくつかのファイルの移動に失敗しました!
|
||||||
Failed to save config = コンフィグの保存に失敗しました!
|
Failed to save config = コンフィグの保存に失敗しました!
|
||||||
Free space = 空き容量
|
Free space = 空き容量
|
||||||
Manually specify PSP folder = PSPフォルダーを手動で設定する
|
Manually specify PSP folder = PSPフォルダーを手動で設定する
|
||||||
Move Data = データ移動
|
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 = データに変更はありません
|
No data will be changed = データに変更はありません
|
||||||
PPSSPP will restart after the change = PPSSPPは変更後に再起動します
|
PPSSPP will restart after the change = PPSSPPは変更後に再起動します
|
||||||
Selected PSP Data Folder = 選択されたPSPフォルダー
|
Selected PSP Data Folder = 選択されたPSPフォルダー
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = ora dapat mbusek data.
|
|||||||
Deleting = Mbusek\nMohon nteni...
|
Deleting = Mbusek\nMohon nteni...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = 데이터를 삭제할 수 없습니다.
|
|||||||
Deleting = 삭제 중\n잠시만 기다려 주세요...
|
Deleting = 삭제 중\n잠시만 기다려 주세요...
|
||||||
Disable All = 모두 비활성화
|
Disable All = 모두 비활성화
|
||||||
Disabled = 비활성화
|
Disabled = 비활성화
|
||||||
|
Done! = 완료!
|
||||||
Dumps = 덤프
|
Dumps = 덤프
|
||||||
Edit = 편집
|
Edit = 편집
|
||||||
Enable All = 모두 활성화
|
Enable All = 모두 활성화
|
||||||
@ -1025,7 +1026,6 @@ DataCannotBeShared = PPSSPP 레귤러/골드 간에 데이터를 공유할 수
|
|||||||
DataWillBeLostOnUninstall = 경고! PPSSPP를 제거하면 데이터가 손실됩니다!
|
DataWillBeLostOnUninstall = 경고! PPSSPP를 제거하면 데이터가 손실됩니다!
|
||||||
DataWillStay = PPSSPP를 제거해도 데이터는 유지됩니다.
|
DataWillStay = PPSSPP를 제거해도 데이터는 유지됩니다.
|
||||||
Deleting... = 삭제 중...
|
Deleting... = 삭제 중...
|
||||||
Done! = 완료!
|
|
||||||
EasyUSBAccess = 쉬운 USB 접속
|
EasyUSBAccess = 쉬운 USB 접속
|
||||||
Failed to move some files! = 일부 파일을 이동하지 못했습니다!
|
Failed to move some files! = 일부 파일을 이동하지 못했습니다!
|
||||||
Failed to save config = 구성을 저장하지 못했습니다.
|
Failed to save config = 구성을 저장하지 못했습니다.
|
||||||
@ -1033,6 +1033,7 @@ Free space = 여유 공간
|
|||||||
Manually specify PSP folder = 수동으로 PSP 폴더 지정
|
Manually specify PSP folder = 수동으로 PSP 폴더 지정
|
||||||
MemoryStickDescription = PSP 데이터를 보관할 위치 선택 (메모리 스틱)
|
MemoryStickDescription = PSP 데이터를 보관할 위치 선택 (메모리 스틱)
|
||||||
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 = 선택한 PSP 데이터 폴더
|
Selected PSP Data Folder = 선택한 PSP 데이터 폴더
|
||||||
Skip for now = 일단은 건너뜀
|
Skip for now = 일단은 건너뜀
|
||||||
No data will be changed = 데이터가 변경되지 않습니다.
|
No data will be changed = 데이터가 변경되지 않습니다.
|
||||||
|
@ -400,6 +400,7 @@ DeleteFailed = نەتوانرا زانیاریەکان بسڕدرێنەوە.
|
|||||||
Deleting = دەسڕدرێتەوە\nتکایە چاوەڕوان بە...
|
Deleting = دەسڕدرێتەوە\nتکایە چاوەڕوان بە...
|
||||||
Disable All = لە کارخستنی هەمووی
|
Disable All = لە کارخستنی هەمووی
|
||||||
Disabled = لە کارخرا
|
Disabled = لە کارخرا
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = دەستکاری کردن
|
Edit = دەستکاری کردن
|
||||||
Enable All = بەکارپێکردنی هەمووی
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP
|
DataWillStay = Data will stay even if you uninstall PPSSPP
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -1047,6 +1047,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
Skip for now = Skip for now
|
Skip for now = Skip for now
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = ບໍ່ສາມາດລຶບຂໍ້ມູນ.
|
|||||||
Deleting = ກຳລັງລຶບຂໍ້ມູນ\nກະລຸນາຖ້າ..
|
Deleting = ກຳລັງລຶບຂໍ້ມູນ\nກະລຸນາຖ້າ..
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Neįmanoma ištrinti duomenų.
|
|||||||
Deleting = Ištrina\nPrašome palaukti...
|
Deleting = Ištrina\nPrašome palaukti...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Pemadaman data gagal.
|
|||||||
Deleting = Memadam\nSila tunggu...
|
Deleting = Memadam\nSila tunggu...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Kan de data niet verwijderen.
|
|||||||
Deleting = Bezig met verwijderen...\nEen ogenblik geduld.
|
Deleting = Bezig met verwijderen...\nEen ogenblik geduld.
|
||||||
Disable All = Alles uitschakelen
|
Disable All = Alles uitschakelen
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Alles inschakelen
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Unable to delete data.
|
|||||||
Deleting = Sletter\nVent litt...
|
Deleting = Sletter\nVent litt...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Nie można usunąć danych.
|
|||||||
Deleting = Usuwanie\nProszę czekać...
|
Deleting = Usuwanie\nProszę czekać...
|
||||||
Disable All = Wyłącz wszystko
|
Disable All = Wyłącz wszystko
|
||||||
Disabled = Wyłączono
|
Disabled = Wyłączono
|
||||||
|
Done! = Ukończono!
|
||||||
Dumps = Zrzuty
|
Dumps = Zrzuty
|
||||||
Edit = Edytuj
|
Edit = Edytuj
|
||||||
Enable All = Włącz wszystko
|
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!
|
DataWillBeLostOnUninstall = Uwaga! Utracisz wszystkie dane po odinstalowaniu PPSSPP!
|
||||||
DataWillStay = Dane zostaną na urządzeniu, nawet po odinstalowaniu PPSSPP.
|
DataWillStay = Dane zostaną na urządzeniu, nawet po odinstalowaniu PPSSPP.
|
||||||
Deleting... = Usuwanie...
|
Deleting... = Usuwanie...
|
||||||
Done! = Ukończono!
|
|
||||||
EasyUSBAccess = Łatwy dostęþ do USB
|
EasyUSBAccess = Łatwy dostęþ do USB
|
||||||
Failed to move some files! = Nie udało się przenieść niektórych plików!
|
Failed to move some files! = Nie udało się przenieść niektórych plików!
|
||||||
Failed to save config = Nie udało się zapisać ustawień
|
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
|
Manually specify PSP folder = Ustaw folder PSP ręcznie
|
||||||
MemoryStickDescription = Wybierz, gdzie chcesz umieścić dane PSP (Karta Pamięci)
|
MemoryStickDescription = Wybierz, gdzie chcesz umieścić dane PSP (Karta Pamięci)
|
||||||
Move Data = Przenieś dane
|
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
|
Selected PSP Data Folder = Wybrany folder danych PSP
|
||||||
No data will be changed = Żadne dane nie zostaną zmienione
|
No data will be changed = Żadne dane nie zostaną zmienione
|
||||||
PPSSPP will restart after the change = Po zmianie nastąpi reset PPSSPP
|
PPSSPP will restart after the change = Po zmianie nastąpi reset PPSSPP
|
||||||
|
@ -410,6 +410,7 @@ DeleteFailed = Incapaz de apagar os dados.
|
|||||||
Deleting = Apagando\nPor favor espere...
|
Deleting = Apagando\nPor favor espere...
|
||||||
Disable All = Desativar tudo
|
Disable All = Desativar tudo
|
||||||
Disabled = Desativado
|
Disabled = Desativado
|
||||||
|
Done! = Concluído!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Editar
|
Edit = Editar
|
||||||
Enable All = Ativar tudo
|
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!
|
DataWillBeLostOnUninstall = Aviso! Os dados serão perdidos quando você desinstalar o PPSSPP!
|
||||||
DataWillStay = Os dados permanecerão mesmo se você desinstalar o PPSSPP
|
DataWillStay = Os dados permanecerão mesmo se você desinstalar o PPSSPP
|
||||||
Deleting... = Apagando...
|
Deleting... = Apagando...
|
||||||
Done! = Concluído!
|
|
||||||
EasyUSBAccess = Acesso fácil ao USB
|
EasyUSBAccess = Acesso fácil ao USB
|
||||||
Failed to move some files! = Falhou em mover alguns arquivos!
|
Failed to move some files! = Falhou em mover alguns arquivos!
|
||||||
Failed to save config = Falhou em salvar a configuração
|
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
|
Manually specify PSP folder = Especificar manualmente a pasta do PSP
|
||||||
MemoryStickDescription = Escolher aonde manter os dados do PSP (Cartão de Memória)
|
MemoryStickDescription = Escolher aonde manter os dados do PSP (Cartão de Memória)
|
||||||
Move Data = Mover Dados
|
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
|
Selected PSP Data Folder = Pasta Selecionada dos Dados do PSP
|
||||||
Skip for now = Ignorar por enquanto
|
Skip for now = Ignorar por enquanto
|
||||||
No data will be changed = Nenhum dado será mudado
|
No data will be changed = Nenhum dado será mudado
|
||||||
|
@ -410,6 +410,7 @@ DeleteFailed = Não foi possível eliminar os dados.
|
|||||||
Deleting = A eliminar\nPor favor espere...
|
Deleting = A eliminar\nPor favor espere...
|
||||||
Disable All = Desativar tudo
|
Disable All = Desativar tudo
|
||||||
Disabled = Desativado
|
Disabled = Desativado
|
||||||
|
Done! = Concluído!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Editar
|
Edit = Editar
|
||||||
Enable All = Ativar tudo
|
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!
|
DataWillBeLostOnUninstall = Aviso! Os dados serão perdidos quando desinstalares o PPSSPP!
|
||||||
DataWillStay = Os dados permanecerão intactos mesmo se desinstalares o PPSSPP.
|
DataWillStay = Os dados permanecerão intactos mesmo se desinstalares o PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Concluído!
|
|
||||||
EasyUSBAccess = Acesso fácil ao USB
|
EasyUSBAccess = Acesso fácil ao USB
|
||||||
Failed to move some files! = Erro ao mover alguns ficheiros!
|
Failed to move some files! = Erro ao mover alguns ficheiros!
|
||||||
Failed to save config = Erro ao salvar a definição
|
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
|
Manually specify PSP folder = Especificar manualmente a pasta da PSP
|
||||||
MemoryStickDescription = Escolher aonde manter os dados da PSP (cartão de memória)
|
MemoryStickDescription = Escolher aonde manter os dados da PSP (cartão de memória)
|
||||||
Move Data = Mover Dados
|
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
|
Selected PSP Data Folder = Pasta Selecionada dos dados da PSP
|
||||||
Skip for now = Ignorar por enquanto
|
Skip for now = Ignorar por enquanto
|
||||||
No data will be changed = Nenhum dado será mudado
|
No data will be changed = Nenhum dado será mudado
|
||||||
|
@ -387,6 +387,7 @@ DeleteFailed = Nu s-au putut șterge datele.
|
|||||||
Deleting = Ştergere în progres\nVă rugăm așteptați...
|
Deleting = Ştergere în progres\nVă rugăm așteptați...
|
||||||
Disable All = Disable all
|
Disable All = Disable all
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Enable all
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -873,6 +873,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Не удалось удалить данные.
|
|||||||
Deleting = Удаление\nПожалуйста, подождите...
|
Deleting = Удаление\nПожалуйста, подождите...
|
||||||
Disable All = Отключить все
|
Disable All = Отключить все
|
||||||
Disabled = Отключено
|
Disabled = Отключено
|
||||||
|
Done! = Завершено!
|
||||||
Dumps = Дампы
|
Dumps = Дампы
|
||||||
Edit = Изменить
|
Edit = Изменить
|
||||||
Enable All = Включить все
|
Enable All = Включить все
|
||||||
@ -1042,7 +1043,6 @@ DataCannotBeShared = Данные НЕ МОГУТ передаваться ме
|
|||||||
DataWillBeLostOnUninstall = Внимание! Данные будут утеряны, если вы удалите PPSSPP!
|
DataWillBeLostOnUninstall = Внимание! Данные будут утеряны, если вы удалите PPSSPP!
|
||||||
DataWillStay = Данные останутся, даже если вы удалите PPSSPP
|
DataWillStay = Данные останутся, даже если вы удалите PPSSPP
|
||||||
Deleting... = Удаление...
|
Deleting... = Удаление...
|
||||||
Done! = Завершено!
|
|
||||||
EasyUSBAccess = Простой доступ к USB
|
EasyUSBAccess = Простой доступ к USB
|
||||||
Failed to move some files! = Не получилось переместить некоторые файлы!
|
Failed to move some files! = Не получилось переместить некоторые файлы!
|
||||||
Failed to save config = Не получилось сохранить настройки!
|
Failed to save config = Не получилось сохранить настройки!
|
||||||
@ -1050,6 +1050,7 @@ Free space = Свободное пространство
|
|||||||
Manually specify PSP folder = Выбрать папку PSP вручную
|
Manually specify PSP folder = Выбрать папку PSP вручную
|
||||||
MemoryStickDescription = Выберите, где хранить данные PSP (карта памяти)
|
MemoryStickDescription = Выберите, где хранить данные PSP (карта памяти)
|
||||||
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 = Выбранная папка с данными PSP
|
Selected PSP Data Folder = Выбранная папка с данными PSP
|
||||||
Skip for now = Пока пропустить
|
Skip for now = Пока пропустить
|
||||||
No data will be changed = Данные не будут изменены
|
No data will be changed = Данные не будут изменены
|
||||||
|
@ -387,6 +387,7 @@ DeleteFailed = Misslyckades ta bort data.
|
|||||||
Deleting = Tar bort\nVänta...
|
Deleting = Tar bort\nVänta...
|
||||||
Disable All = Stäng av allt
|
Disable All = Stäng av allt
|
||||||
Disabled = Av
|
Disabled = Av
|
||||||
|
Done! = Klar!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Redigera
|
Edit = Redigera
|
||||||
Enable All = Slå på allt
|
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!
|
DataWillBeLostOnUninstall = Varning! Data kommer förloras om du avinstallerar PPSSPP!
|
||||||
DataWillStay = Data stannar kvar även om du avinstallerar PPSSPP.
|
DataWillStay = Data stannar kvar även om du avinstallerar PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Klar!
|
|
||||||
EasyUSBAccess = Lätt åtkomst via USB
|
EasyUSBAccess = Lätt åtkomst via USB
|
||||||
Failed to move some files! = Misslyckades att flytta några filer!
|
Failed to move some files! = Misslyckades att flytta några filer!
|
||||||
Failed to save config = Misslyckades att spara konfiguration
|
Failed to save config = Misslyckades att spara konfiguration
|
||||||
@ -1051,6 +1051,7 @@ Free space = Ledig plats
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Välj var PSP-data ska lagras (Memory Stick)
|
MemoryStickDescription = Välj var PSP-data ska lagras (Memory Stick)
|
||||||
Move Data = Flytta data
|
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
|
Selected PSP Data Folder = Vald PSP-data-mapp
|
||||||
No data will be changed = Ingen data kommer ändras
|
No data will be changed = Ingen data kommer ändras
|
||||||
PPSSPP will restart after the change = PPSSPP kommer att starta om efter ändringen
|
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 = Savestate slot
|
||||||
Savestate slot backups = Savestate slot backups
|
Savestate slot backups = Savestate slot backups
|
||||||
Screenshots as PNG = Skärmdumpar som PNG
|
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...
|
Set UI background... = Välj UI-bakgrund...
|
||||||
Show ID = Show ID
|
Show ID = Show ID
|
||||||
Show Memory Stick folder = Visa Memory Stick-mappen
|
Show Memory Stick folder = Visa Memory Stick-mappen
|
||||||
Show region flag = Visa region-flaggor
|
Show region flag = Visa region-flaggor
|
||||||
Simulate UMD delays = Simulera UMD-fördröjningar
|
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 1 = Slot 1
|
||||||
Slot 2 = Slot 2
|
Slot 2 = Slot 2
|
||||||
Slot 3 = Slot 3
|
Slot 3 = Slot 3
|
||||||
Slot 4 = Slot 4
|
Slot 4 = Slot 4
|
||||||
Slot 5 = Slot 5
|
Slot 5 = Slot 5
|
||||||
Storage full = Lagringsutrymme fullt
|
Storage full = Lagringsutrymme fullt
|
||||||
Sustained performance mode = Sustained performance mode
|
Sustained performance mode = Hållbar-prestanda-läge
|
||||||
Swipe once to switch app (indicator auto-hides) = Swipe once to switch app (indicator auto-hides)
|
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) = Swipe twice to switch app (indicator stays visible)
|
Swipe twice to switch app (indicator stays visible) = Svep två gånger för att byta app (indikatorlinje synlig)
|
||||||
Theme = Tema
|
Theme = Tema
|
||||||
Time Format = Tidsformat
|
Time Format = Tidsformat
|
||||||
Transparent UI background = Genomskinlig UI-bakground
|
Transparent UI background = Genomskinlig UI-bakground
|
||||||
UI = Användargränssnitt
|
UI = Användargränssnitt
|
||||||
UI background animation = Bakgrundsanimering
|
UI background animation = Bakgrundsanimering
|
||||||
UI Sound = Ljud i användargränssnittet
|
UI Sound = Ljud i användargränssnittet
|
||||||
undo %c = backup %c
|
undo %c = ångra %c
|
||||||
USB = USB
|
USB = USB
|
||||||
Use Lossless Video Codec (FFV1) = Använd förlust-fri video codec (FFV1)
|
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
|
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 system native keyboard = Använd systemets tangentbord för text-input
|
||||||
Use X to confirm = Använd X för att bekräfta
|
Use X to confirm = Använd X för att bekräfta
|
||||||
VersionCheck = Kolla efter nya versioner av PPSSPP
|
VersionCheck = Kolla efter nya versioner av PPSSPP
|
||||||
WARNING: Android battery save mode is on = WARNING: Android 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: Battery save mode is on
|
WARNING: Battery save mode is on = WARNING: Batteri-spar-läge äraktivt
|
||||||
Waves = Vågor
|
Waves = Vågor
|
||||||
YYYYMMDD = YYYYMMDD
|
YYYYMMDD = YYYYMMDD
|
||||||
|
|
||||||
|
@ -387,6 +387,7 @@ DeleteFailed = Hindi mabura ang datos.
|
|||||||
Deleting = Binubura...\nSandali lamang...
|
Deleting = Binubura...\nSandali lamang...
|
||||||
Disable All = I-disable lahat
|
Disable All = I-disable lahat
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Tapos na!
|
||||||
Dumps = Mga Dump
|
Dumps = Mga Dump
|
||||||
Edit = I-Edit
|
Edit = I-Edit
|
||||||
Enable All = Paganahin lahat
|
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!
|
DataWillBeLostOnUninstall = Babala! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Mananatili ang data kahit na i-uninstall mo ang PPSSPP.
|
DataWillStay = Mananatili ang data kahit na i-uninstall mo ang PPSSPP.
|
||||||
Deleting... = Binubura...
|
Deleting... = Binubura...
|
||||||
Done! = Tapos na!
|
|
||||||
EasyUSBAccess = Madaling pag-access sa USB
|
EasyUSBAccess = Madaling pag-access sa USB
|
||||||
Failed to move some files! = Nabigong ilipat ang ilang file!
|
Failed to move some files! = Nabigong ilipat ang ilang file!
|
||||||
Failed to save config = Nabigong i-save ang config
|
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
|
Manually specify PSP folder = Manu-manong tukuyin ang PSP na folder
|
||||||
MemoryStickDescription = Piliin kung saan itatabi ang data ng PSP (Memory Stick)
|
MemoryStickDescription = Piliin kung saan itatabi ang data ng PSP (Memory Stick)
|
||||||
Move Data = Ilipat ang Data
|
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
|
Selected PSP Data Folder = Napiling PSP Data Folder
|
||||||
No data will be changed = Walang data na mababago
|
No data will be changed = Walang data na mababago
|
||||||
PPSSPP will restart after the change = Magsisimula muli ang PPSSPP pagkatapos ng pagbabago
|
PPSSPP will restart after the change = Magsisimula muli ang PPSSPP pagkatapos ng pagbabago
|
||||||
|
@ -387,6 +387,7 @@ DeleteFailed = ไม่สามารถลบข้อมูลนี้ไ
|
|||||||
Deleting = กำลังลบข้อมูล\nโปรดรอ...
|
Deleting = กำลังลบข้อมูล\nโปรดรอ...
|
||||||
Disable All = ปิดใช้งานทั้งหมด
|
Disable All = ปิดใช้งานทั้งหมด
|
||||||
Disabled = ปิดการใช้งาน
|
Disabled = ปิดการใช้งาน
|
||||||
|
Done! = เรียบร้อย!
|
||||||
Dumps = ไฟล์ดั๊มพ์
|
Dumps = ไฟล์ดั๊มพ์
|
||||||
Edit = แก้ไข
|
Edit = แก้ไข
|
||||||
Enable All = เปิดใช้งานทั้งหมด
|
Enable All = เปิดใช้งานทั้งหมด
|
||||||
@ -871,7 +872,6 @@ DataCannotBeShared = ข้อมูลไม่สามารถใช้ง
|
|||||||
DataWillBeLostOnUninstall = คำเตือน! ข้อมูลอาจจะสูญหาย เมื่อคุณถอนการติดตั้ง PPSSPP!
|
DataWillBeLostOnUninstall = คำเตือน! ข้อมูลอาจจะสูญหาย เมื่อคุณถอนการติดตั้ง PPSSPP!
|
||||||
DataWillStay = ข้อมูลจะยังคงอยู่ ถึงแม้ว่าจะถอนการติดตั้ง PPSSPP ออกไปแล้ว
|
DataWillStay = ข้อมูลจะยังคงอยู่ ถึงแม้ว่าจะถอนการติดตั้ง PPSSPP ออกไปแล้ว
|
||||||
Deleting... = กำลังลบ...
|
Deleting... = กำลังลบ...
|
||||||
Done! = เรียบร้อย!
|
|
||||||
EasyUSBAccess = การเข้าถึงข้อมูลทำได้ง่าย
|
EasyUSBAccess = การเข้าถึงข้อมูลทำได้ง่าย
|
||||||
Failed to move some files! = ล้มเหลวในการย้ายบางไฟล์!
|
Failed to move some files! = ล้มเหลวในการย้ายบางไฟล์!
|
||||||
Failed to save config = ล้มเหลวในการบันทึกตั้งค่า
|
Failed to save config = ล้มเหลวในการบันทึกตั้งค่า
|
||||||
@ -879,6 +879,7 @@ Free space = พื้นที่ว่าง
|
|||||||
Manually specify PSP folder = ใช้โฟลเดอร์ PSP แบบกำหนดเส้นทางเอง
|
Manually specify PSP folder = ใช้โฟลเดอร์ PSP แบบกำหนดเส้นทางเอง
|
||||||
MemoryStickDescription = เลือกแหล่งที่เก็บข้อมูล PSP (เม็มโมรี่ สติ๊ก)
|
MemoryStickDescription = เลือกแหล่งที่เก็บข้อมูล PSP (เม็มโมรี่ สติ๊ก)
|
||||||
Move Data = ย้ายข้อมูล
|
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 = ไม่มีข้อมูลอะไรถูกเปลี่ยนแปลง
|
No data will be changed = ไม่มีข้อมูลอะไรถูกเปลี่ยนแปลง
|
||||||
PPSSPP will restart after the change = PPSSPP จะรีสตาร์ทใหม่หลังจากปรับเปลี่ยนตั้งค่า
|
PPSSPP will restart after the change = PPSSPP จะรีสตาร์ทใหม่หลังจากปรับเปลี่ยนตั้งค่า
|
||||||
Selected PSP Data Folder = โฟลเดอร์ข้อมูล PSP ที่เลือกไว้
|
Selected PSP Data Folder = โฟลเดอร์ข้อมูล PSP ที่เลือกไว้
|
||||||
|
@ -388,6 +388,7 @@ DeleteFailed = Veri silinemedi.
|
|||||||
Deleting = Siliniyor\nLütfen Bekleyin...
|
Deleting = Siliniyor\nLütfen Bekleyin...
|
||||||
Disable All = Hepsini devre dışı bırak
|
Disable All = Hepsini devre dışı bırak
|
||||||
Disabled = Devre dışı
|
Disabled = Devre dışı
|
||||||
|
Done! = Tamamlandı!
|
||||||
Dumps = Dökümler
|
Dumps = Dökümler
|
||||||
Edit = Düzenle
|
Edit = Düzenle
|
||||||
Enable All = Hepsini etkinleştir
|
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!
|
DataWillBeLostOnUninstall = Uyarı! PPSSPP'yi kaldırdığınızda veriler kaybolacak!
|
||||||
DataWillStay = PPSSPP'yi kaldırsanız bile veriler kalacaktır.
|
DataWillStay = PPSSPP'yi kaldırsanız bile veriler kalacaktır.
|
||||||
Deleting... = Siliniyor...
|
Deleting... = Siliniyor...
|
||||||
Done! = Tamamlandı!
|
|
||||||
EasyUSBAccess = Kolay USB erişimi
|
EasyUSBAccess = Kolay USB erişimi
|
||||||
Failed to move some files! = Bazı dosyalar taşınamadı!
|
Failed to move some files! = Bazı dosyalar taşınamadı!
|
||||||
Failed to save config = Yapılandırma kaydedilemedi
|
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
|
Manually specify PSP folder = PSP klasörünü manuel olarak belirtin
|
||||||
MemoryStickDescription = PSP verisinin nerede tutulacağını seçin (Hafıza Kartı)
|
MemoryStickDescription = PSP verisinin nerede tutulacağını seçin (Hafıza Kartı)
|
||||||
Move Data = Veriyi Taşı
|
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ü
|
Selected PSP Data Folder = Seçilen PSP Veri Klasörü
|
||||||
No data will be changed = Hiçbir veri değişmeyecektir
|
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
|
PPSSPP will restart after the change = PPSSPP değişiklikten sonra yeniden başlayacak
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Неможливо видалити дані.
|
|||||||
Deleting = Видалення\nБудь ласка, зачекайте...
|
Deleting = Видалення\nБудь ласка, зачекайте...
|
||||||
Disable All = Вимкнути все
|
Disable All = Вимкнути все
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = Không thể xóa dữ liệu này.
|
|||||||
Deleting = Đang xóa\nXin đợi...
|
Deleting = Đang xóa\nXin đợi...
|
||||||
Disable All = Vô hiệu hóa tất cả
|
Disable All = Vô hiệu hóa tất cả
|
||||||
Disabled = Disabled
|
Disabled = Disabled
|
||||||
|
Done! = Done!
|
||||||
Dumps = Dumps
|
Dumps = Dumps
|
||||||
Edit = Edit
|
Edit = Edit
|
||||||
Enable All = Cho phép tất cả
|
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!
|
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||||
Deleting... = Deleting...
|
Deleting... = Deleting...
|
||||||
Done! = Done!
|
|
||||||
EasyUSBAccess = Easy USB access
|
EasyUSBAccess = Easy USB access
|
||||||
Failed to move some files! = Failed to move some files!
|
Failed to move some files! = Failed to move some files!
|
||||||
Failed to save config = Failed to save config
|
Failed to save config = Failed to save config
|
||||||
@ -872,6 +872,7 @@ Free space = Free space
|
|||||||
Manually specify PSP folder = Manually specify PSP folder
|
Manually specify PSP folder = Manually specify PSP folder
|
||||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||||
Move Data = Move Data
|
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
|
Selected PSP Data Folder = Selected PSP Data Folder
|
||||||
No data will be changed = No data will be changed
|
No data will be changed = No data will be changed
|
||||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = 无法删除存档。
|
|||||||
Deleting = 删除中。\n请稍候…
|
Deleting = 删除中。\n请稍候…
|
||||||
Disable All = 全部禁用
|
Disable All = 全部禁用
|
||||||
Disabled = 禁用
|
Disabled = 禁用
|
||||||
|
Done! = 完成!
|
||||||
Dumps = 转储
|
Dumps = 转储
|
||||||
Edit = 编辑
|
Edit = 编辑
|
||||||
Enable All = 全部启用
|
Enable All = 全部启用
|
||||||
@ -864,7 +865,6 @@ DataCannotBeShared = 数据无法在普通和黄金版之间互通!
|
|||||||
DataWillBeLostOnUninstall = 警告:除非手动备份转移,卸载APP时将擦除全部数据和存档
|
DataWillBeLostOnUninstall = 警告:除非手动备份转移,卸载APP时将擦除全部数据和存档
|
||||||
DataWillStay = 即使卸载PPSSPP,数据也能保留。
|
DataWillStay = 即使卸载PPSSPP,数据也能保留。
|
||||||
Deleting... = 删除中...
|
Deleting... = 删除中...
|
||||||
Done! = 完成!
|
|
||||||
EasyUSBAccess = 备份、转移、连电脑更简单
|
EasyUSBAccess = 备份、转移、连电脑更简单
|
||||||
Failed to move some files! = 无法移动部分文件!
|
Failed to move some files! = 无法移动部分文件!
|
||||||
Failed to save config = 无法保存配置!
|
Failed to save config = 无法保存配置!
|
||||||
@ -872,6 +872,7 @@ Free space = 可用的空间
|
|||||||
Manually specify PSP folder = 手动指定PSP文件夹
|
Manually specify PSP folder = 手动指定PSP文件夹
|
||||||
MemoryStickDescription = 开始之前,请选择PSP数据的存放空间
|
MemoryStickDescription = 开始之前,请选择PSP数据的存放空间
|
||||||
Move Data = 移动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数据文件夹
|
Selected PSP Data Folder = 您提供的PSP数据文件夹
|
||||||
No data will be changed = 数据不会更改
|
No data will be changed = 数据不会更改
|
||||||
PPSSPP will restart after the change = 更改这项设置需要PPSSPP重启。
|
PPSSPP will restart after the change = 更改这项设置需要PPSSPP重启。
|
||||||
|
@ -386,6 +386,7 @@ DeleteFailed = 無法刪除資料
|
|||||||
Deleting = 正在刪除\n請稍候…
|
Deleting = 正在刪除\n請稍候…
|
||||||
Disable All = 全部停用
|
Disable All = 全部停用
|
||||||
Disabled = 已停用
|
Disabled = 已停用
|
||||||
|
Done! = 完成!
|
||||||
Dumps = 傾印
|
Dumps = 傾印
|
||||||
Edit = 編輯
|
Edit = 編輯
|
||||||
Enable All = 全部啟用
|
Enable All = 全部啟用
|
||||||
@ -1042,7 +1043,6 @@ DataCannotBeShared = 資料無法在 PPSSPP 標準版/黃金版之間共用!
|
|||||||
DataWillBeLostOnUninstall = 警告!資料會在解除安裝 PPSSPP 後遺失!
|
DataWillBeLostOnUninstall = 警告!資料會在解除安裝 PPSSPP 後遺失!
|
||||||
DataWillStay = 資料會在解除安裝 PPSSPP 後保留
|
DataWillStay = 資料會在解除安裝 PPSSPP 後保留
|
||||||
Deleting... = 正在刪除…
|
Deleting... = 正在刪除…
|
||||||
Done! = 完成!
|
|
||||||
EasyUSBAccess = USB 輕鬆存取
|
EasyUSBAccess = USB 輕鬆存取
|
||||||
Failed to move some files! = 無法移動部分檔案!
|
Failed to move some files! = 無法移動部分檔案!
|
||||||
Failed to save config = 無法儲存組態
|
Failed to save config = 無法儲存組態
|
||||||
@ -1050,6 +1050,7 @@ Free space = 可用空間
|
|||||||
Manually specify PSP folder = 手動指定 PSP 資料夾
|
Manually specify PSP folder = 手動指定 PSP 資料夾
|
||||||
MemoryStickDescription = 選擇 PSP 資料存放位置 (記憶棒)
|
MemoryStickDescription = 選擇 PSP 資料存放位置 (記憶棒)
|
||||||
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 = 選取的 PSP 資料資料夾
|
Selected PSP Data Folder = 選取的 PSP 資料資料夾
|
||||||
Skip for now = 暫時跳過
|
Skip for now = 暫時跳過
|
||||||
No data will be changed = 沒有要變更的資料
|
No data will be changed = 沒有要變更的資料
|
||||||
|
Loading…
Reference in New Issue
Block a user