Add new translation strings

This commit is contained in:
Henrik Rydgård 2024-01-16 14:25:39 +01:00
parent 9253bf9cb5
commit cf635fcd1e
46 changed files with 271 additions and 6 deletions

View File

@ -51,6 +51,12 @@ struct DriverMeta {
return false;
}
int schemaVersion = meta.root().getInt("schemaVersion");
if (schemaVersion > 1) {
*errorStr = "unknown schemaVersion in meta.json";
return false;
}
if (!meta.root().getString("name", &name) || name.empty()) {
*errorStr = "missing driver name in json";
return false;
@ -83,12 +89,13 @@ DriverChoice::DriverChoice(const std::string &driverName, bool current, UI::Layo
layoutParams_->height = 220;
}
auto gr = GetI18NCategory(I18NCat::GRAPHICS);
auto di = GetI18NCategory(I18NCat::DIALOG);
// Read the meta data
DriverMeta meta{};
bool isDefault = driverName.empty();
if (isDefault) {
meta.description = "The default installed driver on your system";
meta.description = gr->T("Default GPU driver");
}
Path metaPath = GetDriverPath() / driverName / "meta.json";
@ -106,7 +113,7 @@ DriverChoice::DriverChoice(const std::string &driverName, bool current, UI::Layo
bool usable = isDefault || true;
#endif
Add(new ItemHeader(driverName.empty() ? gr->T("Default driver") : driverName))->SetLarge(true);
Add(new ItemHeader(driverName.empty() ? gr->T("Default GPU driver") : driverName))->SetLarge(true);
if (current) {
Add(new NoticeView(NoticeLevel::SUCCESS, gr->T("Current GPU driver"), ""));
}
@ -127,7 +134,7 @@ DriverChoice::DriverChoice(const std::string &driverName, bool current, UI::Layo
}
if (usable) {
if (!current) {
Add(new Choice(gr->T("Use this driver")))->OnClick.Add([=](UI::EventParams &) {
Add(new Choice(di->T("Select")))->OnClick.Add([=](UI::EventParams &) {
UI::EventParams e{};
e.s = name_;
OnUse.Trigger(e);
@ -205,7 +212,7 @@ UI::EventReturn DriverManagerScreen::OnCustomDriverUninstall(UI::EventParams &e)
UI::EventReturn DriverManagerScreen::OnCustomDriverInstall(UI::EventParams &e) {
auto gr = GetI18NCategory(I18NCat::GRAPHICS);
System_BrowseForFile(gr->T("Install Custom Driver..."), BrowseFileType::ZIP, [this](const std::string &value, int) {
System_BrowseForFile(gr->T("Install custom driver..."), BrowseFileType::ZIP, [this](const std::string &value, int) {
if (value.empty()) {
return;
}

View File

@ -16,6 +16,7 @@ public:
protected:
void CreateTabs() override;
bool ShowSearchControls() const override { return false; }
private:
UI::EventReturn OnCustomDriverInstall(UI::EventParams &e);

View File

@ -110,7 +110,7 @@ static bool SupportsCustomDriver() {
static bool SupportsCustomDriver() {
#ifdef _DEBUG
return true;
return false; // change to true to debug driver installation on other platforms
#else
return false;
#endif

View File

@ -408,6 +408,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = ‎تحريك
Move Down = Move Down
Move Up = Move Up
@ -566,6 +567,7 @@ Use UI background = ‎إستخدم خلفية الواجهة
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = ‎عنيف
Alternative Speed = سرعة ثانوية (في %, 0 = ‎غير محدود)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -595,6 +597,7 @@ Copy to texture = Copy to texture
CPU Core = ‎أنوية المعالج
Current GPU Driver = Current GPU Driver
Debugging = ‎التصحيح
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -605,6 +608,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ‎أظهر مُعدل النسق
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = ‎التحكم في معدل الإطارات
@ -622,6 +627,7 @@ High = ‎عالي
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Alternative speed (in %, 0 = unlimited)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -614,6 +619,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Преместване
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Алтернативна скорост
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = Кадри в сек.
Frame Rate Control = Framerate control
@ -614,6 +619,7 @@ High = High
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 = Вътрешна резолюция

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Moure
Move Down = Baixar
Move Up = Pujar
@ -558,6 +559,7 @@ Use UI background = Utilitzar imatge de fons de l'interfície d'usuari
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = ×16
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agressiu
Alternative Speed = Velocitat alternativa (%, 0 = il·limitada)
Alternative Speed 2 = Velocitat alternativa 2 (%, 0 = il·limitada)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Nucli de CPU
Current GPU Driver = Current GPU Driver
Debugging = Depuració
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = AVÍS: Aquest joc requereix rellotge de CPU per defecte.
Deposterize = Deposteritzar
Deposterize Tip = Arregla petits errors a les textures causades per l'escalat
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Desactivat
Display Layout && Effects = Editor de l'àrea de pantalla
Display Resolution (HW scaler) = Resolució de pantalla (escalat per maquinari)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Activar Cardboard VR
FPS = FPS
Frame Rate Control = Control de taxa de quadres (FPS)
@ -614,6 +619,7 @@ High = Alta
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Přesunout
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresivní
Alternative Speed = Alternativní rychlost (v %, 0 = neomezeno)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Ladění
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterizace
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Zobrazit editor rozvržení
Display Resolution (HW scaler) = Rozlišení obrazovky (Hardwarové zvětšení)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kontrola frekvence snímků
@ -614,6 +619,7 @@ High = Vysoká
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í

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Flyt
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Brug UI baggrund
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressiv
Alternative Speed = Alternativ hastighed (i %, 0 = ubegrænset)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Fejlfinding
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Retter visuel banding fejl in opskalerede textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Skærmopløsning (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Frameratekontrol
@ -614,6 +619,7 @@ High = Høj
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Bewegen
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Benutze UI Hintergrund
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressiv
Alternative Speed = Alternative Geschwindigkeit
Alternative Speed 2 = Alternative Geschwindigkeit 2 (in %, 0 = unlimitiert)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU Kern
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warnung: Für dieses Spiel muss die CPU Taktrate auf den Standartwert gestellt sein.
Deposterize = Tonwertverschmelzung
Deposterize Tip = Behebt visuelle Artifakte von hochskalierten Texturen
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Deaktiviert
Display Layout && Effects = Bildschirmlayout Editor
Display Resolution (HW scaler) = Bildschirmauflösung (HW Skalierung)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Cardboard VR aktivieren
FPS = FPS
Frame Rate Control = Frameratenkontrolle
@ -614,6 +619,7 @@ High = Hoch
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Lassi to leko'napa
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debug
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Atoro'i FRna
@ -614,6 +619,7 @@ High = High
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

View File

@ -424,6 +424,7 @@ Log in = Log in
Log out = Log out
Logging in... = Logging in...
Logged in! = Logged in!
More information... = More information...
Move = Move
Move Up = Move Up
Move Down = Move Down
@ -582,6 +583,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Alternative speed (in %, 0 = unlimited)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -599,7 +601,10 @@ Balanced = Balanced
Bicubic = Bicubic
Copy to texture = Copy to texture
Current GPU Driver = Current GPU Driver
Default GPU driver = Default GPU driver
Disable culling = Disable culling
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
GPUReadbackRequired = Warning: This game requires "Skip GPU Readbacks" to be set to Off.
Both = Both
Buffer graphics commands (faster, input lag) = Buffer graphics commands (faster, input lag)
@ -638,6 +643,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = ¡Sesión iniciada!
Logging in... = Iniciando sesión...
More information... = More information...
Move = Posición
Move Down = Bajar
Move Up = Subir
@ -558,6 +559,7 @@ Use UI background = Usar imagen de fondo
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = ×16
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresivo
Alternative Speed = Velocidad alternativa (%, 0 = ilimitada)
Alternative Speed 2 = Velocidad alternativa 2 (%, 0 = ilimitada)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Núcleo de CPU
Current GPU Driver = Current GPU Driver
Debugging = Depuración
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = AVISO: Este juego requiere reloj de CPU por defecto.
Deposterize = Deposterizar
Deposterize Tip = Arregla pequeños errores en las texturas causadas por el escalado
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Desactivado
Display Layout && Effects = Editar pantalla y Shaders
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Activar Cardboard VR
FPS = FPS
Frame Rate Control = Control de tasa de cuadros (FPS)
@ -614,6 +619,7 @@ High = Alta
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Mover
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Usar fondo como interfaz
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = ×16
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresivo
Alternative Speed = Velocidad alternativa (en %, 0 = ilimitada)
Alternative Speed 2 = Velocidad alternativa 2 (en %, 0 = ilimitada)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Núcleo de CPU
Current GPU Driver = Current GPU Driver
Debugging = Depuración
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = ADVERTENCIA: Este juego requiere reloj de CPU en valores por defecto.
Deposterize = Deposterizado
Deposterize Tip = Arregla glitches de banda visual en texturas causadas por el escalado.
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Apagado
Display Layout && Effects = Editar pantalla y Shaders
Display Resolution (HW scaler) = Resolución de pantalla (escalado por HW)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Activar Cardboard VR
FPS = FPS
Frame Rate Control = Control de Framerate
@ -614,6 +619,7 @@ High = Alta
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = حرکت
Move Down = حرکت به پایین
Move Up = حرکت به بالا
@ -558,6 +559,7 @@ Use UI background = استفاده به عنوان پس زمینه؟
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = ‎شدید
Alternative Speed = ‎سرعت ثانویه
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU هسته
Current GPU Driver = Current GPU Driver
Debugging = ‎دیباگ کردن
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = ‎باید روی پیش فرض تنظیم باشد CPU هشدار: برای این بازی سرعت
Deposterize = Deposterize
Deposterize Tip = ‎مشکل نواری شدن در تکسچر های تغییر سایز یافته را رفع می کند
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ‎ویرایشگر چیدمان صفحه
Display Resolution (HW scaler) = ‎رزولوشن صفحه
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = ‎فریم بر ثانیه
Frame Rate Control = ‎کنترل سرعت فریم
@ -614,6 +619,7 @@ High = ‎زیاد
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 = ‎رزولوشن داخلی

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9x PSP
10x PSP = 10x PSP
16x = 16x
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressiivinen
Alternative Speed = Vaihtoehtoinen nopeus
Alternative Speed 2 = Vaihtoehtoinen nopeus 2
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Vian etsintä
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Varoitus: Tämä peli vaatii Prosessorin kellon olevan asetettu oletusarvoon.
Deposterize = Häiriöiden korjaus
Deposterize Tip = Korjaa visuaaliset viivamaiset häiriöt ylöskaalattujen tekstuurien yhteydessä.
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Poistettu käytöstä
Display Layout && Effects = Näyttöasettelu ja -efektit
Display Resolution (HW scaler) = Näyttöresoluutio (Laitteiston skaalaaja)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Ota käyttöön Cardboard VR
FPS = FPS
Frame Rate Control = Kuvataajuuden hallinta
@ -614,6 +619,7 @@ High = Korkea
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Déplacer
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Utiliser le fond d'écran
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agressif
Alternative Speed = Vitesse alternative 1 (en %, 0 = illimitée)
Alternative Speed 2 = Vitesse alternative 2 (en %, 0 = illimitée)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Méthode CPU
Current GPU Driver = Current GPU Driver
Debugging = Débogage
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Avertissement : Ce jeu requiert la fréquence CPU par défaut.
Deposterize = Améliorer
Deposterize Tip = Corrige le bug graphique qui fait apparaître des bandes dans les textures mises à l'échelle
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Désactivé
Display Layout && Effects = Éditeur d'affichage
Display Resolution (HW scaler) = Définition d'affichage (mise à l'échelle matérielle)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Activer Cardboard VR
FPS = FPS
Frame Rate Control = Contrôle de la fréquence de rafraîchissement des images
@ -614,6 +619,7 @@ High = Haute
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Posición
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = ×16
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresivo
Alternative Speed = Velocidade alternativa (%, 0 = ilimitada)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Depuración
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterizar
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Control de tasa de cadros (FPS)
@ -614,6 +619,7 @@ High = Alta
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = ΜΕΤΑΚΙΝΗΣΗ
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Χρήση φόντου UI
9x PSP = 4320×2448(9×)
10x PSP = 4800×2720(10×)
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Εξαναγκαστική
Alternative Speed = Εναλακτική προβολή ταχύτητας (στα %, 0 = απεριόριστη)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Πυρήνες CPU
Current GPU Driver = Current GPU Driver
Debugging = Αποσφαλάτωση
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Προειδοποίηση: Αυτό το παιχνίδι απαιτεί το ρολόι CPU να οριστεί σε προεπιλογή.
Deposterize = Εξομάλυνση Διαβαθμίσεων
Deposterize Tip = Διορθώνει μικρές ατέλειες υφών μετά την κλιμάκωσή τους
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Απενεργοποιημένο
Display Layout && Effects = Επεξεργασία διάταξης οθόνης
Display Resolution (HW scaler) = Ανάλυση οθόνης (Κλιμακοτής hardware)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Ενεργοποίηση Cardboard VR
FPS = FPS
Frame Rate Control = Ρυθμίσεις Ρυθμού Καρέ
@ -614,6 +619,7 @@ High = Υψηλή
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 = Εσωτερική Ανάλυση

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = הגבלת מהירות
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = ניפוי
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = כמות פריימים לשנייה
Frame Rate Control = שליטה על קצב פריימים
@ -614,6 +619,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = תוריהמ תלבגה
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = יופינ
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = היינשל םימיירפ תומכ
Frame Rate Control = םימיירפ בצק לע הטילש
@ -614,6 +619,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Pomakni
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Koristi UI pozadinu
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresivno
Alternative Speed = Alternativna brzina (u %, 0 = unlimited)
Alternative Speed 2 = Alternativna brzina 2 (u %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU jezgra
Current GPU Driver = Current GPU Driver
Debugging = Otklanjanje grešaka
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Upozorenje: Ova igra zahtijeva CPU sat da bude postavljen na obično.
Deposterize = Deposteriziranje
Deposterize Tip = Popravlja vizualne banding glitcheve u podignutim teksturama
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Isključeno
Display Layout && Effects = Prikaz layout uređivača
Display Resolution (HW scaler) = Prikaz rezolucije (HW mjeritelj)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate kontrole
@ -614,6 +619,7 @@ High = Visoko
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Mozgat
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Alapértelmezett háttér használata
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresszív
Alternative Speed = Alternatív sebesség
Alternative Speed 2 = Alternatív sebesség 2 (%-ban, 0 = korlátlan)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU mag
Current GPU Driver = Current GPU Driver
Debugging = Hibakeresés
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Figyelem: Ehhez a játékhoz az alapértelmezett CPU órajel beállítás szükséges!
Deposterize = Keményítés megszüntetése
Deposterize Tip = Skálázásból eredő kisebb textúra hibák megszüntetése.
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Letiltva
Display Layout && Effects = Elrendezés szerkesztő
Display Resolution (HW scaler) = Megjelenítési felbontás (HW skálázó)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Cardboard VR engedélyezése
FPS = FPS
Frame Rate Control = Képkocka sebesség szabályozása
@ -614,6 +619,7 @@ High = Magas
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Pindah
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Gunakan latar belakang UI
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresif
Alternative Speed = Kecepatan alternatif (dalam %, 0 = tak terbatas)
Alternative Speed 2 = Kecepatan alternatif 2 (dalam %, 0 = tak terbatas)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Inti CPU
Current GPU Driver = Current GPU Driver
Debugging = Awakutu
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Peringatan: Permainan ini membutuhkan pewaktu CPU untuk disetel ke awal.
Deposterize = Deposterisasi
Deposterize Tip = Memperbaiki gangguan pita visual pada tekstur yang ditingkatkan
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Nonaktif
Display Layout && Effects = Penyesuaian tata letak tampilan
Display Resolution (HW scaler) = Resolusi tampilan (penskala HW)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Aktifkan Cardboard VR
FPS = FPS
Frame Rate Control = Kontrol laju bingkai
@ -614,6 +619,7 @@ High = Tinggi
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

View File

@ -400,6 +400,7 @@ Log in = Accedi
Log out = Esci
Logged in! = Accesso eseguito!
Logging in... = Accesso in corso...
More information... = More information...
Move = Sposta
Move Down = Sposta giù
Move Up = Sposta su
@ -558,6 +559,7 @@ Use UI background = Usa sfondo interfaccia
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressivo
Alternative Speed = Velocità alternativa (in %, 0 = illimitata)
Alternative Speed 2 = Velocità alternativa 2 (in %, 0 = illimitata)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Core CPU
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Attenzione: Per questo gioco il clock della CPU deve avere i valori predefiniti.
Deposterize = De-posterizza
Deposterize Tip = Sistema i possibili problemi visivi nelle texture upscalate
@ -598,6 +601,8 @@ Disable culling = Disable culling
Disabled = Disabilitato
Display Layout && Effects = Editor Display
Display Resolution (HW scaler) = Risoluzione Display (scaler HW)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Attiva Cardboard VR
FPS = FPS
Frame Rate Control = Controllo Framerate
@ -615,6 +620,7 @@ High = Alta
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

View File

@ -400,6 +400,7 @@ Log in = ログイン
Log out = ログアウト
Logged in! = ログインしました!
Logging in... = ログイン中...
More information... = More information...
Move = 移動
Move Down = 下へ移動
Move Up = 上へ移動
@ -558,6 +559,7 @@ Use UI background = UIの背景を使う
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = 最大限
Alternative Speed = カスタム速度1 (%で指定、0 = 無制限)
Alternative Speed 2 = カスタム速度2 (%で指定、0 = 無制限)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPUコア
Current GPU Driver = Current GPU Driver
Debugging = デバッグ
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = 警告: このゲームではCPUクロックをデフォルトに設定する必要があります。
Deposterize = ポスタライズを解除する
Deposterize Tip = アップスケールされたテクスチャのバンディングを修正する
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = 無効
Display Layout && Effects = 画面のレイアウトを編集する
Display Resolution (HW scaler) = 画面解像度 (HWスケーラー)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Cardboard VRを有効にする
FPS = FPS
Frame Rate Control = フレームレートのコントロール
@ -614,6 +619,7 @@ High = 高
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 = 内部解像度

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Pindahno
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresif
Alternative Speed = Kacepetan Alternatif
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Pilian debug
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterisasikan
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Tata letak Tampilan editor
Display Resolution (HW scaler) = Resolusi tampilan (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kontrol Frame-rate
@ -614,6 +619,7 @@ High = Dhuwur
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

View File

@ -400,6 +400,7 @@ Log in = 로그인
Log out = 로그아웃
Logging in... = 로그인 중...
Logged in! = 로그인했습니다!
More information... = More information...
Move = 이동
Move Up = 위로 이동
Move Down = 아래로 이동
@ -558,6 +559,7 @@ Use UI background = UI 배경 사용
9x PSP = PSP 9배
10x PSP = PSP 10배
16x = 16배
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = 과격
Alternative Speed = 대체 속도 (%, 0 = 무제한)
Alternative Speed 2 = 대체 속도 2 (%, 0 = 무제한)
@ -575,7 +577,10 @@ Balanced = 평형
Bicubic = 고등차수보간
Copy to texture = Copy to texture
Current GPU Driver = Current GPU Driver
Default GPU driver = Default GPU driver
Disable culling = Disable culling
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
GPUReadbackRequired = 경고: 이 게임은 "GPU 다시 읽기 건너뛰기"를 꺼짐으로 설정해야 합니다.
Both = 둘 다
Buffer graphics commands (faster, input lag) = 버퍼 그래픽 명령 (빠름, 입력 지연)
@ -614,6 +619,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 = 내부 해상도

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = ເຄື່ອນຍ້າຍ
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = ໃຊ້ເປັນພາບພື້ນຫຼັງ
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = ຮຸນແຮງ
Alternative Speed = ຄວາມໄວເສີມ (ໃນ %, 0 = ບໍ່ຈຳກັດ)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = ການແກ້ຈຸດບົກພ່ອງ
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = ແກ້ໄຂການສະແດງຜົນຜິດພາດຂອງແຖບພາບເມື່ອປັບເພີ່ມສເກລພື້ນຜິວ
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = ແກ້ໄຂຮູບແບບໜ້າຈໍ
Display Resolution (HW scaler) = ຄວາມລະອຽດໜ້າຈໍ (ຕາມຮາດແວຣ໌)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = ຄວບຄຸມເຟຣມເຣດ
@ -614,6 +619,7 @@ High = ສູງ
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 = ຄວາມລະອຽດພາຍໃນ

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Perkelti
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9 kartus didesnė originali PSP rezoliucija
10x PSP = 10 kartų didesnė originali PSP rezoliucija
16x = 16 kartų
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Alternatyvus greitis (procentais, 0 procentų = neribotas)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Testinis režimas
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = "Deposterize"
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Ekrano rezoliucija ("HW" ištiesinimas)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = Kadrai per sekundę
Frame Rate Control = Kadrų kontrolė
@ -614,6 +619,7 @@ High = Aukšta
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Kelajuan alternatif
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Pempepijat
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kawalan kadar Frame
@ -614,6 +619,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Slepen
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = UI-achtergrond gebruiken
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agressief
Alternative Speed = Alternatieve snelheid (in %, 0 = onbeperkt)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU-core
Current GPU Driver = Current GPU Driver
Debugging = Fouten opsporen
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Waarschuwing: Deze game vereist de standaard CPU-kloksnelheid.
Deposterize = Kleuren beperken opheffen
Deposterize Tip = Verhelpt visuele streepglitches in opgeschaalde textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Schermweergave bewerken
Display Resolution (HW scaler) = Schermresolutie (hardware)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerateinstellingen
@ -614,6 +619,7 @@ High = Hoog
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Move
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressive
Alternative Speed = Alternativ hastighet
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -614,6 +619,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Zaloguj
Log out = Wyloguj
Logged in! = Zalogowano!
Logging in... = Logowanie...
More information... = More information...
Move = Przenieś
Move Down = Przenieś w dół
Move Up = Przenieś w górę
@ -563,6 +564,7 @@ Use UI background = Użyj tego tła
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresywne
Alternative Speed = Alternatywna prędkość (w %, 0 = bez limitu)
Alternative Speed 2 = Alternatywna prędkość 2 (w %, 0 = bez limitu)
@ -592,6 +594,7 @@ Copy to texture = Copy to texture
CPU Core = Rdzeń procesora
Current GPU Driver = Current GPU Driver
Debugging = Debugowanie
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Uwaga: Ta gra wymaga, by częstotliwość taktowania CPU była domyślna.
Deposterize = Deposteryzacja
Deposterize Tip = Poprawia banding koloru na przeskalowanych teksturach
@ -602,6 +605,8 @@ Disable culling = Disable culling
Disabled = Wył.
Display Layout && Effects = Edytor położenia obrazu
Display Resolution (HW scaler) = Rozdzielczość ekranu (skaler sprz.)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Aktywuj Cardboard VR
FPS = Tylko FPS
Frame Rate Control = Kontrola klatek na sekundę
@ -619,6 +624,7 @@ High = Wysokie
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

View File

@ -424,6 +424,7 @@ Log in = Logar
Log out = Sair
Logging in... = Logando...
Logged in! = Logado!
More information... = More information...
Move = Mover
Move Up = Mover pra Cima
Move Down = Mover pra Baixo
@ -582,6 +583,7 @@ Use UI background = Usar cenário de fundo da interface do usuário
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agressivo
Alternative Speed = Velocidade alternativa (em %, 0 = ilimitada)
Alternative Speed 2 = Velocidade alternativa 2 (em %, 0 = ilimitada)
@ -599,7 +601,10 @@ Balanced = Balanceado
Bicubic = Bi-cúbico
Copy to texture = Copiar pra textura
Current GPU Driver = Driver da GPU Atual
Default GPU driver = Default GPU driver
Disable culling = Desativar o culling
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
GPUReadbackRequired = Aviso: Este jogo requer que o "Ignorar Leituras da GPU" esteja definido como Desligado.
Both = Ambos
Buffer graphics commands (faster, input lag) = Buffer dos comandos dos gráficos (mais rápido, atraso na entrada dos dados)
@ -638,6 +643,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...
Integer scale factor = Fator de escala do inteiro
Internal Resolution = Resolução interna

View File

@ -424,6 +424,7 @@ Log in = Cadastrar
Log out = Sair
Logged in! = Cadastrado!
Logging in... = A cadastrar...
More information... = More information...
Move = Mover
Move Down = Mover para baixo
Move Up = Mover para cima
@ -582,6 +583,7 @@ Use UI background = Usar cenário de fundo da interface do usuário.
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agressivo
Alternative Speed = Velocidade alternativa (em %, 0 = ilimitada)
Alternative Speed 2 = Segunda Velocidade alternativa (em %, 0 = ilimitada)
@ -611,6 +613,7 @@ Copy to texture = Copy to texture
CPU Core = Núcleo da CPU
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Aviso: Este jogo requer que o clock da CPU esteja definido como padrão.
Deposterize = Deposterizar
Deposterize Tip = Conserta erros gráficos visuais das faixas nas texturas ampliadas.
@ -621,6 +624,8 @@ Disable culling = Disable culling
Disabled = Desativado
Display Layout && Effects = Mostrar o editor dos esquemas
Display Resolution (HW scaler) = Resolução da tela (Dimensionador do hardware)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Ativar o VR Cardboard
FPS = FPS (Frames Por Segundo)
Frame Rate Control = Controlo da taxa dos frames
@ -638,6 +643,7 @@ High = Alta
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

View File

@ -401,6 +401,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Mișcă
Move Down = Move Down
Move Up = Move Up
@ -559,6 +560,7 @@ Use UI background = Use UI background
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresiv
Alternative Speed = Viteză alternativă (în %, 0 = nelimitat)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
@ -588,6 +590,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Depanare
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterizare
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -598,6 +601,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Rezoluție ecran (scalare HW)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Control rată de cadre
@ -615,6 +620,7 @@ High = Înalt
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ă

View File

@ -400,6 +400,7 @@ Log in = Войти
Log out = Выйти
Logged in! = Вход совершен!
Logging in... = Вход...
More information... = More information...
Move = Положение
Move Down = Сдвинуть вверх
Move Up = Сдвинуть вниз
@ -558,6 +559,7 @@ Use UI background = Использовать фон интерфейса
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Принудительно
Alternative Speed = Другая скорость (в %, 0 = без ограничений)
Alternative Speed 2 = Другая скорость 2 (в %, 0 = без ограничений)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Ядро ЦП
Current GPU Driver = Current GPU Driver
Debugging = Отладка
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Предупреждение: для этой игры требуется выставить стандартную частоту ЦП.
Deposterize = Депостеризация
Deposterize Tip = Исправляет полосатость в масштабированных текстурах
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Отключено
Display Layout && Effects = Редактор расположения экрана и эффектов
Display Resolution (HW scaler) = Разрешение экрана (аппаратное)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Включить Cardboard VR
FPS = FPS
Frame Rate Control = Управление частотой кадров
@ -614,6 +619,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 = Внутренние разрешение

View File

@ -401,6 +401,7 @@ Log in = Logga in
Log out = Logga ut
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Flytta
Move Down = Flytta ner
Move Up = Flytta upp
@ -559,6 +560,7 @@ Use UI background = Använd UI-bakgrund
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Aggressiv
Alternative Speed = Alternativ hastighet
Alternative Speed 2 = Alternativ hastighet 2 (%, 0 = obegränsad)
@ -588,6 +590,7 @@ Copy to texture = Copy to texture
CPU Core = CPU-kärna
Current GPU Driver = Current GPU Driver
Debugging = Debuggning
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -598,6 +601,8 @@ Disable culling = Disable culling
Disabled = Avstängd
Display Layout && Effects = Skärmlayout och effekter
Display Resolution (HW scaler) = Skärmupplösning (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate-kontroll
@ -615,6 +620,7 @@ High = High
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Galawin
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Use UI background
9x PSP = 9 na ulit ng PSP
10x PSP = 10 ulit ng PSP
16x = 16 na ulit
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresibo
Alternative Speed = Alternatibong bilis
Alternative Speed 2 = Alternatibong bilis 2 (in %, 0 = unlimited)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = BABALA: This game requires the CPU clock to be set to default.
Deposterize = Deposterize
Deposterize Tip = Fixes visual banding glitches in upscaled textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Pag kontrol ng frame rate
@ -614,6 +619,7 @@ High = Mataas
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

View File

@ -401,6 +401,7 @@ Log in = เข้าใช้งาน
Log out = ออกจากการใช้งาน
Logged in! = เข้าใช้งานแล้ว!
Logging in... = กำลังเข้าใช้งาน...
More information... = More information...
Move = ย้าย
Move Down = ย้ายลงล่าง
Move Up = ย้ายขึ้นบน
@ -559,6 +560,7 @@ Use UI background = ใช้เป็นภาพพื้นหลัง
9x PSP = 9× PSP (4320x2448p)
10x PSP = 10× PSP (4800x2720p)
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = รุนแรง
Alternative Speed = เพิ่ม-ลดระดับความเร็ว (ใน %, 0 = ไม่จำกัด)
Alternative Speed 2 = เพิ่ม-ลดระดับความเร็ว 2 (ใน %, 0 = ไม่จำกัด)
@ -588,6 +590,7 @@ Copy to texture = คัดลอกไปยังเท็คเจอร์
CPU Core = แกนกลางหน่วยประมวลผลหลัก
Current GPU Driver = ไดรเวอร์ GPU ที่ใช้งานอยู่ตอนนี้
Debugging = การแก้ไขจุดบกพร่อง
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = คำเตือน: เกมนี้ควรปรับใช้การจำลองความถี่ของซีพียูเป็นค่าอัตโนมัติ
Deposterize = ดีโพสเตอร์ไรซ์
Deposterize Tip = แก้ไขขอบภาพเบลอ หรือภาพแสดงผลผิดพลาด เมื่อปรับเพิ่มสเกลพื้นผิว
@ -598,6 +601,8 @@ Disable culling = ปิดใช้งาน culling
Disabled = ปิดการใช้งาน
Display Layout && Effects = รูปแบบหน้าจอ และเอฟเฟ็คท์
Display Resolution (HW scaler) = ความละเอียดหน้าจอ (ตามฮาร์ดแวร์)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = เปิดการทำงานแว่นการ์ดบอร์ด VR
FPS = เฟรมต่อวินาที
Frame Rate Control = การควบคุมเฟรมเรท
@ -615,7 +620,7 @@ High = สูง
Hybrid = ไฮบริด
Hybrid + Bicubic = ไฮบริด + ไบคิวบิค
Ignore camera notch when centering = ละเว้นตำแหน่งจอแหว่งเพื่อปรับภาพให้อยู่ตรงกลาง
Install Custom Driver... = ติดตั้งไดรเวอร์ปรับแต่ง...
Install custom driver... = ติดตั้งไดรเวอร์ปรับแต่ง...
Integer scale factor = สเกลภาพจำนวนเต็ม
Internal Resolution = ความละเอียดภายใน
Lazy texture caching = แคชพื้นผิวแบบหยาบ (เร็วขึ้น)

View File

@ -402,6 +402,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Taşı
Move Down = Move Down
Move Up = Move Up
@ -560,6 +561,7 @@ Use UI background = Arayüz arkaplanı olarak kullan
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Agresif
Alternative Speed = Alternatif Hız (% 0 = sınırsız)
Alternative Speed 2 = Alternatif Hız 2 (% 0 = sınırsız)
@ -589,6 +591,7 @@ Copy to texture = Copy to texture
CPU Core = İşlemci Çekirdeği
Current GPU Driver = Current GPU Driver
Debugging = Hata Ayıklama
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Uyarı: Bu oyun CPU saatinin varsayılana ayarlanmasını gerektirir.
Deposterize = Deposterize
Deposterize Tip = Yeniden ölçeklenen dokulardaki görsel şerit hatalarını düzeltir
@ -599,6 +602,8 @@ Disable culling = Disable culling
Disabled = Devre dışı
Display Layout && Effects = Görüntü Düzeni Düzenleyicisi
Display Resolution (HW scaler) = Görüntü Çözünürlüğü (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Cardboard VR'ı Etkinleştirin
FPS = FPS
Frame Rate Control = Kare hızı denetimi
@ -616,6 +621,7 @@ High = Yüksek
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

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Положення
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Використати фон інтерфейсу
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Примусово
Alternative Speed = Альтернативна шв. (к %, 0 = необмежено)
Alternative Speed 2 = Альтернативна шв. 2 (к %, 0 = необмежено)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = Ядро CPU
Current GPU Driver = Current GPU Driver
Debugging = Налагодження
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Попередження: Ця гра вимагає, щоб частота процесора була встановлена за замовчуванням.
Deposterize = Деполяризація
Deposterize Tip = Виправляє візуальні глюки в масштабованих текстурах
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Вимкнено
Display Layout && Effects = Редактор розташування екрану
Display Resolution (HW scaler) = Розширення екрану (HW масштабування)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Увімкнути Cardboard VR
FPS = FPS
Frame Rate Control = Управління частотою кадрів
@ -614,6 +619,7 @@ High = Висока
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 = Внутрішнє розширення

View File

@ -400,6 +400,7 @@ Log in = Log in
Log out = Log out
Logged in! = Logged in!
Logging in... = Logging in...
More information... = More information...
Move = Di chuyển
Move Down = Move Down
Move Up = Move Up
@ -558,6 +559,7 @@ Use UI background = Sử dụng nền UI
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = Xâm lược
Alternative Speed = Tốc độ luân phiên
Alternative Speed 2 = Tốc độ luân phiên 2 (trong %, 0 = không giới hạn)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU core
Current GPU Driver = Current GPU Driver
Debugging = Debugging
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = Cảnh báo: Trò chơi này yêu cầu đồng hồ CPU được đặt mặc định.
Deposterize = Chống poster hóa
Deposterize Tip = Sửa lỗi trục trặc hình ảnh trong textures
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Vô hiệu hóa
Display Layout && Effects = Chỉnh bố trí hiển thị
Display Resolution (HW scaler) = Độ phân giải màn hình (HW scaler)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS (khung hình/giây)
Frame Rate Control = Điều khiển tốc độ khung hình
@ -614,6 +619,7 @@ High = Cao
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

View File

@ -400,6 +400,7 @@ Log in = 登录
Log out = 退出
Logged in! = 登录成功!
Logging in... = 登录中…
More information... = More information...
Move = 移动位置
Move Down = 移至下层
Move Up = 移至上层
@ -558,6 +559,7 @@ Use UI background = 使用背景为壁纸
9x PSP = 9倍PSP
10x PSP = 10倍PSP
16x = 16倍
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = 激进
Alternative Speed = 备选速度1
Alternative Speed 2 = 备选速度2
@ -587,6 +589,7 @@ Copy to texture = 复制到纹理
CPU Core = CPU核心模式
Current GPU Driver = 使用的GPU驱动
Debugging = 调试设置
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = 警告此游戏需要将CPU频率设置为默认。
Deposterize = 色调融合
Deposterize Tip = 修复纹理被放大时可见的缝隙
@ -597,6 +600,8 @@ Disable culling = 关闭遮挡剔除
Disabled = 禁用
Display Layout && Effects = 屏幕布局和滤镜
Display Resolution (HW scaler) = 屏幕分辨率
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = 启用Cardboard VR
FPS = 每秒帧数 (FPS)
Frame Rate Control = 帧率设置
@ -614,6 +619,7 @@ High = 高质量
Hybrid = 混合
Hybrid + Bicubic = 混合+双三次
Ignore camera notch when centering = 忽略摄像头挖孔
Install custom driver... = Install custom driver...
Install Custom Driver... = 安装自选驱动...
Integer scale factor = 整倍缩放
Internal Resolution = 内部分辨率

View File

@ -400,6 +400,7 @@ Log in = 登入
Log out = 登出
Logged in! = 已登入!
Logging in... = 正在登入…
More information... = More information...
Move = 移動
Move Down = 下移
Move Up = 上移
@ -558,6 +559,7 @@ Use UI background = 使用 UI 背景
9x PSP = 9× PSP
10x PSP = 10× PSP
16x = 16×
AdrenoTools driver manager = AdrenoTools driver manager
Aggressive = 積極
Alternative Speed = 替代速度 (於 %0 = 無限制)
Alternative Speed 2 = 替代速度 2 (於 %0 = 無限制)
@ -587,6 +589,7 @@ Copy to texture = Copy to texture
CPU Core = CPU 核心
Current GPU Driver = Current GPU Driver
Debugging = 偵錯
Default GPU driver = Default GPU driver
DefaultCPUClockRequired = 警告:這個遊戲需要將 CPU 時脈設為預設值
Deposterize = 色調混合
Deposterize Tip = 修正放大化紋理中的視覺帶狀故障
@ -597,6 +600,8 @@ Disable culling = Disable culling
Disabled = Disabled
Display Layout && Effects = 顯示版面配置與效果
Display Resolution (HW scaler) = 顯示解析度 (硬體縮放)
Driver requires Android API version %1, current is %2 = Driver requires Android API version %1, current is %2
Drivers = Drivers
Enable Cardboard VR = 啟用 Cardboard VR
FPS = FPS
Frame Rate Control = 影格速率控制
@ -614,6 +619,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 = 內部解析度