mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Add setting to configure simulated key-up delay for mouse wheel events
This commit is contained in:
parent
420069ba9a
commit
dd15a1573d
@ -839,6 +839,7 @@ static const ConfigSetting controlSettings[] = {
|
||||
ConfigSetting("ConfineMap", &g_Config.bMouseConfine, false, CfgFlag::PER_GAME),
|
||||
ConfigSetting("MouseSensitivity", &g_Config.fMouseSensitivity, 0.1f, CfgFlag::PER_GAME),
|
||||
ConfigSetting("MouseSmoothing", &g_Config.fMouseSmoothing, 0.9f, CfgFlag::PER_GAME),
|
||||
ConfigSetting("MouseWheelUpDelayMs", &g_Config.iMouseWheelUpDelayMs, 80, CfgFlag::PER_GAME),
|
||||
|
||||
ConfigSetting("SystemControls", &g_Config.bSystemControls, true, CfgFlag::DEFAULT),
|
||||
ConfigSetting("RapidFileInterval", &g_Config.iRapidFireInterval, 5, CfgFlag::DEFAULT),
|
||||
|
@ -404,6 +404,7 @@ public:
|
||||
bool bMouseConfine; // Trap inside the window.
|
||||
float fMouseSensitivity;
|
||||
float fMouseSmoothing;
|
||||
int iMouseWheelUpDelayMs;
|
||||
|
||||
bool bSystemControls;
|
||||
int iRapidFireInterval;
|
||||
|
@ -767,7 +767,11 @@ void GameSettingsScreen::CreateControlsSettings(UI::ViewGroup *controlsSettings)
|
||||
bool enableMouseSettings = false;
|
||||
#endif
|
||||
if (enableMouseSettings) {
|
||||
// The mousewheel button-release setting is independent of actual mouse delta control.
|
||||
controlsSettings->Add(new ItemHeader(co->T("Mouse", "Mouse settings")));
|
||||
auto wheelUpDelaySlider = controlsSettings->Add(new PopupSliderChoice(&g_Config.iMouseWheelUpDelayMs, 10, 300, 1, co->T("Mouse wheel button-release delay"), screenManager()));
|
||||
wheelUpDelaySlider->SetFormat(di->T("%d ms"));
|
||||
|
||||
CheckBox *mouseControl = controlsSettings->Add(new CheckBox(&g_Config.bMouseControl, co->T("Use Mouse Control")));
|
||||
mouseControl->OnClick.Add([=](EventParams &e) {
|
||||
if (g_Config.bMouseControl)
|
||||
@ -919,9 +923,11 @@ void GameSettingsScreen::CreateNetworkingSettings(UI::ViewGroup *networkingSetti
|
||||
}
|
||||
#endif
|
||||
|
||||
auto di = GetI18NCategory(I18NCat::DIALOG);
|
||||
|
||||
networkingSettings->Add(new ItemHeader(n->T("Misc", "Misc (default = compatibility)")));
|
||||
networkingSettings->Add(new PopupSliderChoice(&g_Config.iPortOffset, 0, 60000, 10000, n->T("Port offset", "Port offset (0 = PSP compatibility)"), 100, screenManager()));
|
||||
networkingSettings->Add(new PopupSliderChoice(&g_Config.iMinTimeout, 0, 15000, 0, n->T("Minimum Timeout", "Minimum Timeout (override in ms, 0 = default)"), 50, screenManager()));
|
||||
networkingSettings->Add(new PopupSliderChoice(&g_Config.iMinTimeout, 0, 15000, 0, n->T("Minimum Timeout", "Minimum Timeout (override in ms, 0 = default)"), 50, screenManager()))->SetFormat(di->T("%d ms"));
|
||||
networkingSettings->Add(new CheckBox(&g_Config.bForcedFirstConnect, n->T("Forced First Connect", "Forced First Connect (faster Connect)")));
|
||||
}
|
||||
|
||||
|
@ -1269,7 +1269,6 @@ void NativeTouch(const TouchInput &touch) {
|
||||
|
||||
// up, down
|
||||
static double g_wheelReleaseTime[2]{};
|
||||
static const double RELEASE_TIME = 0.1; // about 3 frames at 30hz.
|
||||
|
||||
static void ProcessWheelRelease(InputKeyCode keyCode, double now, bool keyPress) {
|
||||
int dir = keyCode - NKCODE_EXT_MOUSEWHEEL_UP;
|
||||
@ -1283,7 +1282,8 @@ static void ProcessWheelRelease(InputKeyCode keyCode, double now, bool keyPress)
|
||||
}
|
||||
|
||||
if (keyPress) {
|
||||
g_wheelReleaseTime[dir] = now + RELEASE_TIME;
|
||||
float releaseTime = (float)g_Config.iMouseWheelUpDelayMs * (1.0f / 1000.0f);
|
||||
g_wheelReleaseTime[dir] = now + releaseTime;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1600,6 +1600,8 @@ public abstract class NativeActivity extends Activity {
|
||||
throw new Exception();
|
||||
} catch (Exception e) {
|
||||
NativeApp.reportException(e, params);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
@ -141,6 +141,7 @@ Low end radius = Low end radius
|
||||
Mouse = إعدادات الماوس
|
||||
Mouse sensitivity = حساسية الماوس
|
||||
Mouse smoothing = تنعيم حركة الماوس
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = 'M'يمكنك الأن تخطيط الماوس في شاشة التخطيط عن طريق أيقونة .
|
||||
None (Disabled) = لا شئ (معطل)
|
||||
Off = مغلق
|
||||
@ -349,6 +350,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP حجم
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Нищо (изключено)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Ràdio inferior
|
||||
Mouse = Configuració del ratolí
|
||||
Mouse sensitivity = Sensibilitat del ratolí
|
||||
Mouse smoothing = Suavitat del ratolí
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Podeu mapejar el ratolí als paràmetres de control prement la icona 'M'.
|
||||
None (Disabled) = Desactivat
|
||||
Off = No
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d segons
|
||||
* PSP res = * resolució PSP
|
||||
Active = Actiu
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Žádné (zakázáno)
|
||||
Off = Vypnuto
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d vteřin
|
||||
* PSP res = * PSP rozlišení
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Instillinger af mus
|
||||
Mouse sensitivity = Følsomhed af muss
|
||||
Mouse smoothing = Udjævning af mus
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Du kan nu mappe musen i kontrol mapningsskærmen ved at trykke på 'M' ikonet.
|
||||
None (Disabled) = Ingen (deaktiveret)
|
||||
Off = Slukket
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d sekunder
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Einstellung für Maussteuerung
|
||||
Mouse sensitivity = Mausempfindlichkeit
|
||||
Mouse smoothing = Mausglättung
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Nun können Sie in der Tastenbelegung die Maustasten benutzen in dem Sie auf das 'M' Symbol klicken.
|
||||
None (Disabled) = Kein (Deaktiviert)
|
||||
Off = Aus
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d Sekunden
|
||||
* PSP res = * PSP Auflösung
|
||||
Active = Aktiv
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -157,6 +157,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -365,6 +366,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Radio inferior
|
||||
Mouse = Ajustes de ratón
|
||||
Mouse sensitivity = Sensibilidad del ratón
|
||||
Mouse smoothing = Suavidad del ratón
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Puedes mapear el ratón en los ajustes de controles presionando el icono 'M'.
|
||||
None (Disabled) = Desactivado
|
||||
Off = No
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d segundos
|
||||
* PSP res = * resolución PSP
|
||||
Active = Activo
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Radio inferior
|
||||
Mouse = Ajustes de ratón
|
||||
Mouse sensitivity = Sensibilidad del ratón
|
||||
Mouse smoothing = Suavidad del ratón
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Puedes controlar el ratón en la pantalla de controles presionando el icono 'M'.
|
||||
None (Disabled) = Desactivado
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Activo
|
||||
|
@ -133,6 +133,7 @@ Low end radius = شعاع کم پایان
|
||||
Mouse = تنظیمات موس
|
||||
Mouse sensitivity = حساسیت موس
|
||||
Mouse smoothing = روان کردن حرکت موس
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = در قسمت تنظیمات کنترلر میتوانید از دکمه های موس استفاده کنید M با انتخاب آیکون
|
||||
None (Disabled) = هیچ کدام (غیر فعال)
|
||||
Off = خاموش
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Hiiren herkkyys
|
||||
Mouse smoothing = Hiiren tasoitus
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Pois
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Paramètres de la souris
|
||||
Mouse sensitivity = Sensibilité de la souris
|
||||
Mouse smoothing = Lissage du déplacement de la souris
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Vous pouvez maintenant utiliser la souris dans l'écran de réassignation des touches en cliquant sur le bouton "M".
|
||||
None (Disabled) = Désactivée
|
||||
Off = Désactivé
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d secondes
|
||||
* PSP res = × définition PSP
|
||||
Active = Actif
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Desactivado
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Ρυθμίσεις ποντικιού
|
||||
Mouse sensitivity = Ευαισθησία ποντικιού
|
||||
Mouse smoothing = Εξομάλυνση ποντικιού
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Τωρα μπορείτε να ρυθμίσετε το ποντίκι στην οθόνη χαρτογράφησης ελέγχου πατώντας το εικονίδιο "M".
|
||||
None (Disabled) = Κανένα (απενεργοποιημένο)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d δευτερόλεπτα
|
||||
* PSP res = * ανάλυση PSP
|
||||
Active = ΕΝΕΡΓΟ
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Postavke miša
|
||||
Mouse sensitivity = Senzitivnost miša
|
||||
Mouse smoothing = Izglađivanje miša
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Sada možeš postaviti miš u ekranu postavljanja kontroli pritiskajuci 'M' tipku.
|
||||
None (Disabled) = Nema (Isključeno)
|
||||
Off = Isključeno
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d sekundi
|
||||
* PSP res = * PSP res
|
||||
Active = Aktivno
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Egér beállítások
|
||||
Mouse sensitivity = Egér érzékenység
|
||||
Mouse smoothing = Egér simítás
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Az 'M' ikonra kattintva egérgombokat is társíthatsz a különböző gombokhoz.
|
||||
None (Disabled) = Nincs (letiltva)
|
||||
Off = Ki
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d másodpercig
|
||||
* PSP res = * PSP felbontás
|
||||
Active = Aktív
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Radius kelas atas
|
||||
Mouse = Pengaturan mouse
|
||||
Mouse sensitivity = Sensitivitas mouse
|
||||
Mouse smoothing = Kehalusan mouse
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Anda sekarang dapat memetakan mouse di layar pemetaan kontrol dengan menekan ikon 'M'.
|
||||
None (Disabled) = Tidak ada (nonaktif)
|
||||
Off = Mati
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d detik
|
||||
* PSP res = * PSP res
|
||||
Active = Aktif
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Raggio inferiore
|
||||
Mouse = Impostazioni Mouse
|
||||
Mouse sensitivity = Sensibilità Mouse
|
||||
Mouse smoothing = Fluidità Mouse
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Ora puoi mappare il mouse nella schermata di mappatura controlli premendo l'icona 'M'.
|
||||
None (Disabled) = Nessuno (disattivo)
|
||||
Off = Disattiva
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d secondi
|
||||
* PSP res = * definizione PSP
|
||||
Active = Attiva
|
||||
|
@ -133,6 +133,7 @@ Low end radius = 最小動作の半径
|
||||
Mouse = マウスの設定
|
||||
Mouse sensitivity = マウスの感度
|
||||
Mouse smoothing = マウスのスムージング
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = キーの設定画面で「M」のアイコンを押すとマウスボタンを設定できます。
|
||||
None (Disabled) = なし (無効)
|
||||
Off = オフ
|
||||
@ -341,6 +342,7 @@ Vertex = 頂点
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d 秒
|
||||
* PSP res = * PSP 解像度
|
||||
Active = アクティブ
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Ora ana (Ora Aktif)
|
||||
Off = Mati
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d detik
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = 하단 반경
|
||||
Mouse = 마우스 설정
|
||||
Mouse sensitivity = 마우스 감도
|
||||
Mouse smoothing = 마우스 스무딩
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = 이제 'M' 아이콘을 눌러 제어 매핑 화면에서 마우스를 매핑할 수 있습니다.
|
||||
None (Disabled) = 없음 (비활성화)
|
||||
Off = 끔
|
||||
@ -341,6 +342,7 @@ Vertex = 꼭짓점
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d 초
|
||||
* PSP res = * PSP 리소스
|
||||
Active = 활성화
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = ການຕັ້ງຄ່າເມົ້າ
|
||||
Mouse sensitivity = ຄວາມໄວຕໍ່ການຕອບສະໜອງຂອງເມົ້າ
|
||||
Mouse smoothing = ຄວາມມື່ນໄຫຼຂອງເມົ້າ
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = ສາມາດປັບປຸ່ມເມົ້າໄດ້ໃນຫົວຂໍ້ປ່ຽນແປງຄ່າຄວບຄຸມ \n ໂດຍການກົດໄອຄອນ 'M'.
|
||||
None (Disabled) = ບໍ່ມີ (ປິດການໃຊ້ງານ)
|
||||
Off = ປິດ
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d ວິນາທີ
|
||||
* PSP res = * ຂະໜາດຈໍ PSP
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Nieko (išjungta)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d sekundžių
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Tetapan Tetikus
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Muisinstellingen
|
||||
Mouse sensitivity = Muisgevoeligheid
|
||||
Mouse smoothing = Muissmoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = U kunt nu de muis indelen via het besturingsindelingscherm door op het 'M'-icoon te drukken.
|
||||
None (Disabled) = Geen (uitgeschakeld)
|
||||
Off = Uit
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP-resolutie
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = None (disabled)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d seconds
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Promień dolny
|
||||
Mouse = Ustawienia myszy
|
||||
Mouse sensitivity = Czułość myszy
|
||||
Mouse smoothing = Wygładzanie myszy
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Możesz teraz przypisać myszkę na ekranie mapowania przycisków klikając w ikonkę 'M'.
|
||||
None (Disabled) = Brak (wył.)
|
||||
Off = Wył.
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d sekund
|
||||
* PSP res = * rozdz. PSP
|
||||
Active = Aktywny
|
||||
|
@ -157,6 +157,7 @@ Low end radius = Raio low end
|
||||
Mouse = Configurações do mouse
|
||||
Mouse sensitivity = Sensibilidade do mouse
|
||||
Mouse smoothing = Suavização do mouse
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Agora você pode mapear o mouse na tela de mapeamento do controle pressionando o ícone 'M'.
|
||||
None (Disabled) = Nenhuma (desativado)
|
||||
Off = Desligado
|
||||
@ -365,6 +366,7 @@ Vertex = Vértice
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d segundos
|
||||
* PSP res = * Resolução do PSP
|
||||
Active = Ativo
|
||||
|
@ -157,6 +157,7 @@ Low end radius = Raio inferior
|
||||
Mouse = Definições do Rato
|
||||
Mouse sensitivity = Sensibilidade do Rato
|
||||
Mouse smoothing = Suavização do Rato
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Agora podes mapear o rato na tela de mapeamento dos controlos pressionando o ícone 'M'.
|
||||
None (Disabled) = Nenhum (desativado)
|
||||
Off = Desativado
|
||||
@ -365,6 +366,7 @@ Vertex = Vértice
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d segundos
|
||||
* PSP res = * Resolução da PSP
|
||||
Active = Ativo
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Setări Mouse
|
||||
Mouse sensitivity = Sensitivitate Mouse
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Fara (dezactivat)
|
||||
Off = Off
|
||||
@ -342,6 +343,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d secunde
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Радиус минимального положения
|
||||
Mouse = Настройки мыши
|
||||
Mouse sensitivity = Чувствительность мыши
|
||||
Mouse smoothing = Сглаживание мыши
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Вы можете назначить мышь на экране управления, нажав на иконку 'M'.
|
||||
None (Disabled) = Выключено
|
||||
Off = Выкл.
|
||||
@ -341,6 +342,7 @@ Vertex = Вершина
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d секунд
|
||||
* PSP res = * разр. PSP
|
||||
Active = Активно
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Inner-radie
|
||||
Mouse = Musinställningar
|
||||
Mouse sensitivity = Muskänslighet
|
||||
Mouse smoothing = Musutjämning
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Du kan nu mappa musrörelser genom att klicka på "M"-ikonen.
|
||||
None (Disabled) = Ingen (av)
|
||||
Off = Av
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d sekunder
|
||||
* PSP res = * PSP res
|
||||
Active = Aktiv
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Mouse settings
|
||||
Mouse sensitivity = Mouse sensitivity
|
||||
Mouse smoothing = Mouse smoothing
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
|
||||
None (Disabled) = Wala (Di Gagana)
|
||||
Off = Off
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d segundo
|
||||
* PSP res = * PSP res
|
||||
Active = Active
|
||||
|
@ -133,6 +133,7 @@ Low end radius = รัศมีของ Low end
|
||||
Mouse = การตั้งค่าเมาส์
|
||||
Mouse sensitivity = ความไวต่อการตอบสนองของเมาส์
|
||||
Mouse smoothing = ความลื่นไหลของเมาส์
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = สามารถปรับปุ่มเมาส์ได้ในหัวข้อเปลี่ยนแปลงค่าควบคุม\nโดยการกดปรับในช่อง "M"
|
||||
None (Disabled) = ไม่มี (ปิดการใช้งาน)
|
||||
Off = ปิด
|
||||
@ -341,6 +342,7 @@ Vertex = เวอร์เท็ค
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d วินาที
|
||||
* PSP res = * ขนาดจอ PSP
|
||||
Active = เปิดการทำงาน
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Düşük uç yarıçapı
|
||||
Mouse = Fare ayarları
|
||||
Mouse sensitivity = Fare hassasiyeti
|
||||
Mouse smoothing = Fare yumuşatma
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Fareye 'Kontrolleri Ayarlama' bölümünden 'M' simgesine basarak kontrol atayabilirsiniz.
|
||||
None (Disabled) = Hiçbiri (Devre dışı)
|
||||
Off = Kapalı
|
||||
@ -343,6 +344,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d saniyeler
|
||||
* PSP res = * PSP Çözünürlüğü
|
||||
Active = Etkin
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Налаштування миші
|
||||
Mouse sensitivity = Чутливість миші
|
||||
Mouse smoothing = Згладжування миші
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Тепер ви можете налаштувати мишу на екрані керування, натиснувши на іконку 'M'.
|
||||
None (Disabled) = Вимкнено
|
||||
Off = Вимкнено
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d сек
|
||||
* PSP res = * дозв. PSP
|
||||
Active = Активно
|
||||
|
@ -133,6 +133,7 @@ Low end radius = Low end radius
|
||||
Mouse = Cài đặt chuột
|
||||
Mouse sensitivity = Độ nhạy của chuột
|
||||
Mouse smoothing = Chuột smoothing (mịn màng)
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = Nhấn biểu tượng 'M' để thay đổi gì gì đó của chuột.
|
||||
None (Disabled) = không (vô hiệu)
|
||||
Off = Tắt
|
||||
@ -341,6 +342,7 @@ Vertex = Vertex
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d giây
|
||||
* PSP res = * PSP như thật
|
||||
Active = Hoạt động
|
||||
|
@ -133,6 +133,7 @@ Low end radius = 起步半径
|
||||
Mouse = 鼠标设置
|
||||
Mouse sensitivity = 鼠标灵敏度
|
||||
Mouse smoothing = 鼠标平滑度
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = 可以在按键映射界面按下“M”图标来映射鼠标。
|
||||
None (Disabled) = 无 (禁用)
|
||||
Off = 关闭
|
||||
@ -341,6 +342,7 @@ Vertex = 顶点着色器
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d秒
|
||||
* PSP res = * PSP分辨率
|
||||
Active = 激活
|
||||
|
@ -133,6 +133,7 @@ Low end radius = 低端半徑
|
||||
Mouse = 滑鼠設定
|
||||
Mouse sensitivity = 滑鼠敏感度
|
||||
Mouse smoothing = 滑鼠平滑度
|
||||
Mouse wheel button-release delay = Mouse wheel button-release delay
|
||||
MouseControl Tip = 您現在可以透過按下「M」圖示在控制對應畫面中對應滑鼠。
|
||||
None (Disabled) = 無 (已停用)
|
||||
Off = 關閉
|
||||
@ -341,6 +342,7 @@ Vertex = 頂點
|
||||
VFPU = VFPU
|
||||
|
||||
[Dialog]
|
||||
%d ms = %d ms
|
||||
%d seconds = %d 秒
|
||||
* PSP res = * PSP 解析度
|
||||
Active = 啟用
|
||||
|
Loading…
Reference in New Issue
Block a user