mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Change "Customize tilt..." to "Tilt control setup"
This commit is contained in:
parent
6b7a51d73e
commit
cdca958781
47 changed files with 108 additions and 45 deletions
|
@ -29,6 +29,14 @@ enum Command {
|
|||
new: String,
|
||||
key: String,
|
||||
},
|
||||
RenameKey {
|
||||
section: String,
|
||||
old: String,
|
||||
new: String,
|
||||
},
|
||||
SortSection {
|
||||
section: String,
|
||||
},
|
||||
RemoveKey {
|
||||
section: String,
|
||||
key: String,
|
||||
|
@ -108,6 +116,26 @@ fn add_new_key(target_ini: &mut IniFile, section: &str, key: &str) -> io::Result
|
|||
Ok(())
|
||||
}
|
||||
|
||||
fn rename_key(target_ini: &mut IniFile, section: &str, old: &str, new: &str) -> io::Result<()> {
|
||||
if let Some(section) = target_ini.get_section_mut(section) {
|
||||
let _ = section.rename_key(old, new);
|
||||
} else {
|
||||
println!("No section {}", section);
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn sort_section(target_ini: &mut IniFile, section: &str) -> io::Result<()> {
|
||||
if let Some(section) = target_ini.get_section_mut(section) {
|
||||
section.sort();
|
||||
} else {
|
||||
println!("No section {}", section);
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
// TODO: Look into using https://github.com/Byron/google-apis-rs/tree/main/gen/translate2 for initial translations.
|
||||
|
||||
fn main() {
|
||||
let opt = Opt::from_args();
|
||||
|
||||
|
@ -158,6 +186,12 @@ fn main() {
|
|||
Command::RemoveUnknownLines {} => {
|
||||
deal_with_unknown_lines(&reference_ini, &mut target_ini, true).unwrap();
|
||||
}
|
||||
Command::SortSection { ref section } => sort_section(&mut target_ini, section).unwrap(),
|
||||
Command::RenameKey {
|
||||
ref section,
|
||||
ref old,
|
||||
ref new,
|
||||
} => rename_key(&mut target_ini, section, old, new).unwrap(),
|
||||
Command::AddNewKey {
|
||||
ref section,
|
||||
ref key,
|
||||
|
@ -192,6 +226,12 @@ fn main() {
|
|||
} => {
|
||||
add_new_key(&mut reference_ini, section, key).unwrap();
|
||||
}
|
||||
Command::SortSection { ref section } => sort_section(&mut reference_ini, section).unwrap(),
|
||||
Command::RenameKey {
|
||||
ref section,
|
||||
ref old,
|
||||
ref new,
|
||||
} => rename_key(&mut reference_ini, section, old, new).unwrap(),
|
||||
Command::MoveKey {
|
||||
ref old,
|
||||
ref new,
|
||||
|
|
|
@ -82,6 +82,28 @@ impl Section {
|
|||
true
|
||||
}
|
||||
|
||||
pub fn rename_key(&mut self, old: &str, new: &str) {
|
||||
let prefix = old.to_owned() + " =";
|
||||
let mut found_index = None;
|
||||
for (index, line) in self.lines.iter().enumerate() {
|
||||
if line.starts_with(&prefix) {
|
||||
found_index = Some(index);
|
||||
}
|
||||
}
|
||||
if let Some(index) = found_index {
|
||||
let line = self.lines.remove(index);
|
||||
let line = new.to_owned() + " =" + line.strip_prefix(&prefix).unwrap();
|
||||
self.insert_line_if_missing(&line);
|
||||
} else {
|
||||
let name = &self.name;
|
||||
println!("didn't find a line starting with {prefix} in section {name}");
|
||||
}
|
||||
}
|
||||
|
||||
pub fn sort(&mut self) {
|
||||
self.lines.sort();
|
||||
}
|
||||
|
||||
pub fn comment_out_lines_if_not_in(&mut self, other: &Section) {
|
||||
// Brute force (O(n^2)). Bad but not a problem.
|
||||
|
||||
|
|
|
@ -694,7 +694,7 @@ void GameSettingsScreen::CreateControlsSettings(UI::ViewGroup *controlsSettings)
|
|||
if (System_GetPropertyInt(SYSPROP_DEVICE_TYPE) == DEVICE_TYPE_MOBILE) {
|
||||
controlsSettings->Add(new CheckBox(&g_Config.bHapticFeedback, co->T("HapticFeedback", "Haptic Feedback (vibration)")));
|
||||
|
||||
Choice *customizeTilt = controlsSettings->Add(new Choice(co->T("Customize tilt")));
|
||||
Choice *customizeTilt = controlsSettings->Add(new Choice(co->T("Tilt control setup")));
|
||||
customizeTilt->OnClick.Handle(this, &GameSettingsScreen::OnTiltCustomize);
|
||||
customizeTilt->SetEnabledFunc([] {
|
||||
return g_Config.iTiltInputType != 0;
|
||||
|
|
|
@ -91,7 +91,9 @@ void TiltAnalogSettingsScreen::CreateViews() {
|
|||
|
||||
settings->SetSpacing(0);
|
||||
|
||||
|
||||
static const char *tiltTypes[] = { "None (Disabled)", "Analog Stick", "D-PAD", "PSP Action Buttons", "L/R Trigger Buttons" };
|
||||
settings->Add(new ItemHeader(co->T("Tilt control setup")));
|
||||
settings->Add(new PopupMultiChoice(&g_Config.iTiltInputType, co->T("Tilt Input Type"), tiltTypes, 0, ARRAY_SIZE(tiltTypes), co->GetName(), screenManager()))->OnChoice.Add(
|
||||
[=](UI::EventParams &p) {
|
||||
//when the tilt event type is modified, we need to reset all tilt settings.
|
||||
|
@ -100,7 +102,6 @@ void TiltAnalogSettingsScreen::CreateViews() {
|
|||
RecreateViews();
|
||||
return UI::EVENT_DONE;
|
||||
});
|
||||
|
||||
settings->Add(new ItemHeader(co->T("Calibration")));
|
||||
TextView *calibrationInfo = new TextView(co->T("To Calibrate", "Hold device at your preferred angle and press Calibrate."));
|
||||
calibrationInfo->SetSmall(true);
|
||||
|
|
|
@ -51,7 +51,6 @@ Control Mapping = تخطيط التحكم
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = تعديل نسق إعدادات اللمس...
|
||||
Customize tilt = إمالة مخصصة...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = مساحة المنطقة الميتة
|
||||
Disable D-Pad diagonals (4-way touch) = (4طرق للمس)تعطيل أقطار D-Pad
|
||||
|
@ -100,6 +99,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = حدود رفيعة
|
||||
Tilt control setup = إمالة مخصصة...
|
||||
Tilt Input Type = نوع الإدخال المنطقة
|
||||
Tilt Sensitivity along X axis = X حساسية المنطقة علي طول محور
|
||||
Tilt Sensitivity along Y axis = Y حساسية المنطقة علي طول محور
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Control mapping
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Избиране на контроли
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone радиус
|
||||
Disable D-Pad diagonals (4-way touch) = Изключи D-Pad диагонали (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Assignar botons
|
|||
Custom Key Setting = Ajust de tecla personalitzada
|
||||
Customize = Personalitzar
|
||||
Customize Touch Controls = Editar pantalla tàctil
|
||||
Customize tilt = Personalitzar acceleròmetre
|
||||
D-PAD = Creueta
|
||||
Deadzone radius = Ràdio de zona inactiva
|
||||
Disable D-Pad diagonals (4-way touch) = Desactivar diagonals de creueta
|
||||
|
@ -92,6 +91,7 @@ Swipe = Lliscar cap a
|
|||
Swipe sensitivity = Sensibilitat de lliscament
|
||||
Swipe smoothing = Fluïdesa del lliscat
|
||||
Thin borders = Vores fines
|
||||
Tilt control setup = Personalitzar acceleròmetre
|
||||
Tilt Input Type = Tipus de control de l'acceleròmetre
|
||||
Tilt Sensitivity along X axis = Sensibilitat d'inclinació de l'eix X
|
||||
Tilt Sensitivity along Y axis = Sensibilitat d'inclinació de l'eix Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Mapování ovládání
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Upravit rozdělení dotykového ovládání...
|
||||
Customize tilt = Přizpůsobit náklon...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Poloměr mrtvé zóny
|
||||
Disable D-Pad diagonals (4-way touch) = Zakázat diagonální D-Pad (čtyřsměrný dotek)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Tenké okraje
|
||||
Tilt control setup = Přizpůsobit náklon...
|
||||
Tilt Input Type = Typ vstupu náklonu
|
||||
Tilt Sensitivity along X axis = Citlivost náklonu podle osy X
|
||||
Tilt Sensitivity along Y axis = Citlivost náklonu podle osy Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Ændre tasteplaceringen
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Tilpas layout...
|
||||
Customize tilt = Tilpas tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Dødzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Deaktiver D-Pad diagonaler (4-vejs touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Tynde rammer
|
||||
Tilt control setup = Tilpas tilt...
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt følsomhed langs X aksen
|
||||
Tilt Sensitivity along Y axis = Tilt følsomhed langs Y aksen
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Tastenbelegung ändern
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Layout anpassen
|
||||
Customize tilt = Neigung anpassen
|
||||
D-PAD = Steuerkreuz
|
||||
Deadzone radius = Radius für tote Zone
|
||||
Disable D-Pad diagonals (4-way touch) = Deaktiviere D-Pad Diagonalen (4-Wege-Touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Dünne Ränder
|
||||
Tilt control setup = Neigung anpassen
|
||||
Tilt Input Type = Eingabetyp für Neigen
|
||||
Tilt Sensitivity along X axis = Neigungsempfindlichkeit über X-Achse
|
||||
Tilt Sensitivity along Y axis = Neigungsempfindlichkeit über Y-Achse
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Atoro'i tombolna
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -67,7 +67,6 @@ Control Mapping = Control mapping
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -115,6 +114,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Asignar botones
|
|||
Custom Key Setting = Ajuste de tecla personalizada
|
||||
Customize = Personalizar
|
||||
Customize Touch Controls = Editar pantalla táctil
|
||||
Customize tilt = Personalizar acelerómetro
|
||||
D-PAD = Cruceta
|
||||
Deadzone radius = Radio de zona inactiva
|
||||
Disable D-Pad diagonals (4-way touch) = Desactivar diagonales de cruceta
|
||||
|
@ -92,6 +91,7 @@ Swipe = Deslizar hacia
|
|||
Swipe sensitivity = Sensibilidad del deslizado
|
||||
Swipe smoothing = Fluidez del deslizado
|
||||
Thin borders = Bordes finos
|
||||
Tilt control setup = Personalizar acelerómetro
|
||||
Tilt Input Type = Tipo de control del acelerómetro
|
||||
Tilt Sensitivity along X axis = Sensibilidad de inclinación del eje X
|
||||
Tilt Sensitivity along Y axis = Sensibilidad de inclinación del eje Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Asignar botones
|
|||
Custom Key Setting = Configurar teclas personalizadas
|
||||
Customize = Personalizar
|
||||
Customize Touch Controls = Editar pantalla táctil
|
||||
Customize tilt = Personalizar acelerómetro
|
||||
D-PAD = Cruceta
|
||||
Deadzone radius = Radio de zona inactiva
|
||||
Disable D-Pad diagonals (4-way touch) = Desactivar diagonales de la cruceta
|
||||
|
@ -92,6 +91,7 @@ Swipe = Deslizar hacia
|
|||
Swipe sensitivity = Sensibilidad del deslizado
|
||||
Swipe smoothing = Fluidez del deslizado
|
||||
Thin borders = Bordes finos
|
||||
Tilt control setup = Personalizar acelerómetro
|
||||
Tilt Input Type = Tipo de control del acelerómetro
|
||||
Tilt Sensitivity along X axis = Sensibilidad de inclinación del eje X
|
||||
Tilt Sensitivity along Y axis = Sensibilidad de inclinación del eje Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = تنظیمات کنترلر
|
|||
Custom Key Setting = شخصی سازی تنظیمات کلید
|
||||
Customize = شخصی سازی
|
||||
Customize Touch Controls = ...ویرایش چیدمان دکمه های تاچ
|
||||
Customize tilt = تنظیمات شتاب سنج
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = شعاع ناحیه غیر فعال
|
||||
Disable D-Pad diagonals (4-way touch) = غیر فعال کردن جهت های قطری (تاچ ۴ جهته)
|
||||
|
@ -92,6 +91,7 @@ Swipe = حساسیت
|
|||
Swipe sensitivity = حساسیت کش رفتن
|
||||
Swipe smoothing = ضربه تند وشدید زدن
|
||||
Thin borders = نوار نازک
|
||||
Tilt control setup = تنظیمات شتاب سنج
|
||||
Tilt Input Type = ...استفاده از شتاب سنج به عنوان
|
||||
Tilt Sensitivity along X axis = X حساسیت شتاب سنج در جهت
|
||||
Tilt Sensitivity along Y axis = Y حساسیت شتاب سنج در جهت
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Control mapping
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Réassignation des touches
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Disposition personnalisée...
|
||||
Customize tilt = Personnaliser inclinaison analogique...
|
||||
D-PAD = Croix directionnelle
|
||||
Deadzone radius = Rayon de la zone morte
|
||||
Disable D-Pad diagonals (4-way touch) = Désactiver les diagonales de la croix directionnelle
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Bordures fines
|
||||
Tilt control setup = Personnaliser inclinaison analogique...
|
||||
Tilt Input Type = Type inclinaison analogique
|
||||
Tilt Sensitivity along X axis = Sensibilité de l'inclinaison analogique sur l'axe X
|
||||
Tilt Sensitivity along Y axis = Sensibilité de l'inclinaison analogique sur l'axe Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Asignar botóns
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Deseño personalizado...
|
||||
Customize tilt = Personalizar acelerómetro
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Radio de zona inactiva
|
||||
Disable D-Pad diagonals (4-way touch) = Desactivar diagonais do D-Pad
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Bordes finos
|
||||
Tilt control setup = Personalizar acelerómetro
|
||||
Tilt Input Type = Tipo de control do acelerómetro
|
||||
Tilt Sensitivity along X axis = Sensibilidade de inclinación do eixe X
|
||||
Tilt Sensitivity along Y axis = Sensibilidade de inclinación do eixe Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Χαρτογράφηση κουμπιών
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Προσαρμοσμένη διάταξη...
|
||||
Customize tilt = Προσαρμογή κλίσης...
|
||||
D-PAD = Ψηφιακό πληκτρολόγιο
|
||||
Deadzone radius = Ακτίνα ορίων
|
||||
Disable D-Pad diagonals (4-way touch) = Απενεργοποίηση διαγωνίων ψηφιακού πληκρολογίου
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Λεπτά διαχωριστικά
|
||||
Tilt control setup = Προσαρμογή κλίσης...
|
||||
Tilt Input Type = Τύπο εισόδου κλίσης
|
||||
Tilt Sensitivity along X axis = Ευαισθησία οριζόντιου άξονα
|
||||
Tilt Sensitivity along Y axis = Ευαισθησία κάθετου άξονα
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = מיפוי מקשים
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = םישקמ יופימ
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Namještanje kontrola
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Izmijeni raspored dodirnih kontrola...
|
||||
Customize tilt = Izmijeni tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Radijus mrtve zone
|
||||
Disable D-Pad diagonals (4-way touch) = Isključi D-Pad dijagonale (4-smjerni dodir)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Tanki rubovi
|
||||
Tilt control setup = Izmijeni tilt...
|
||||
Tilt Input Type = Tip ulaza tilta
|
||||
Tilt Sensitivity along X axis = Tilt senzitivnost X osi
|
||||
Tilt Sensitivity along Y axis = Tilt senzitivnost Y osi
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Gombok beállítása
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Elrendezés testreszabása…
|
||||
Customize tilt = Döntés testreszabása…
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Holtzóna sugara
|
||||
Disable D-Pad diagonals (4-way touch) = D-Pad átlóinak letiltása (4-irányú érintés)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Vékony szélek
|
||||
Tilt control setup = Döntés testreszabása…
|
||||
Tilt Input Type = Döntési bevitel típusa
|
||||
Tilt Sensitivity along X axis = X tengely menti döntés érzékenysége
|
||||
Tilt Sensitivity along Y axis = X tengely menti döntés érzékenysége
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Pemetaan kontrol
|
|||
Custom Key Setting = Pengaturan kunci kustom
|
||||
Customize = Sesuaikan
|
||||
Customize Touch Controls = Sesuaikan tata letak kontrol sentuh
|
||||
Customize tilt = Sesuaikan kemiringan
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Radius mati
|
||||
Disable D-Pad diagonals (4-way touch) = Matikan D-Pad diagonal (sentuhan 4 arah)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Geser
|
|||
Swipe sensitivity = Geser sensitivitas
|
||||
Swipe smoothing = Geser kehalusan
|
||||
Thin borders = Garis batas tipis
|
||||
Tilt control setup = Sesuaikan kemiringan
|
||||
Tilt Input Type = Jenis masukan kemiringan
|
||||
Tilt Sensitivity along X axis = Sensitivitas kemiringan sepanjang sumbu X
|
||||
Tilt Sensitivity along Y axis = Sensitivitas kemiringan sepanjang sumbu Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Mappatura dei Controlli
|
|||
Custom Key Setting = Impostazioni tasto personalizz.
|
||||
Customize = Personalizza
|
||||
Customize Touch Controls = Personalizza Controlli Touch
|
||||
Customize tilt = Personalizza Inclinazione
|
||||
D-PAD = Croce direzionale
|
||||
Deadzone radius = Raggio della zona morta
|
||||
Disable D-Pad diagonals (4-way touch) = Disattiva Diagonali del D-Pad (Tocco a 4-Vie)
|
||||
|
@ -91,6 +90,7 @@ Swipe = Scorrimento
|
|||
Swipe sensitivity = Sensibilità Scorrimento
|
||||
Swipe smoothing = Fluidità Scorrimento
|
||||
Thin borders = Bordi fini
|
||||
Tilt control setup = Personalizza Inclinazione
|
||||
Tilt Input Type = Tipo di Input Inclinazione
|
||||
Tilt Sensitivity along X axis = Inverti Sensibilità sull'asse X
|
||||
Tilt Sensitivity along Y axis = Inverti Sensibilità sull'asse Y
|
||||
|
|
|
@ -42,7 +42,6 @@ Confine Mouse = ウィンドウ/表示領域内でマウスをトラップする
|
|||
Control Mapping = キーマッピング(入力ボタン設定)
|
||||
Custom Key Setting = カスタムキーの設定
|
||||
Customize = カスタマイズ
|
||||
Customize tilt = 傾きをカスタマイズする
|
||||
Customize Touch Controls = 画面タッチ用コントローラーをカスタマイズする
|
||||
D-PAD = 十字キー
|
||||
Deadzone radius = デッドゾーンの半径
|
||||
|
@ -92,6 +91,7 @@ Swipe = スワイプ
|
|||
Swipe sensitivity = スワイプの感度
|
||||
Swipe smoothing = スワイプの滑らかさ
|
||||
Thin borders = 薄い枠線
|
||||
Tilt control setup = 傾きをカスタマイズする
|
||||
Tilt Input Type = 傾き入力のタイプ
|
||||
Tilt Sensitivity along X axis = X軸の傾きの感度
|
||||
Tilt Sensitivity along Y axis = Y軸の傾きの感度
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Pemetaan Kontrol
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit Sentuh Kontrol layout...
|
||||
Customize tilt = Ngatur ngiringake ...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Radius deadzone
|
||||
Disable D-Pad diagonals (4-way touch) = Mateni D-Pad diagonals (4-cara tutul)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Watesan lancip
|
||||
Tilt control setup = Ngatur ngiringake ...
|
||||
Tilt Input Type = Ngiringake Tipe input
|
||||
Tilt Sensitivity along X axis = Ngiringake sensitivitas bebarengan X sumbu
|
||||
Tilt Sensitivity along Y axis = Ngiringake sensitivitas bebarengan Y sumbu
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = 제어 맵핑
|
|||
Custom Key Setting = 커스텀 키 설정
|
||||
Customize = 맞춤설정
|
||||
Customize Touch Controls = 터치 제어 레이아웃 수정...
|
||||
Customize tilt = 기울기 맞춤설정...
|
||||
D-PAD = 십자 패드
|
||||
Deadzone radius = 데드존 반경
|
||||
Disable D-Pad diagonals (4-way touch) = 십자 패드 대각선 비활성화 (4 방향 터치)
|
||||
|
@ -91,6 +90,7 @@ Swipe = 스와이프
|
|||
Swipe sensitivity = 스와이프 감도
|
||||
Swipe smoothing = 스와이프 스무딩
|
||||
Thin borders = 얇은 테두리
|
||||
Tilt control setup = 기울기 맞춤설정...
|
||||
Tilt Input Type = 기울기 입력 유형
|
||||
Tilt Sensitivity along X axis = X 축 기울기 감도
|
||||
Tilt Sensitivity along Y axis = Y 축 기울기 감도
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = ປ່ຽນແປງຄ່າຄວບຄຸມ
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = ປັບປ່ຽນການຄວບຄຸມແບບສຳຜັດ...
|
||||
Customize tilt = ປັບແຕ່ງການອຽງໂດຍໃຊ້ເຊັນເຊີ້ຄວບຄຸມ...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = ຂອບເຂດ Deadzone
|
||||
Disable D-Pad diagonals (4-way touch) = ປິດການໃຊ້ງານປຸ່ມ D-Pad (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = ຂອບແບບບາງ
|
||||
Tilt control setup = ປັບແຕ່ງການອຽງໂດຍໃຊ້ເຊັນເຊີ້ຄວບຄຸມ...
|
||||
Tilt Input Type = ນຳເຂົ້າຮູບແບບການອຽງ
|
||||
Tilt Sensitivity along X axis = ຄວາມໄວການອຽງຕາມແກນ X
|
||||
Tilt Sensitivity along Y axis = ຄວາມໄວການອຽງໄວຕາມແກນ Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Valdymo mygtukų nustatymai
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Pakeisti liečiamo valdymo mygtukų pozicijas ir dydį...
|
||||
Customize tilt = Pakeisti pakreipimo parametrus...
|
||||
D-PAD = Krypčių mygtukai
|
||||
Deadzone radius = "Mirties zonos" spindulys
|
||||
Disable D-Pad diagonals (4-way touch) = Išjungti krypčių mygtukų įstrižainę (4 paspaudimais vienu metu liečiamam ekranui)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Ploni kraštai
|
||||
Tilt control setup = Pakeisti pakreipimo parametrus...
|
||||
Tilt Input Type = Pakreipimo įvedimo įrenginio tipas
|
||||
Tilt Sensitivity along X axis = Pakreipimo sensitivacija palei X ašį
|
||||
Tilt Sensitivity along Y axis = Pakreipimo sensitivacija palei Y ašį
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Pemetaan kawalan
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit susunan kawalan...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Lumpuhkan PadD diagonal (4-jalan sentuh)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Tepian tipis
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Besturing toewijzen
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Indeling aanraakbesturing bewerken...
|
||||
Customize tilt = Kantelen personaliseren...
|
||||
D-PAD = Richtingstoetsen
|
||||
Deadzone radius = Straal dode zone
|
||||
Disable D-Pad diagonals (4-way touch) = Diagonale pijltoetsen uitzetten (4 richtingen)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Dunne randen
|
||||
Tilt control setup = Kantelen personaliseren...
|
||||
Tilt Input Type = Invoertype voor kantelen
|
||||
Tilt Sensitivity along X axis = Kantelgevoeligheid op X-as
|
||||
Tilt Sensitivity along Y axis = Kantelgevoeligheid op Y-as
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Control mapping
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Edit touch control layout...
|
||||
Customize tilt = Customize tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Thin borders
|
||||
Tilt control setup = Tilt control setup
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Mapowanie przycisków
|
|||
Custom Key Setting = Niestandardowe Ustawienia Klawiszy
|
||||
Customize = Ustawienia Niestandardowe
|
||||
Customize Touch Controls = Edycja układu przycisków ekranowych...
|
||||
Customize tilt = Zmodyfikuj przechył...
|
||||
D-PAD = Krzyżak
|
||||
Deadzone radius = Promień martwej strefy
|
||||
Disable D-Pad diagonals (4-way touch) = Wył. przekątne krzyżaka (pozostaw 4 kierunki)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Cienkie krawędzie
|
||||
Tilt control setup = Zmodyfikuj przechył...
|
||||
Tilt Input Type = Typ przechyłu
|
||||
Tilt Sensitivity along X axis = Czułość przechyłu wzdłuż osi X
|
||||
Tilt Sensitivity along Y axis = Czułość przechyłu wzdłuż osi Y
|
||||
|
|
|
@ -67,7 +67,6 @@ Control Mapping = Mapeamento dos controles
|
|||
Custom Key Setting = Configuração Personalizada das Teclas
|
||||
Customize = Personalizar
|
||||
Customize Touch Controls = Editar esquema do controle do toque...
|
||||
Customize tilt = Personalizar inclinação...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Raio da zona morta
|
||||
Disable D-Pad diagonals (4-way touch) = Desativar diagonais do D-Pad (toque de 4 direções)
|
||||
|
@ -115,6 +114,7 @@ Swipe = Deslizar
|
|||
Swipe sensitivity = Sensibilidade do deslizar
|
||||
Swipe smoothing = Suavidade do deslizar
|
||||
Thin borders = Bordas finas
|
||||
Tilt control setup = Personalizar inclinação...
|
||||
Tilt Input Type = Controle da entrada da inclinação
|
||||
Tilt Sensitivity along X axis = Sensibilidade da inclinação junto ao eixo X
|
||||
Tilt Sensitivity along Y axis = Sensibilidade da inclinação junto ao eixo Y
|
||||
|
|
|
@ -67,7 +67,6 @@ Control Mapping = Mapeamento dos Controlos
|
|||
Custom Key Setting = Configuração Personalizada das Teclas
|
||||
Customize = Personalizar
|
||||
Customize Touch Controls = Editar disposição do controlos de toque...
|
||||
Customize tilt = Personalizar inclinação...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Raio da zona morta
|
||||
Disable D-Pad diagonals (4-way touch) = Desativar diagonais do D-Pad (toque de 4 direções)
|
||||
|
@ -115,6 +114,7 @@ Swipe = Deslizar
|
|||
Swipe sensitivity = Sensibilidade do deslizar
|
||||
Swipe smoothing = Suavidade do deslizar
|
||||
Thin borders = Bordas Finas
|
||||
Tilt control setup = Personalizar inclinação...
|
||||
Tilt Input Type = Controlo da entrada de inclinação
|
||||
Tilt Sensitivity along X axis = Sensibilidade da inclinação junto ao eixo X
|
||||
Tilt Sensitivity along Y axis = Sensibilidade da inclinação junto ao eixo Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Editare controale
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Aranjare controale touch...
|
||||
Customize tilt = Personificare înclinare...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Raza zonei moarte
|
||||
Disable D-Pad diagonals (4-way touch) = Dezactivare diagonale D-Pad (touch in 4 direcții)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Margini subțiri
|
||||
Tilt control setup = Personificare înclinare...
|
||||
Tilt Input Type = Tip intrare prin înclinare
|
||||
Tilt Sensitivity along X axis = Inversează sensitivitatea pe axa X
|
||||
Tilt Sensitivity along Y axis = Inversează sensitivitatea pe axa Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Назначение кнопок
|
|||
Custom Key Setting = Настройка кастомных кнопок
|
||||
Customize = Настроить
|
||||
Customize Touch Controls = Изменить сенсорное управление...
|
||||
Customize tilt = Настроить наклон...
|
||||
D-PAD = Крестовина
|
||||
Deadzone radius = Радиус мертвой зоны
|
||||
Disable D-Pad diagonals (4-way touch) = Отключить крестовину по диагонали
|
||||
|
@ -92,6 +91,7 @@ Swipe = Свайпы
|
|||
Swipe sensitivity = Чувствительность свайпов
|
||||
Swipe smoothing = Сглаживание свайпов
|
||||
Thin borders = Тонкие границы
|
||||
Tilt control setup = Настроить наклон...
|
||||
Tilt Input Type = Тип управления наклоном
|
||||
Tilt Sensitivity along X axis = Чувствительность наклона вдоль X
|
||||
Tilt Sensitivity along Y axis = Чувствительность наклона вдоль Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Kontrollmappning
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Anpassad layout...
|
||||
Customize tilt = Anpassa tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone-radie
|
||||
Disable D-Pad diagonals (4-way touch) = Slå av D-Pad-diagonaler (4-vägs touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe-känslighet
|
||||
Swipe smoothing = Swipe-utjämning
|
||||
Thin borders = Tunna kanter
|
||||
Tilt control setup = Tilt kontrollinställningar
|
||||
Tilt Input Type = Lutningstyp
|
||||
Tilt Sensitivity along X axis = Lutningskänslighet X
|
||||
Tilt Sensitivity along Y axis = Lutningskänslighet Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Pagtakda ng Kontrol
|
|||
Custom Key Setting = Magtakda ng pagsadyang pag-aayos sa pindutan
|
||||
Customize = Pasadya
|
||||
Customize Touch Controls = Ayusin ang mga pindutan sa screen
|
||||
Customize tilt = I-pasadya ang tilt...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Deadzone radius
|
||||
Disable D-Pad diagonals (4-way touch) = Disable D-Pad diagonals (4-way touch)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Mahagip
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Manipis na gilid
|
||||
Tilt control setup = I-pasadya ang tilt...
|
||||
Tilt Input Type = Tilt input type
|
||||
Tilt Sensitivity along X axis = Tilt sensitivity along X axis
|
||||
Tilt Sensitivity along Y axis = Tilt sensitivity along Y axis
|
||||
|
|
|
@ -42,7 +42,6 @@ Confine Mouse = จำกัดเมาส์ภายในหน้าต่
|
|||
Control Mapping = เปลี่ยนแปลงค่าควบคุม
|
||||
Custom Key Setting = ติดตั้งปุ่มคอมโบปรับแต่ง
|
||||
Customize = ปรับแต่ง
|
||||
Customize tilt = ปรับแต่งการเอียงโดยใช้เซ็นเซอร์ควบคุม...
|
||||
Customize Touch Controls = ปรับแต่งปุ่มควบคุมสัมผัสหน้าจอ
|
||||
D-PAD = ปุ่มลูกศร
|
||||
Deadzone radius = รัศมีของ Deadzone
|
||||
|
@ -92,6 +91,7 @@ Swipe = ปัดหน้าจอ
|
|||
Swipe sensitivity = ความแรงที่ใช้ปัดหน้าจอ
|
||||
Swipe smoothing = ความลื่นไหลในการปัดหน้าจอ
|
||||
Thin borders = แบบขอบบาง
|
||||
Tilt control setup = ปรับแต่งการเอียงโดยใช้เซ็นเซอร์ควบคุม...
|
||||
Tilt Input Type = รูปแบบนำเข้าการเอียง
|
||||
Tilt Sensitivity along X axis = ความไวต่อการตอบสนองเอียงตามแกน X
|
||||
Tilt Sensitivity along Y axis = ความไวต่อการตอบสนองเอียงตามแกน Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Kontrolleri Ayarla
|
|||
Custom Key Setting = Özel Tuş Ayarı
|
||||
Customize = Düzenle
|
||||
Customize Touch Controls = Dokunmatik kontrolleri düzenle...
|
||||
Customize tilt = Eğimi düzenle...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Ölü bölge yarıçapı
|
||||
Disable D-Pad diagonals (4-way touch) = D-Pad'i devre dışı bırak (4'lü Yön Tuşları)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Kaydır
|
|||
Swipe sensitivity = Kaydırma hassasiyeti
|
||||
Swipe smoothing = Pürüzsüz kaydırma
|
||||
Thin borders = İnce kenarlar
|
||||
Tilt control setup = Eğimi düzenle...
|
||||
Tilt Input Type = Eğim giriş türü
|
||||
Tilt Sensitivity along X axis = X ekseni boyunca eğim hassasiyeti
|
||||
Tilt Sensitivity along Y axis = Y ekseni boyunca eğim hassasiyeti
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Призначення кнопок
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Розташування кнопок...
|
||||
Customize tilt = Налаштування нахилу...
|
||||
D-PAD = Хрестовина
|
||||
Deadzone radius = Радіус мертвої зони
|
||||
Disable D-Pad diagonals (4-way touch) = Вимкнути хрестовину по діагоналі
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Тонкі границі (збільшення)
|
||||
Tilt control setup = Налаштування нахилу...
|
||||
Tilt Input Type = Тип управління нахилом
|
||||
Tilt Sensitivity along X axis = Чутливість нахилу по осі X
|
||||
Tilt Sensitivity along Y axis = Чутливість нахилу по осі Y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = Chỉnh nút
|
|||
Custom Key Setting = Custom Key Setting
|
||||
Customize = Customize
|
||||
Customize Touch Controls = Chỉnh vị trí nút...
|
||||
Customize tilt = Chỉnh độ nghiêng...
|
||||
D-PAD = D-Pad
|
||||
Deadzone radius = Bán kính vùng chết
|
||||
Disable D-Pad diagonals (4-way touch) = Tắt D-Pad chéo (chạm 4 hướng)
|
||||
|
@ -92,6 +91,7 @@ Swipe = Swipe
|
|||
Swipe sensitivity = Swipe sensitivity
|
||||
Swipe smoothing = Swipe smoothing
|
||||
Thin borders = Viền mỏng
|
||||
Tilt control setup = Chỉnh độ nghiêng...
|
||||
Tilt Input Type = Đầu vào kiểu nghiêng
|
||||
Tilt Sensitivity along X axis = Độ nhạy nghiêng theo chiều x
|
||||
Tilt Sensitivity along Y axis = Độ nhạy nghiêng theo chiều y
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = 按键映射
|
|||
Custom Key Setting = 自定义键位设置
|
||||
Customize = 自定义…
|
||||
Customize Touch Controls = 编辑触屏布局…
|
||||
Customize tilt = 自定义重力感应…
|
||||
D-PAD = 方向键
|
||||
Deadzone radius = 死区半径
|
||||
Disable D-Pad diagonals (4-way touch) = 禁用对角线输入(方向键)
|
||||
|
@ -92,6 +91,7 @@ Swipe = 滑动
|
|||
Swipe sensitivity = 滑动灵敏度
|
||||
Swipe smoothing = 滑动平滑度
|
||||
Thin borders = 细边框
|
||||
Tilt control setup = 自定义重力感应…
|
||||
Tilt Input Type = 重力感应按键
|
||||
Tilt Sensitivity along X axis = 沿X轴倾斜灵敏度
|
||||
Tilt Sensitivity along Y axis = 沿Y轴倾斜灵敏度
|
||||
|
|
|
@ -43,7 +43,6 @@ Control Mapping = 控制對應
|
|||
Custom Key Setting = 自訂按鍵設定
|
||||
Customize = 自訂
|
||||
Customize Touch Controls = 編輯觸控控制版面配置…
|
||||
Customize tilt = 自訂傾斜…
|
||||
D-PAD = 方向鍵
|
||||
Deadzone radius = 死區半徑
|
||||
Disable D-Pad diagonals (4-way touch) = 停用方向鍵對角線 (四向觸控)
|
||||
|
@ -91,6 +90,7 @@ Swipe = 滑動
|
|||
Swipe sensitivity = 滑動敏感度
|
||||
Swipe smoothing = 滑動平滑度
|
||||
Thin borders = 特細框線
|
||||
Tilt control setup = 自訂傾斜…
|
||||
Tilt Input Type = 傾斜輸入類型
|
||||
Tilt Sensitivity along X axis = 沿 X 軸傾斜敏感度
|
||||
Tilt Sensitivity along Y axis = 沿 Y 軸傾斜敏感度
|
||||
|
|
Loading…
Add table
Reference in a new issue