Translation keys etc: Address feedback from TotalCaesar659

This commit is contained in:
Henrik Rydgård 2024-01-23 19:20:19 +01:00
parent acd43ad4b4
commit 21d5257fbf
47 changed files with 140 additions and 48 deletions

View file

@ -77,7 +77,6 @@ const char *I18NCategory::T(const char *key, const char *def) {
return "ERROR";
}
// Replace the \n's with \\n's so that key values with newlines will be found correctly.
auto iter = map_.find(key);
if (iter != map_.end()) {
return iter->second.text.c_str();
@ -94,7 +93,7 @@ const char *I18NCategory::T(const char *key, const char *def) {
void I18NCategory::SetMap(const std::map<std::string, std::string> &m) {
for (auto iter = m.begin(); iter != m.end(); ++iter) {
if (map_.find(iter->first) == map_.end()) {
std::string text = ReplaceAll(iter->second, "\n", "\\n");
std::string text = ReplaceAll(iter->second, "\\n", "\n");
_dbg_assert_(iter->first.find('\n') == std::string::npos);
map_[iter->first] = I18NEntry(text);
}

View file

@ -37,6 +37,11 @@ enum Command {
new: String,
key: String,
},
CopyKey {
old: String,
new: String,
key: String,
},
RenameKey {
section: String,
old: String,
@ -112,6 +117,23 @@ fn move_key(target_ini: &mut IniFile, old: &str, new: &str, key: &str) -> io::Re
Ok(())
}
fn copy_key(target_ini: &mut IniFile, old: &str, new: &str, key: &str) -> io::Result<()> {
if let Some(old_section) = target_ini.get_section_mut(old) {
if let Some(line) = old_section.get_line(key) {
if let Some(new_section) = target_ini.get_section_mut(new) {
new_section.insert_line_if_missing(&line);
} else {
println!("No new section {}", new);
}
} else {
println!("No key {} in section {}", key, old);
}
} else {
println!("No old section {}", old);
}
Ok(())
}
fn remove_key(target_ini: &mut IniFile, section: &str, key: &str) -> io::Result<()> {
if let Some(old_section) = target_ini.get_section_mut(section) {
old_section.remove_line(key);
@ -224,6 +246,13 @@ fn main() {
} => {
move_key(&mut target_ini, old, new, key).unwrap();
}
Command::CopyKey {
ref old,
ref new,
ref key,
} => {
copy_key(&mut target_ini, old, new, key).unwrap();
}
Command::RemoveKey {
ref section,
ref key,
@ -272,6 +301,13 @@ fn main() {
} => {
move_key(&mut reference_ini, old, new, key).unwrap();
}
Command::CopyKey {
ref old,
ref new,
ref key,
} => {
copy_key(&mut reference_ini, old, new, key).unwrap();
}
Command::RemoveKey {
ref section,
ref key,

View file

@ -33,6 +33,21 @@ impl Section {
}
}
pub fn get_line(&mut self, key: &str) -> Option<String> {
for line in self.lines.iter() {
let prefix = if let Some(pos) = line.find(" =") {
&line[0..pos]
} else {
continue;
};
if prefix.eq_ignore_ascii_case(key) {
return Some(line.clone());
}
}
None
}
pub fn insert_line_if_missing(&mut self, line: &str) -> bool {
let prefix = if let Some(pos) = line.find(" =") {
&line[0..pos + 2]

View file

@ -1217,7 +1217,7 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
static const char *buttonPref[] = { "Use O to confirm", "Use X to confirm" };
systemSettings->Add(new PopupMultiChoice(&g_Config.iButtonPreference, sy->T("Confirmation Button"), buttonPref, 0, 2, I18NCat::SYSTEM, screenManager()));
systemSettings->Add(new ItemHeader(sy->T("Recording settings")));
systemSettings->Add(new ItemHeader(sy->T("Recording")));
#if defined(_WIN32) || (defined(USING_QT_UI) && !defined(MOBILE_DEVICE))
systemSettings->Add(new CheckBox(&g_Config.bDumpFrames, sy->T("Record Display")));
systemSettings->Add(new CheckBox(&g_Config.bUseFFV1, sy->T("Use Lossless Video Codec (FFV1)")));

View file

@ -308,6 +308,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ‎تفعيل سجل التصحيح
Enter address = ‎أدخل العنوان
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -629,7 +630,6 @@ Hybrid = ‎هجين
Hybrid + Bicubic = ‎هجين + تكعيب
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1325,6 +1325,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = ‎تسجيل الصوت
Record Display = ‎سجل الفيديو
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = ‎إلي الإفتراضي PPSSPP's إعادة إعدادات
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Вътрешна резолюция
Lazy texture caching = Мързеливо текстурно кеширане (ускорява)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Възстанови първоначалните настройки на PPSSPP
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activa el registre
Enter address = Inseriu adreça
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Híbrid
Hybrid + Bicubic = Híbrid i bicúbic
Ignore camera notch when centering = Ignora la notch de la càmera usant el centre d'imatge.
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolució interna
Lazy texture caching = Memòria cau de textures diferit (ràpid)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Vypsat příští snímek do záznamu
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Povolit záznam při ladění
Enter address = Zadejte adresu
Fast-forward mode = Rychle vpřed
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybridní
Hybrid + Bicubic = Hybridní + Bikubická
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Vnitřní rozlišení
Lazy texture caching = Líné ukládání textur do mezipaměti (zrychlení)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Obnovit výchozí nastavení PPSSPP
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Gem næste frame i loggen
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Aktiver fejlfindingslogning
Enter address = Indtast adresse
Fast-forward mode = Turbo
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubisk
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Intern opløsning
Lazy texture caching = Træg textur caching (hurtigere)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Optag lyd
Record Display = Optag skærm
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Sæt PPSSPP's indstillinger tilbage til standard
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Nächsten Frame im Log speichern
Enable driver bug workarounds = Aktiviere Driver-Fehler workarounds
Enable Logging = Aktiviere Logging
Enter address = Adresse eingeben
Fast-forward mode = Turbo
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bikubisch
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Interne Auflösung
Lazy texture caching = Träges Textur-Caching (schneller)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Ton aufzeichnen
Record Display = Bildschirm aufzeichnen
Recording = Recording
Reset Recording on Save/Load State = Zurücksetzen der Aufnahme bei Laden/Speichern eines Standes
Restore Default Settings = Auf Standardeinstellungen zurücksetzen
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Palakoi log to gambara' undipa
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Padenni Log
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -326,6 +326,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
Fast-forward mode = Fast-forward mode
Fragment = Fragment
FPU = FPU
Framedump tests = Framedump tests
@ -645,7 +646,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1331,6 +1331,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Volcar siguiente cuadro al registro
Enable driver bug workarounds = Activar arreglos alternativos para fallos de drivers
Enable Logging = Activar registro
Enter address = Insertar dirección
Fast-forward mode = Modo turbo
FPU = FPU
Fragment = Fragment
Frame Profiler = Medir rendimiento
@ -621,7 +622,6 @@ Hybrid = Híbrido
Hybrid + Bicubic = Híbrido y bicúbico
Ignore camera notch when centering = Ignorar notch de la cámara usando centrado de imagen.
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Factor de escala entero
Internal Resolution = Resolución interna
Lazy texture caching = Caché de texturas diferido (rápido)
@ -1318,6 +1318,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Juegos recientes
Record Audio = Grabar audio
Record Display = Grabar pantalla
Recording = Recording
Reset Recording on Save/Load State = Reiniciar grabación al cargar/guardar estado
Restore Default Settings = Reestablecer ajustes
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Volcar siguiente cuadro al registro
Enable driver bug workarounds = Activar arreglos alternativos para fallos de drivers
Enable Logging = Activar registro
Enter address = Insertar dirección
Fast-forward mode = Modo turbo
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Híbrido
Hybrid + Bicubic = Híbrido + bicúbico
Ignore camera notch when centering = Ignorar muesca de la cámara al centrar
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolución interna
Lazy texture caching = Caché de texturas diferido (rápido)
@ -1319,6 +1319,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Juegos recientes
Record Audio = Grabar Audio
Record Display = Grabar pantalla
Recording = Recording
Reset Recording on Save/Load State = Reiniciar grabación al abrir/guardar estados
Restore Default Settings = Reestablecer ajustes
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = ‎ریختن فریم بعدی به فایل لاگ
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ‎روشن کردن لاگ باگ ها
Enter address = وارد کردن ادرس
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid (ترکیبی)
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = ‎رزولوشن داخلی
Lazy texture caching = ‎کش کردن تکسچر های ماندگار (افزایش سرعت)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = ‎ضبط صدا
Record Display = ‎ضبط صفحه
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = ‎به حالت اولیه PPSSPP بازگشت تنظیمات
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ota virheenkorjauksen kirjaaminen käyttöön
Enter address = Enter address
Fast-forward mode = Pikakelaus
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybridi
Hybrid + Bicubic = Hybridi + Bicubic
Ignore camera notch when centering = Ohita kameran lovi keskittäessä
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Kokonaislukuskaalauksen kerroin
Internal Resolution = Sisäinen resoluutio
Lazy texture caching = Laiska tekstuurivarastointi (nopeutus)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Viimeisimmät pelit
Record Audio = Nauhoita ääntä
Record Display = Nauhoita näyttöä
Recording = Recording
Reset Recording on Save/Load State = Nollaa nauhoitus tallennettaessa/ladattaessa tila
Restore Default Settings = Palauta PPSSPP:n oletusasetukset
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump de l'image suivante dans le journal
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activer le journal de débogage
Enter address = Entrer une adresse
Fast-forward mode = Vitesse max
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybride
Hybrid + Bicubic = Hybride + Bicubique
Ignore camera notch when centering = Ignorer l'encoche de la caméra lors du centrage
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Définition interne
Lazy texture caching = Mise en cache paresseuse des textures (gain de vitesse)
@ -1308,6 +1308,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Enregistrer le son
Record Display = Enregistrer l'affichage
Recording = Recording
Reset Recording on Save/Load State = Redémarrer l'enregistrement lors de la sauvegarde/chargement d'état
Restore Default Settings = Restaurer les paramètres par défaut
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Volcar seguinte cadro ó rexistro
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activar rexistro
Enter address = Insertar dirección
Fast-forward mode = Modo turbo
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Híbrido
Hybrid + Bicubic = Híbrido + Bicúbico
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolución interna
Lazy texture caching = Caché de texturas diferido (rápido)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Reestablecer axustes
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Αποτύπωση πλαισίου σε καταγρα
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ενεργοποίηση καταγραφής αποσφαλμάτωσης
Enter address = Διεύθυνση Enter
Fast-forward mode = Γρήγορη προώθηση
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Υβριδική
Hybrid + Bicubic = Υβριδική + Διακυβική
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Εσωτερική Ανάλυση
Lazy texture caching = Τεμπέλικη προσωρινή μνήμη υφών (ταχύτερο)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Καταγραφή Ήχου
Record Display = Καταγραφή Εικόνας
Recording = Recording
Reset Recording on Save/Load State = Επαναφορά της εγγραφής κατή την Αποθήκευση/Φόρτωση σημείου αποθήκευσης
Restore Default Settings = Επαναφορά προεπιλεγμένων ρυθμίσεων του PPSSPP
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = בחר את הפריים הבא כדי לדווח
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = אפשר דיווח באגים
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = היברידי
Hybrid + Bicubic = היברידי + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = חוודל ידכ אבה םיירפה תא רחב
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = םיגאב חוויד רשפא
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = ידירביה
Hybrid + Bicubic = ידירביה + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Odbaci sljedeći frame u log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Uključi debug logging
Enter address = Upiši adresu
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hibrid
Hybrid + Bicubic = Hibrid + Bikubični
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Unutarnja rezolucija
Lazy texture caching = Lijeno teksturno predmemoriranje (ubrzanje)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Snimi audio
Record Display = Snimi prikaz
Recording = Recording
Reset Recording on Save/Load State = Ponovo postavi snimak na Save/Load state
Restore Default Settings = Vrati PPSSPP opcije na zadano
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Következő képkocka kiírása naplófájlba
Enable Logging = Naplózás engedélyezése
Enable driver bug workarounds = Enable driver bug workarounds
Enter address = Cím megadása
Fast-forward mode = Gyorsítás
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hibrid
Hybrid + Bicubic = Hibrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Belső felbontás
Lazy texture caching = Lusta textúra gyorsítótárazás (gyorsítás)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Audió felvétele
Record Display = Videó felvétele
Recording = Recording
Reset Recording on Save/Load State = Felvétel leállítása állapotmentés készítésekor vagy betöltésekor
Restore Default Settings = PPSSPP beállításainak alapértelmezettre állítása
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Buang laju bingkai selanjutnya untuk masuk
Enable driver bug workarounds = Aktifkan solusi masalah driver
Enable Logging = Hidupkan pencatat awakutu
Enter address = Masukkan alamat
Fast-forward mode = Pemajuan cepat
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hibrida
Hybrid + Bicubic = Hibrida + Bikubik
Ignore camera notch when centering = Abaikan pandangan kamera saat sedang fokus
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolusi internal
Lazy texture caching = Perlambatan penembolokan tekstur (mempercepat)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Permainan terbaru
Record Audio = Rekam suara
Record Display = Rekam tampilan
Recording = Recording
Reset Recording on Save/Load State = Atur ulang rekaman pada status simpan/muat
Restore Default Settings = Atur ulang pengaturan PPSSPP ke awal
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Crea Log del Frame Successivo
Enable driver bug workarounds = Abilita espediente per superare i bug dei driver
Enable Logging = Attiva Log del Debug
Enter address = Inserire indirizzo
Fast-forward mode = Avanti veloce
FPU = FPU
Fragment = Frammento
Frame timing = Frame timing
@ -622,7 +623,6 @@ Hybrid = Ibrido
Hybrid + Bicubic = Ibrido + Bicubico
Ignore camera notch when centering = Ignora il notch della foto camera durante il centramento
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Fattore di scala intero
Internal Resolution = Risoluzione Interna
Lazy texture caching = Caching lenta delle texture (velocizza)
@ -1294,6 +1294,7 @@ No animation = Nessuna animazione
Path does not exist! = Il percorso non esiste!
PSP Memory Stick = Memory Stick PSP
Recent games = Giochi recenti
Recording = Recording
RetroAchievements = RetroAchievements
Set Memory Stick folder = Imposta la cartella della Memory Stick
Show Memory Stick folder = Mostra cartella Memory Stick

View file

@ -300,6 +300,7 @@ Dump next frame to log = 次のフレームをログにダンプする
Enable driver bug workarounds = ドライバーバグの回避の有効化
Enable Logging = デバッグログを有効にする
Enter address = アドレスを入力する
Fast-forward mode = 速度制限を解除
FPU = FPU
Fragment = フラグメント
Frame timing = フレームタイミング
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = インカメラ液晶部分を画面センタリング領域に含めない
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = 内部解像度
Lazy texture caching = テクスチャキャッシュを遅延させる (高速化)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = オーディオを記録する
Record Display = 画面を記録する
Recording = Recording
Reset Recording on Save/Load State = ステートをセーブ/ロードしたら記録をリセットする
Restore Default Settings = 設定をデフォルトに戻す
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Mbucal pigura jejere log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ngatifke ngangkut barang
Enter address = Ketik alamat
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolusi internal
Lazy texture caching = Caching tektur puguh (Luwih cepet)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Mulihake setelan PPSSPP kanggo gawan
RetroAchievements = RetroAchievements

View file

@ -302,6 +302,7 @@ Dump next frame to log = 다음 프레임을 로그로 덤프
Enable driver bug workarounds = 드라이버 버그 해결 방법 활성화
Enable Logging = 디버그 로깅 활성화
Enter address = 주소 입력
Fast-forward mode = 빨리 감기
Fragment = 단편
FPU = FPU
Framedump tests = 프레임 덤프 테스트
@ -621,7 +622,6 @@ Hybrid = 혼합
Hybrid + Bicubic = 혼합 + 고등차수보간
Ignore camera notch when centering = 센터링 시 카메라 노치 무시
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = 정수 배율
Internal Resolution = 내부 해상도
Lazy texture caching = 레이지 텍스처 캐싱 (속도 상승)
@ -1307,6 +1307,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = 최근 게임
Record Audio = 오디오 녹음
Record Display = 녹화 표시
Recording = Recording
Reset Recording on Save/Load State = 저장/불러오기 상태에서 녹화 재설정
Restore Default Settings = PPSSPP의 설정을 기본값으로 복원
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = ດຶງຂໍ້ມູນຂອງເຟຣມຕໍ
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ເປີດໃຊ້ງານ logging
Enter address = ໃສ່ຄ່າທີ່ຢູ່
Fast-forward mode = ເລັ່ງເທີໂບ
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = ຄວາມລະອຽດພາຍໃນ
Lazy texture caching = ແຄດພື້ນຜິວແບບຫຍາບ (ໄວຂຶ້ນ)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = ບັນທຶກສຽງ Audio
Record Display = ບັນທຶກພາບ Display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = "ຄືນຄ່າການຕັ້ງຄ່າຂອງ PPSSPP ເປັນຄ່າເລີ່ມຕົ້ນ"
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = "Rašyti" kitą kadrą į statusą
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Įjungti testinio režimo statuso rašymą į failus
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybridas
Hybrid + Bicubic = Hybridas + "Bicubic"
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Vidinė rezoliucija
Lazy texture caching = "Tingus" tekstūrų spartinimas (greičio didintojas)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Nustatyti "PPSSPP" parametrus į numatytuosius
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Letak frame berikutnya ke log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Upayakan log pepijat
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hibrid
Hybrid + Bicubic = Hibrid + Bikubik
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolusi dalaman
Lazy texture caching = Pengkuki tekstur ringkas (tingkatkan kelajuan)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Kembalikan tetapan PPSSPP ke lalai
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Volgende frame in logboek plaatsen
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Foutlogboek inschakelen
Enter address = Adres invoeren
Fast-forward mode = Versnellen
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybride
Hybrid + Bicubic = Hybride + bicubisch
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Interne resolutie
Lazy texture caching = Texturecaching reduceren (sneller)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Audio opnemen
Record Display = Scherm opnemen
Recording = Recording
Reset Recording on Save/Load State = Opname opnieuw opstarten bij opslaan/laden van states
Restore Default Settings = PPSSPP's standaardinstellingen herstellen
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Debugloggning
Enter address = Enter address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Internal resolution
Lazy texture caching = Lazy texture caching (speedup)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Restore PPSSPP's settings to default
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Zrzuć następną klatkę do dziennika zdarzeń
Enable driver bug workarounds = Uruchom obejścia błędów sterownika
Enable Logging = Włącz dziennik zdarzeń debugera
Enter address = Wprowadź adres
Fast-forward mode = Pełna prędkość
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -626,7 +627,6 @@ Hybrid = Hybrydowe
Hybrid + Bicubic = Hybrydowe + Dwusześcienne
Ignore camera notch when centering = Ignoruj przesunięcie kamery podczas centrowania
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Całkowity współczynnik skali
Internal Resolution = Rozdzielczość wewnętrzna
Lazy texture caching = Leniwa pamięć tekstur (przyśpieszenie)
@ -1323,6 +1323,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Ostatnio uruchamiane tytuły
Record Audio = Nagrywaj dźwięk
Record Display = Nagrywaj obraz
Recording = Recording
Reset Recording on Save/Load State = Resetuj nagrywanie przy zapisie/wczytaniu stanu
Restore Default Settings = Przywróć domyślne ustawienia
RetroAchievements = RetroAchievements

View file

@ -326,6 +326,7 @@ Dump next frame to log = Dumpar o frame seguinte no registro
Enable driver bug workarounds = Ativar soluções alternativas pros bugs dos drivers
Enable Logging = Ativar o registro do debug
Enter address = Inserir endereço
Fast-forward mode = Avanço rápido
Fragment = Fragmento
FPU = FPU
Framedump tests = Testes dos dumps dos frames
@ -644,8 +645,7 @@ High = Alta
Hybrid = Híbrido
Hybrid + Bicubic = Híbrido + bi-cúbico
Ignore camera notch when centering = Ignora o nível da câmera quando centralizar
Install custom driver... = Install custom driver...
Install Custom Driver... = Instalar Driver Personalizado...
Install custom driver... = Instalar Driver Personalizado...
Integer scale factor = Fator de escala do inteiro
Internal Resolution = Resolução interna
Lazy texture caching = Cache preguiçoso da textura (mais rápido)
@ -1331,6 +1331,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Jogos recentes
Record Audio = Gravar áudio
Record Display = Gravar tela
Recording = Recording
Reset Recording on Save/Load State = Resetar a gravação ao salvar/carregar o state
Restore Default Settings = Restaurar as configurações do PPSSPP para os padrões
RetroAchievements = RetroAchievements

View file

@ -324,6 +324,7 @@ Dump next frame to log = Guardar o próximo frame no Log
Enable driver bug workarounds = Ativar soluções alternativas para erros de Drivers
Enable Logging = Ativar Log do Debug
Enter address = Inserir endereço
Fast-forward mode = Avanço rápido
FPU = FPU
Fragment = Fragmento
Frame timing = Tempo do frame
@ -645,7 +646,6 @@ Hybrid = Híbrido
Hybrid + Bicubic = Híbrido + Bicúbico
Ignore camera notch when centering = Ignora o nível da câmera quando centralizar
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Fator de escala inteiro
Internal Resolution = Resolução interna
Lazy texture caching = Caching preguiçoso da textura (mais rápido)
@ -1333,6 +1333,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Jogos recentes
Record Audio = Gravar áudio
Record Display = Gravar ecrã
Recording = Recording
Reset Recording on Save/Load State = Reiniciar a gravação ao salvar/carregar o estado
Restore Default Settings = Restaurar as definições do PPSSPP para os padrões
RetroAchievements = RetroAchievements

View file

@ -301,6 +301,7 @@ Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
Fast-forward mode = Repede inainte
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -622,7 +623,6 @@ Hybrid = Hibrid
Hybrid + Bicubic = Hibrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Rezoluție internă
Lazy texture caching = Stocare de texturi leneșă (mărire viteză)
@ -1318,6 +1318,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Record audio
Record Display = Record display
Recording = Recording
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Adu la setări PPSSPP inițiale
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Сохранить следующий кадр в ло
Enable driver bug workarounds = Включить обход ошибок драйвера
Enable Logging = Включить отладочное логирование
Enter address = Ввести адрес
Fast-forward mode = Перемотка вперед
FPU = FPU
Fragment = Фрагмент
Frame timing = Время кадра
@ -621,7 +622,6 @@ Hybrid = Гибридный
Hybrid + Bicubic = Гибридный + бикубический
Ignore camera notch when centering = Игнорировать челку камеры при центрировании
Install custom driver... = Установить сторонний драйвер...
Install Custom Driver... = Установить сторонний драйвер...
Integer scale factor = Коэффициент целочисленного масштабирования
Internal Resolution = Внутренние разрешение
Lazy texture caching = Ленивое кэширование текстур (быстрее)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Последние игры
Record Audio = Запись звука
Record Display = Запись видео
Recording = Recording
Reset Recording on Save/Load State = Сбрасывать запись при сохранении/загрузке
Restore Default Settings = Сбросить настройки PPSSPP
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Dumpa nästa frame till log
Enable driver bug workarounds = Tillåt workarounds för drivrutins-buggar
Enable Logging = Debugloggning
Enter address = Address
Fast-forward mode = Snabbspola
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -622,7 +623,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignorera kamerahål vid centrering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Intern upplösning
Lazy texture caching = Lat textur-caching (speedup)
@ -1318,6 +1318,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Tidigare spel
Record Audio = Spela in audio till fil
Record Display = Spela in video till fil
Recording = Inspelningsinställningar
Reset Recording on Save/Load State = Reset recording on Save/Load state
Restore Default Settings = Återställ standard-inställningar
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = I-refresh ang set-up
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Paganahin ang Debug Logging
Enter address = Ilagay ang address
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Resolusyong Internal
Lazy texture caching = Lazy texture caching (pampa-bilis)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Nakaraang mga nilaro
Record Audio = I-record ang Audio
Record Display = I-record ang Display
Recording = Recording
Reset Recording on Save/Load State = Reset Recording on Save/Load state
Restore Default Settings = Ibalik ang settings sa dati nitong ayos
RetroAchievements = RetroAchievements

View file

@ -621,7 +621,6 @@ High = สูง
Hybrid = ไฮบริด
Hybrid + Bicubic = ไฮบริด + ไบคิวบิค
Ignore camera notch when centering = ละเว้นตำแหน่งจอแหว่งเพื่อปรับภาพให้อยู่ตรงกลาง
Install custom driver... = ติดตั้งไดรเวอร์ปรับแต่ง...
Integer scale factor = สเกลภาพจำนวนเต็ม
Internal Resolution = ความละเอียดภายใน
Lazy texture caching = แคชพื้นผิวแบบหยาบ (เร็วขึ้น)
@ -1337,6 +1336,7 @@ PSP-2000/3000 = PSP รุ่น 2000/3000
Recent games = ภาพพื้นหลังของเกมที่เล่นครั้งล่าสุด
Record Audio = อัดบันทึกเสียง
Record Display = อัดบันทึกวีดีโอ
Recording = Recording
Reset Recording on Save/Load State = เริ่มการอัดบันทึกไฟล์ใหม่ เมื่อกดเซฟ/โหลดสเตทเกม
Restore Default Settings = รีเซ็ตการตั้งค่าของ PPSSPP ทั้งหมด
RetroAchievements = RetroAchievements

View file

@ -302,6 +302,7 @@ Dump next frame to log = Sonraki kareyi günlüğe dökümle
Enable driver bug workarounds = Sürücü hatası geçici çözümlerini etkinleştirin
Enable Logging = Hata ayıklama günlüğünü etkinleştirin
Enter address = Adres Gir
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -623,7 +624,6 @@ Hybrid = Hibrit
Hybrid + Bicubic = Hibrit + Bikübik
Ignore camera notch when centering = Merkezleme sırasında kamera çentiğini yoksay
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = İç çözünürlük
Lazy texture caching = Yavaş doku önbellekleme (hızlandırır)
@ -1318,6 +1318,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = En son oyunlar
Record Audio = Sesi kaydet
Record Display = Görüntüyü kaydet
Recording = Recording
Reset Recording on Save/Load State = Kaydet/Yükle durumunda kaydı sıfırla
Restore Default Settings = Varsayılan ayarları yükle
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Зберегти кадр у лог
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ввімкнути логування
Enter address = Введіть адресу
Fast-forward mode = Швидко вперед
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Гібридний
Hybrid + Bicubic = Гібридний + Бікубічний
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Внутрішнє розширення
Lazy texture caching = Кешування текстур
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Запис аудіо
Record Display = Запис відео
Recording = Recording
Reset Recording on Save/Load State = Скидати запис при збереженні / завантаженні
Restore Default Settings = Скинути налаштування
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = Đưa khung hình kế tiếp vào nhật ký
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Cho phép ghi nhật ký debug
Enter address = Nhập địa chỉ
Fast-forward mode = Fast-forward mode
FPU = FPU
Fragment = Fragment
Frame timing = Frame timing
@ -621,7 +622,6 @@ Hybrid = Hybrid (hỗn hợp)
Hybrid + Bicubic = Hybrid + Bicubic
Ignore camera notch when centering = Ignore camera notch when centering
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = Integer scale factor
Internal Resolution = Độ phân giải bên trong
Lazy texture caching = Bộ nhớ đệm lazy texture (tăng tốc)
@ -1317,6 +1317,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = Recent games
Record Audio = Ghi audio
Record Display = Hiển thị ghi
Recording = Recording
Reset Recording on Save/Load State = Đặt lại ghi trên trạng thái Save/Load.
Restore Default Settings = Chỉnh các thiết lập về mặc định
RetroAchievements = RetroAchievements

View file

@ -300,6 +300,7 @@ Dump next frame to log = 转储下一帧到日志
Enable driver bug workarounds = 启用GPU驱动错误解决方法
Enable Logging = 启用调试日志
Enter address = 输入地址
Fast-forward mode = 加速(长按)
FPU = FPU
Fragment = 片段着色器
Frame timing = 帧时间统计信息
@ -620,8 +621,7 @@ High = 高质量
Hybrid = 混合
Hybrid + Bicubic = 混合+双三次
Ignore camera notch when centering = 忽略摄像头挖孔
Install custom driver... = Install custom driver...
Install Custom Driver... = 安装自选驱动...
Install custom driver... = 安装自选驱动...
Integer scale factor = 整倍缩放
Internal Resolution = 内部分辨率
Lazy texture caching = 延迟纹理缓存 (提速)
@ -1246,6 +1246,7 @@ AVI Dump stopped. = AVI转储停止
Cache ISO in RAM = 在内存中缓存完整ISO
Change CPU Clock = 修改PSP的CPU频率 (不稳定)
Loaded plugin: %1 = 已加载插件: %1
Recording = Recording
RetroAchievements = RetroAchievements
Rewind Snapshot Interval = 倒带快照间隔
Color Tint = 颜色色调

View file

@ -300,6 +300,7 @@ Dump next frame to log = 將下一個影格傾印至記錄
Enable driver bug workarounds = 啟用驅動程式錯誤因應措施
Enable Logging = 啟用偵錯記錄
Enter address = 輸入位址
Fast-forward mode = 快轉
FPU = FPU
Fragment = 片段
Frame timing = 影格計時
@ -621,7 +622,6 @@ Hybrid = 混合
Hybrid + Bicubic = 混合 + 雙立方
Ignore camera notch when centering = 置中時忽略相機凹口
Install custom driver... = Install custom driver...
Install Custom Driver... = Install Custom Driver...
Integer scale factor = 整數縮放比例
Internal Resolution = 內部解析度
Lazy texture caching = 消極式紋理快取 (加速)
@ -1307,6 +1307,7 @@ PSP-2000/3000 = PSP-2000/3000
Recent games = 最近遊戲
Record Audio = 錄製音訊
Record Display = 錄製視訊
Recording = Recording
Reset Recording on Save/Load State = 儲存/載入存檔時重設錄製
Restore Default Settings = 將 PPSSPP 設定重設為預設值
RetroAchievements = RetroAchievements