mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-17 04:39:34 +00:00
Merge pull request #14895 from hrydgard/translation-add-memstick
Use langtool to add missing MemStick sections to a zillion ini files
This commit is contained in:
commit
154a1c8619
@ -21,6 +21,14 @@ impl Section {
|
||||
} else {
|
||||
return false;
|
||||
};
|
||||
// Ignore comments when copying lines.
|
||||
if prefix.starts_with('#') {
|
||||
return false;
|
||||
}
|
||||
// Need to decide a policy for these.
|
||||
if prefix.starts_with("translators") {
|
||||
return false;
|
||||
}
|
||||
let prefix = prefix.to_owned();
|
||||
|
||||
for iter_line in &self.lines {
|
||||
@ -41,7 +49,7 @@ impl Section {
|
||||
}
|
||||
}
|
||||
println!("failed to insert {}", line);
|
||||
return true;
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
@ -66,9 +74,9 @@ impl IniFile {
|
||||
for line in lines {
|
||||
let line = line.unwrap();
|
||||
|
||||
let line = if line.starts_with("\u{feff}") {
|
||||
let line = if let Some(line) = line.strip_prefix('\u{feff}') {
|
||||
has_bom = true;
|
||||
&line[3..]
|
||||
line
|
||||
} else {
|
||||
&line
|
||||
};
|
||||
@ -89,12 +97,10 @@ impl IniFile {
|
||||
// Bad syntax
|
||||
break;
|
||||
}
|
||||
} else if let Some(cur_section) = &mut cur_section {
|
||||
cur_section.lines.push(line.to_owned());
|
||||
} else {
|
||||
if let Some(cur_section) = &mut cur_section {
|
||||
cur_section.lines.push(line.to_owned());
|
||||
} else {
|
||||
preamble.push(line.to_owned());
|
||||
}
|
||||
preamble.push(line.to_owned());
|
||||
}
|
||||
}
|
||||
|
||||
@ -121,14 +127,14 @@ impl IniFile {
|
||||
}
|
||||
for line in &self.preamble {
|
||||
file.write_all(line.as_bytes())?;
|
||||
file.write(b"\n")?;
|
||||
file.write_all(b"\n")?;
|
||||
}
|
||||
for section in &self.sections {
|
||||
file.write_all(section.title_line.as_bytes())?;
|
||||
file.write(b"\n")?;
|
||||
file.write_all(b"\n")?;
|
||||
for line in §ion.lines {
|
||||
file.write_all(line.as_bytes())?;
|
||||
file.write(b"\n")?;
|
||||
file.write_all(b"\n")?;
|
||||
}
|
||||
}
|
||||
|
||||
@ -155,7 +161,7 @@ impl IniFile {
|
||||
}
|
||||
// Reached the end for some reason? Add it.
|
||||
self.sections.push(section.clone());
|
||||
return true;
|
||||
true
|
||||
}
|
||||
|
||||
fn get_section_mut(&mut self, section_name: &str) -> Option<&mut Section> {
|
||||
@ -177,7 +183,7 @@ where
|
||||
Ok(io::BufReader::new(file).lines())
|
||||
}
|
||||
|
||||
fn copy_missing_lines(reference_ini: &IniFile, target_ini: &mut IniFile) {
|
||||
fn copy_missing_lines(reference_ini: &IniFile, target_ini: &mut IniFile) -> io::Result<()> {
|
||||
// Insert any missing full sections.
|
||||
for section in &reference_ini.sections {
|
||||
if !target_ini.insert_section_if_missing(section) {
|
||||
@ -189,7 +195,8 @@ fn copy_missing_lines(reference_ini: &IniFile, target_ini: &mut IniFile) {
|
||||
}
|
||||
}
|
||||
|
||||
target_ini.write();
|
||||
target_ini.write()?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() {
|
||||
@ -223,7 +230,7 @@ fn main() {
|
||||
let target_ini_filename = format!("{}/{}", root, filename);
|
||||
println!("Langtool processing {}", target_ini_filename);
|
||||
let mut target_ini = IniFile::parse(&target_ini_filename).unwrap();
|
||||
copy_missing_lines(&reference_ini, &mut target_ini);
|
||||
copy_missing_lines(&reference_ini, &mut target_ini).unwrap();
|
||||
}
|
||||
|
||||
// println!("{:#?}", target_ini);
|
||||
|
@ -577,7 +577,7 @@ Browse = تصفح...
|
||||
Buy PPSSPP Gold = Buy PPSSPP Gold
|
||||
Choose folder = Choose folder
|
||||
Credits = الحقوق
|
||||
PPSSPP Homebrew Store = PPSSPP Homebrew Store
|
||||
PPSSPP Homebrew Store = PPSSPP Homebrew Store
|
||||
Exit = خروج
|
||||
Game Settings = الإعدادات
|
||||
Games = الألعاب
|
||||
@ -668,6 +668,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = الواي فاي
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -569,7 +569,7 @@ Browse = Browse...
|
||||
Buy PPSSPP Gold = Buy PPSSPP Gold
|
||||
Choose folder = Choose folder
|
||||
Credits = Tanıtım
|
||||
PPSSPP Homebrew Store = PPSSPP Homebrew Store
|
||||
PPSSPP Homebrew Store = PPSSPP Homebrew Store
|
||||
Exit = Çıxış
|
||||
Game Settings = Settings
|
||||
Games = Games
|
||||
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Navštívit fórum Ad Hoc Multiplayer
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Besøg Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Besuche das Adhoc Multiplayer Forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -488,7 +488,6 @@ Display layout editor = Display layout editor
|
||||
Display Resolution (HW scaler) = Display resolution (HW scaler)
|
||||
Dump next frame to log = Dump next frame to log
|
||||
Enable Cardboard VR = Enable Cardboard VR
|
||||
Features = Features
|
||||
FPS = FPS
|
||||
Frame Rate Control = Framerate control
|
||||
Frame Skipping = Frame skipping
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visitar foro de juego en red
|
||||
AdHoc Server = Servidor AdHoc
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visitar foro de juego en red
|
||||
AdHoc Server = Servidor Ad Hoc
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visiter le forum "Ad Hoc Multiplayer"
|
||||
AdHoc Server = Serveur ad hoc
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visitar foro de xogo en rede
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Επισκευθείτε το Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Posjeti Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Hangerő +
|
||||
Vol - = Hangerő -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Ad Hoc többjátékos fórum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Kunjungi forum Ad Hoc Multiplayer
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -579,6 +579,7 @@ How to get games = Come ottenere giochi?
|
||||
How to get homebrew & demos = Come ottenere homebrew o demo?
|
||||
Load = Carica...
|
||||
Loading... = Caricamento in corso...
|
||||
PPSSPP Homebrew Store = PPSSPP Homebrew Store
|
||||
PinPath = Pin
|
||||
PPSSPP can't load games or save right now = PPSSPP non può caricare i giochi o salvarli, in questo momento
|
||||
Recent = Recenti
|
||||
@ -618,6 +619,7 @@ D-pad up = D-pad su
|
||||
DevMenu = DevMenu
|
||||
Down = D-Pad Giù
|
||||
Dpad = Dpad
|
||||
Fast-forward = Fast-forward
|
||||
Frame Advance = Avanzam. frame
|
||||
Hold = Hold
|
||||
Home = Home
|
||||
@ -898,7 +900,7 @@ View Feedback = Mostra i Feedback
|
||||
Date = Data
|
||||
Filename = Nome del file
|
||||
No screenshot = Nessuno screenshot
|
||||
None yet. Things will appear here after you save. = Ancora niente. Si inizierà a vedere qualcosa dopo il salvataggio.
|
||||
None yet. Things will appear here after you save. = Ancora niente. Si inizierà a vedere qualcosa dopo il salvataggio.
|
||||
Save Data = Salvataggi
|
||||
Save States = Salvataggio stati
|
||||
Savedata Manager = Gestione dei Salvataggi
|
||||
@ -909,6 +911,7 @@ Cardboard VR OFF = Cardboard VR spenta
|
||||
Chainfire3DWarning = AVVISO: rilevato Chainfire3D, potrebbe causare problemi
|
||||
Failed to load state = Impossibile caricare il salvataggio di stato
|
||||
Failed to save state = Impossibile salvare il salvataggio di stato
|
||||
Loaded. Save in game, restart, and load for less bugs. = Loaded. Save in game, restart, and load for less bugs.
|
||||
fixed = Velocità: alternata
|
||||
GLToolsWarning = AVVISO: rilevato GLTools, potrebbe causare problemi
|
||||
In menu = Nei menu
|
||||
@ -1034,6 +1037,7 @@ Failed to save state. Error in the file system. = Impossibile effettuare il salv
|
||||
Fast (lag on slow storage) = Veloce (lag nei dischi lenti)
|
||||
Fast Memory = Memoria Rapida (instabile)
|
||||
Force real clock sync (slower, less lag) = Forza sincronizzazione con frequenza reale (lento, meno lag)
|
||||
UI = UI
|
||||
frames, 0:off = frames, 0 = off
|
||||
Games list settings = Impostazioni Lista giochi
|
||||
General = Generali
|
||||
|
@ -811,10 +811,22 @@ website = ウェブサイトはこちら:
|
||||
written = 速度と移植性を保つためにC++で書かれています
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Current = Current
|
||||
DataWillStay = 保存データはPPSSPPをアンインストールしても残る。
|
||||
DataCanBeShared = 通常版/ゴールド間でのデータの共有が可能。
|
||||
DataCannotBeShared = 通常版/ゴールド間でのデータの共有が「できない」。
|
||||
Done! = Done!
|
||||
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
|
||||
Move Data = Move Data
|
||||
No data will be changed = No data will be changed
|
||||
PPSSPP will restart after the change = PPSSPP will restart after the change
|
||||
Selected PSP Data Folder = Selected PSP Data Folder
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB接続は Android/data/org.ppsspp.ppsspp/files を通して行う。
|
||||
USBAccessThroughGold = USB接続は Android/data/org.ppsspp.ppssppgold/files を通して行う。
|
||||
DataWillBeLostOnUninstall = 警告! PPSSPPをアンインストールすると保存データも削除されます!
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Kunjungi forum Ad Hoc Multiplayer
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = 볼륨 +
|
||||
Vol - = 볼륨 -
|
||||
Wlan = 무선랜
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = 애드혹 멀티플레이어 포럼 방문
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = ເຂົ້າຊົມຟໍຣຳ Ad Hoc Multiplayer
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Ad hoc-multiplayerforum bezoeken
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Odwiedź forum związane z Ad Hoc (tryb wielu graczy)
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -176,6 +176,7 @@ Nearest = &Mais perto
|
||||
Non-Buffered Rendering = &Ignorar efeitos do buffer (sem buffer, mais rápido)
|
||||
Off = &Desligado
|
||||
Open Directory... = Abrir &diretório...
|
||||
Open Memory Stick = Open &Memory Stick
|
||||
Open from MS:/PSP/GAME... = A&brir do MS:/PSP/GAME...
|
||||
Open cartão de memória = Abrir &cartão de memória
|
||||
Open New Instance = Abrir nova instância
|
||||
@ -388,6 +389,7 @@ RAR file detected (Require WINRAR) = O arquivo está comprimido (RAR).\nPor favo
|
||||
Running slow: try frameskip, sound is choppy when slow = Rodando lento: tente o frameskip, o som é instável quando lento.
|
||||
Running slow: Try turning off Software Rendering = Rodando lento: Tente desligar "renderização por software"
|
||||
Save encryption failed. This save won't work on real PSP = Falhou em encriptar o save. Este save não funcionará num PSP de verdade
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
textures.ini filenames may not be cross-platform = Os nomes dos arquivos em "textures.ini" podem não ser multi-plataforma.
|
||||
This is a saved state, not a game. = Este é um state salvo, não um jogo.
|
||||
This is save data, not a game. = Isto são dados do save, não um jogo.
|
||||
@ -431,6 +433,7 @@ Use UI background = Usar background da Interface do Usuário
|
||||
%, 0:unlimited = %, 0 = ilimitado
|
||||
(supersampling) = (super amostragem)
|
||||
(ampliação) = (ampliação)
|
||||
(upscaling) = (upscaling)
|
||||
1x PSP = 1× PSP
|
||||
2x = 2×
|
||||
2x PSP = 2× PSP
|
||||
@ -684,6 +687,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visite o fórum do Multiplayer Ad Hoc
|
||||
AdHoc Server = Servidor Ad hoc
|
||||
@ -895,7 +925,7 @@ View Feedback = Visualizar todos os feedbacks
|
||||
Date = Data
|
||||
Filename = Nome do arquivo
|
||||
No screenshot = Sem screenshot
|
||||
None yet. Things will appear here after you save. = Nada ainda. As coisas aparecerão aqui após você salvar.
|
||||
None yet. Things will appear here after you save. = Nada ainda. As coisas aparecerão aqui após você salvar.
|
||||
Save Data = Dados salvos
|
||||
Save States = States salvos
|
||||
Savedata Manager = Gerenciador dos dados dos saves
|
||||
@ -906,6 +936,7 @@ Cardboard VR OFF = Cardboard VR desligado
|
||||
Chainfire3DWarning = AVISO: Chainfire3D detectado, pode causar problemas.
|
||||
Failed to load state = Falhou em carregar o state
|
||||
Failed to save state = Falhou em salvar o state
|
||||
Loaded. Save in game, restart, and load for less bugs. = Loaded. Save in game, restart, and load for less bugs.
|
||||
fixed = Velocidade: alternativa
|
||||
GLToolsWarning = AVISO: GLTools detectado, pode causar problemas.
|
||||
In menu = No menu
|
||||
@ -1031,6 +1062,7 @@ Failed to save state. Error in the file system. = Falhou em salvar o state. Erro
|
||||
Fast (lag on slow storage) = Rápido (atraso na armazenagem lenta)
|
||||
Fast Memory = Memória rápida (instável)
|
||||
Force real clock sync (slower, less lag) = Forçar sincronização com relógio real (mais lento, menos atrasos)
|
||||
UI = UI
|
||||
frames, 0:off = frames, 0 = desligado
|
||||
Games list settings = Configurações da lista de jogos
|
||||
General = Geral
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visitează forumul Ad Hoc Multiplayer
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -661,6 +661,33 @@ Vol + = Громкость +
|
||||
Vol - = Громкость -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Раздел многопользовательских игр на форуме
|
||||
AdHoc Server = Ad-hoc сервер
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -706,6 +706,7 @@ Remote hold = หยุดการใช้รีโมท
|
||||
Rewind = โหลดสเตทพื้นหลัง
|
||||
Rhombus = สี่เหลี่ยมเปียกปูน
|
||||
Right = ลูกศรขวา
|
||||
Right Analog Stick (tap to customize) = Right analog stick (tap to customize)
|
||||
Right Analog Stick = ปุ่มอนาล็อกขวา
|
||||
RightAn.Down = อนาล็อก(ขวา)ลง
|
||||
RightAn.Left = อนาล็อก(ขวา)ซ้าย
|
||||
@ -738,6 +739,7 @@ Wlan = เครือข่าย
|
||||
|
||||
[Networking]
|
||||
AdHoc Server = เซิร์ฟเวอร์ Adhoc
|
||||
Adhoc Multiplayer forum = Visit Ad Hoc Multiplayer forum
|
||||
AdhocServer Failed to Bind Port = เซิร์ฟเวอร์ Adhoc ล้มเหลวในการเชื่อมโยงพอร์ต
|
||||
Auto = อัตโนมัติ
|
||||
Bottom Center = มุมล่างกลางจอ
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Ad Hoc Multiplayer Forumunu ziyaret et
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Гучність +
|
||||
Vol - = Гучність -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Відвідайте спеціальний форум мультиплеєру
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = Thăm diễn đàn AdHoc
|
||||
AdHoc Server = Ad hoc server
|
||||
|
@ -660,6 +660,33 @@ Vol + = 音量 +
|
||||
Vol - = 音量 -
|
||||
Wlan = 无线网络
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = 访问官方 Ad Hoc 联机论坛 (英文)
|
||||
AdHoc Server = Ad Hoc 服务器
|
||||
|
@ -660,6 +660,33 @@ Vol + = Vol +
|
||||
Vol - = Vol -
|
||||
Wlan = WLAN
|
||||
|
||||
[MemStick]
|
||||
Already contains PSP data = Already contains PSP data
|
||||
Create or Choose a PSP folder = Create or Choose a PSP folder
|
||||
Current = Current
|
||||
DataCanBeShared = Data can be shared between PPSSPP regular/Gold
|
||||
DataCannotBeShared = Data CANNOT be shared between PPSSPP regular/Gold!
|
||||
DataWillBeLostOnUninstall = Warning! Data will be lost when you uninstall PPSSPP!
|
||||
DataWillStay = Data will stay even if you uninstall PPSSPP.
|
||||
Done! = Done!
|
||||
EasyUSBAccess = Easy USB access
|
||||
Failed to move some files! = Failed to move some files!
|
||||
Failed to save config = Failed to save config
|
||||
Free space = Free space
|
||||
MemoryStickDescription = Choose where to keep PSP data (Memory Stick)
|
||||
Move Data = Move Data
|
||||
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
|
||||
Starting move... = Starting move...
|
||||
That folder doesn't work as a memstick folder. = That folder doesn't work as a memstick folder.
|
||||
USBAccessThrough = USB access through Android/data/org.ppsspp.ppsspp/files
|
||||
USBAccessThroughGold = USB access through Android/data/org.ppsspp.ppssppgold/files
|
||||
Use App Private Data = Use App Private Data
|
||||
Use PSP folder at root of storage = Use PSP folder at root of storage
|
||||
Welcome to PPSSPP! = Welcome to PPSSPP!
|
||||
WhatsThis = What's this?
|
||||
|
||||
[Networking]
|
||||
Adhoc Multiplayer forum = 連線的問題請至官方論壇 (英文)
|
||||
AdHoc Server = Ad hoc server
|
||||
|
Loading…
x
Reference in New Issue
Block a user