Additional Joystick options

This commit is contained in:
Jasmine Iwanek
2025-08-26 19:51:37 -04:00
parent ab7de13297
commit 817bfa5aec
28 changed files with 3205 additions and 673 deletions

View File

@@ -88,27 +88,52 @@ static const joystick_t joystick_none = {
static const struct {
const joystick_t *joystick;
} joysticks[] = {
{ &joystick_none },
{ &joystick_2axis_2button },
{ &joystick_2button_gamepad },
{ &joystick_2button_flight_yoke },
{ &joystick_2axis_4button },
{ &joystick_4button_gamepad },
{ &joystick_4button_flight_yoke },
{ &joystick_2axis_6button },
{ &joystick_2axis_8button },
{ &joystick_3axis_2button },
{ &joystick_2button_yoke_throttle },
{ &joystick_3axis_4button },
{ &joystick_steering_wheel_4_button },
{ &joystick_4button_yoke_throttle },
{ &joystick_4axis_4button },
{ &joystick_ch_flightstick_pro },
{ &joystick_ch_flightstick_pro_ch_pedals },
{ &joystick_sw_pad },
{ &joystick_tm_fcs },
{ &joystick_tm_fcs_rcs },
{ NULL }
{ &joystick_none },
{ &joystick_generic_paddle },
{ &joystick_2axis_1button },
{ &joystick_2axis_2button },
{ &joystick_2axis_3button },
{ &joystick_2axis_4button },
{ &joystick_2axis_6button },
{ &joystick_2axis_8button },
{ &joystick_3axis_2button },
{ &joystick_3axis_3button },
{ &joystick_3axis_4button },
{ &joystick_4axis_2button },
{ &joystick_4axis_3button },
{ &joystick_4axis_4button },
{ &joystick_2button_gamepad },
{ &joystick_3button_gamepad },
{ &joystick_4button_gamepad },
{ &joystick_6button_gamepad },
{ &joystick_gravis_gamepad },
{ &joystick_2button_flight_yoke },
{ &joystick_3button_flight_yoke },
{ &joystick_4button_flight_yoke },
{ &joystick_2button_yoke_throttle },
{ &joystick_3button_yoke_throttle },
{ &joystick_4button_yoke_throttle },
{ &joystick_steering_wheel_2_button },
{ &joystick_steering_wheel_3_button },
{ &joystick_steering_wheel_4_button },
{ &joystick_ch_flightstick },
{ &joystick_ch_flightstick_ch_pedals },
{ &joystick_ch_flightstick_ch_pedals_pro },
{ &joystick_ch_flightstick_pro },
{ &joystick_ch_flightstick_pro_ch_pedals },
{ &joystick_ch_flightstick_pro_ch_pedals_pro },
{ &joystick_ch_virtual_pilot },
{ &joystick_ch_virtual_pilot_ch_pedals },
{ &joystick_ch_virtual_pilot_ch_pedals_pro },
{ &joystick_ch_virtual_pilot_pro },
{ &joystick_ch_virtual_pilot_pro_ch_pedals },
{ &joystick_ch_virtual_pilot_pro_ch_pedals_pro },
{ &joystick_sw_pad },
{ &joystick_tm_fcs },
{ &joystick_tm_fcs_rcs },
{ &joystick_tm_formula_t1t2 },
{ &joystick_tm_formula_t1t2wa },
{ NULL }
};
static joystick_instance_t *joystick_instance[GAMEPORT_MAX] = { NULL, NULL };

View File

@@ -57,6 +57,22 @@ ch_flightstick_pro_close(UNUSED(void *priv))
//
}
static uint8_t
ch_flightstick_read(UNUSED(void *priv))
{
uint8_t ret = 0xf0;
uint8_t gp = 0;
if (JOYSTICK_PRESENT(gp, 0)) {
if (joystick_state[gp][0].button[0])
ret &= ~0x10;
if (joystick_state[gp][0].button[1])
ret &= ~0x20;
}
return ret;
}
static uint8_t
ch_flightstick_pro_read(UNUSED(void *priv))
{
@@ -72,20 +88,81 @@ ch_flightstick_pro_read(UNUSED(void *priv))
ret &= ~0x40;
if (joystick_state[gp][0].button[3])
ret &= ~0x80;
// POV Hat
if (joystick_state[gp][0].pov[0] != -1) {
// POV Up
if ((joystick_state[gp][0].pov[0] > 315) || (joystick_state[gp][0].pov[0] < 45))
ret &= ~0xf0;
ret &= ~0xf0; // 1, 2, 3, 4
// POV Right
else if ((joystick_state[gp][0].pov[0]) >= 45 && (joystick_state[gp][0].pov[0] < 135))
ret &= ~0xb0;
else if ((joystick_state[gp][0].pov[0] >= 45) && (joystick_state[gp][0].pov[0] < 135))
ret &= ~0xb0; // 1, 2, 4
// POV Down
else if ((joystick_state[gp][0].pov[0]) >= 135 && (joystick_state[gp][0].pov[0] < 225))
ret &= ~0x70;
else if ((joystick_state[gp][0].pov[0] >= 135) && (joystick_state[gp][0].pov[0] < 225))
ret &= ~0x70; // 1, 2, 3
// POV Left
else if ((joystick_state[gp][0].pov[0]) >= 225 && (joystick_state[gp][0].pov[0] < 315))
ret &= ~0x30;
else if ((joystick_state[gp][0].pov[0] >= 225) && (joystick_state[gp][0].pov[0] < 315))
ret &= ~0x30; // 1, 2
}
}
return ret;
}
static uint8_t
ch_virtual_pilot_pro_read(UNUSED(void *priv))
{
uint8_t gp = 0;
uint8_t ret = 0xf0;
if (JOYSTICK_PRESENT(gp, 0)) {
if (joystick_state[gp][0].button[0]) // 1
ret &= ~0x10;
if (joystick_state[gp][0].button[1]) // 2
ret &= ~0x20;
if (joystick_state[gp][0].button[2]) // 3
ret &= ~0x40;
if (joystick_state[gp][0].button[3]) // 4
ret &= ~0x80;
if (joystick_state[gp][0].button[4]) // 1, 3
ret &= ~0x50;
if (joystick_state[gp][0].button[5]) // 1, 4
ret &= ~0x90;
// Right POV Hat
uint8_t pov_id = 0;
if (joystick_state[gp][0].pov[pov_id] != -1) {
// POV Up
if ((joystick_state[gp][0].pov[pov_id] > 315) || (joystick_state[gp][0].pov[pov_id] < 45))
ret &= ~0xf0; // 1, 2, 3, 4
// POV Right
else if ((joystick_state[gp][0].pov[pov_id] >= 45) && (joystick_state[gp][0].pov[pov_id] < 135))
ret &= ~0xb0; // 1, 2, 4
// POV Down
else if ((joystick_state[gp][0].pov[pov_id] >= 135) && (joystick_state[gp][0].pov[pov_id] < 225))
ret &= ~0x70; // 1, 2, 3
// POV Left
else if ((joystick_state[gp][0].pov[pov_id] >= 225) && (joystick_state[gp][0].pov[pov_id] < 315))
ret &= ~0x30; // 1, 2
}
// Left POV Hat
pov_id = 1;
if (joystick_state[gp][0].pov[pov_id] != -1) {
// POV Up
if ((joystick_state[gp][0].pov[pov_id] > 315) || (joystick_state[gp][0].pov[pov_id] < 45))
ret &= ~0xe0; // 2, 3, 4
// POV Right
else if ((joystick_state[gp][0].pov[pov_id] >= 45) && (joystick_state[gp][0].pov[pov_id] < 135))
ret &= ~0xa0; // 2, 4
// POV Down
else if ((joystick_state[gp][0].pov[pov_id] >= 135) && (joystick_state[gp][0].pov[pov_id] < 225))
ret &= ~0x60; // 2, 3
// POV Left
else if ((joystick_state[gp][0].pov[pov_id] >= 225) && (joystick_state[gp][0].pov[pov_id] < 315))
ret &= ~0xc0; // 3, 4
}
}
@@ -148,6 +225,60 @@ ch_flightstick_pro_a0_over(UNUSED(void *priv))
//
}
const joystick_t joystick_ch_flightstick = {
.name = "CH Flightstick",
.internal_name = "ch_flightstick",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_flightstick_ch_pedals = {
.name = "CH Flightstick + CH Pedals",
.internal_name = "ch_flightstick_ch_pedals",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_flightstick_ch_pedals_pro = {
.name = "CH Flightstick + CH Pedals Pro",
.internal_name = "ch_flightstick_ch_pedals_pro",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_flightstick_pro = {
.name = "CH Flightstick Pro",
.internal_name = "ch_flightstick_pro",
@@ -161,7 +292,7 @@ const joystick_t joystick_ch_flightstick_pro = {
.button_count = 4,
.pov_count = 1,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Throttle" },
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { "POV" }
};
@@ -179,7 +310,133 @@ const joystick_t joystick_ch_flightstick_pro_ch_pedals = {
.button_count = 4,
.pov_count = 1,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Throttle", "Rudder" },
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { "POV" }
};
const joystick_t joystick_ch_flightstick_pro_ch_pedals_pro = {
.name = "CH Flightstick Pro + CH Pedals Pro",
.internal_name = "ch_flightstick_pro_ch_pedals_pro",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_pro_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 4,
.pov_count = 1,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { "POV" }
};
const joystick_t joystick_ch_virtual_pilot = {
.name = "CH Virtual Pilot",
.internal_name = "ch_virtual_pilot",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_virtual_pilot_ch_pedals = {
.name = "CH Virtual Pilot + CH Pedals",
.internal_name = "ch_virtual_pilot_ch_pedals",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_virtual_pilot_ch_pedals_pro = {
.name = "CH Virtual Pilot + CH Pedals Pro",
.internal_name = "ch_virtual_pilot_ch_pedals_pro",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_flightstick_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_ch_virtual_pilot_pro = {
.name = "CH Virtual Pilot Pro",
.internal_name = "ch_virtual_pilot_pro",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_virtual_pilot_pro_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 3,
.button_count = 6,
.pov_count = 2,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6" },
.pov_names = { "Right POV", "Left POV" }
};
const joystick_t joystick_ch_virtual_pilot_pro_ch_pedals = {
.name = "CH Virtual Pilot Pro + CH Pedals",
.internal_name = "ch_virtual_pilot_pro_ch_pedals",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_virtual_pilot_pro_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 6,
.pov_count = 2,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Throttle", "Rudder (Yaw)" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6" },
.pov_names = { "Right POV", "Left POV" }
};
const joystick_t joystick_ch_virtual_pilot_pro_ch_pedals_pro = {
.name = "CH Virtual Pilot Pro + CH Pedals Pro",
.internal_name = "ch_virtual_pilot_pro_ch_pedals_pro",
.init = ch_flightstick_pro_init,
.close = ch_flightstick_pro_close,
.read = ch_virtual_pilot_pro_read,
.write = ch_flightstick_pro_write,
.read_axis = ch_flightstick_pro_ch_pedals_read_axis,
.a0_over = ch_flightstick_pro_a0_over,
.axis_count = 4,
.button_count = 6,
.pov_count = 2,
.max_joysticks = 1,
.axis_names = { "X axis (Roll)", "Y axis (Pitch)", "Right Pedal", "Left Pedal" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6" },
.pov_names = { "Right POV", "Left POV" }
};

View File

@@ -57,6 +57,27 @@ joystick_standard_close(UNUSED(void *priv))
//
}
static uint8_t
joystick_paddle_read(UNUSED(void *priv))
{
uint8_t gp = 0;
uint8_t ret = 0xf0;
if ((JOYSTICK_PRESENT(gp, 0)) && (joystick_state[gp][0].button[0]))
ret &= ~0x10;
if ((JOYSTICK_PRESENT(gp, 2)) && (joystick_state[gp][2].button[0]))
ret &= ~0x20;
if ((JOYSTICK_PRESENT(gp, 1)) && (joystick_state[gp][1].button[0]))
ret &= ~0x40;
if ((JOYSTICK_PRESENT(gp, 3)) && (joystick_state[gp][3].button[0]))
ret &= ~0x80;
return ret;
}
static uint8_t
joystick_standard_read(UNUSED(void *priv))
{
@@ -80,6 +101,24 @@ joystick_standard_read(UNUSED(void *priv))
return ret;
}
static uint8_t
joystick_standard_read_3button(UNUSED(void *priv))
{
uint8_t gp = 0;
uint8_t ret = 0xf0;
if (JOYSTICK_PRESENT(gp, 0)) {
if (joystick_state[gp][0].button[0])
ret &= ~0x10;
if (joystick_state[gp][0].button[1])
ret &= ~0x20;
if (joystick_state[gp][0].button[2])
ret &= ~0x40;
}
return ret;
}
static uint8_t
joystick_standard_read_4button(UNUSED(void *priv))
{
@@ -106,6 +145,33 @@ joystick_standard_write(UNUSED(void *priv))
//
}
static int
joystick_paddle_read_axis(UNUSED(void *priv), int axis)
{
uint8_t gp = 0;
switch (axis) {
case 0:
if (!JOYSTICK_PRESENT(gp, 0))
return AXIS_NOT_PRESENT;
return joystick_state[gp][0].axis[0];
case 1:
if (!JOYSTICK_PRESENT(gp, 2))
return AXIS_NOT_PRESENT;
return joystick_state[gp][2].axis[0];
case 2:
if (!JOYSTICK_PRESENT(gp, 1))
return AXIS_NOT_PRESENT;
return joystick_state[gp][1].axis[0];
case 3:
if (!JOYSTICK_PRESENT(gp, 3))
return AXIS_NOT_PRESENT;
return joystick_state[gp][3].axis[0];
default:
return 0;
}
}
static int
joystick_standard_read_axis(UNUSED(void *priv), int axis)
{
@@ -134,7 +200,7 @@ joystick_standard_read_axis(UNUSED(void *priv), int axis)
}
static int
joystick_standard_read_axis_4button(UNUSED(void *priv), int axis)
joystick_standard_read_axis_2axis(UNUSED(void *priv), int axis)
{
uint8_t gp = 0;
@@ -168,7 +234,7 @@ joystick_standard_read_axis_with_pov(UNUSED(void *priv), int axis)
return joystick_state[gp][0].axis[0];
case 1: // Y-axis
return joystick_state[gp][0].axis[1];
case 2: // POV Hat (mapped to the 3rd logical axis, index 2)
case 2: // POV Hat
if (joystick_state[gp][0].pov[0] == -1)
return 32767; // Centered/No input (as per tm_fcs_rcs_read_axis example)
if (joystick_state[gp][0].pov[0] > 315 || joystick_state[gp][0].pov[0] < 45)
@@ -179,9 +245,8 @@ joystick_standard_read_axis_with_pov(UNUSED(void *priv), int axis)
return 0; // Right/Left (example, matches tm_fcs_rcs_read_axis)
if (joystick_state[gp][0].pov[0] >= 225 && joystick_state[gp][0].pov[0] < 315)
return 16384; // Down-Left (example value, matches tm_fcs_rcs_read_axis)
return 0; // Fallback
case 3: // This case might be used for a Z-axis if present, or can return 0 if not.
// For gamepads with only X/Y and POV, this will likely be unused or return 0.
return 0;
case 3:
return 0;
default:
return 0;
@@ -289,6 +354,42 @@ joystick_standard_a0_over(UNUSED(void *priv))
//
}
const joystick_t joystick_generic_paddle = {
.name = "Generic Paddle Controller(s)",
.internal_name = "generic_paddle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_paddle_read,
.write = joystick_standard_write,
.read_axis = joystick_paddle_read_axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 1,
.button_count = 1,
.pov_count = 0,
.max_joysticks = 4,
.axis_names = { "X axis" },
.button_names = { "Button 1" },
.pov_names = { NULL }
};
const joystick_t joystick_2axis_1button = {
.name = "2-axis, 1-button joystick(s)",
.internal_name = "2axis_1button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 1,
.pov_count = 0,
.max_joysticks = 2,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1" },
.pov_names = { NULL }
};
const joystick_t joystick_2axis_2button = {
.name = "2-axis, 2-button joystick(s)",
.internal_name = "2axis_2button",
@@ -307,39 +408,21 @@ const joystick_t joystick_2axis_2button = {
.pov_names = { NULL }
};
const joystick_t joystick_2button_gamepad = {
.name = "2-button gamepad(s)",
.internal_name = "2button_gamepad",
const joystick_t joystick_2axis_3button = {
.name = "2-axis, 3-button joystick",
.internal_name = "2axis_3button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 2,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 2,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_2button_flight_yoke = {
.name = "2-button flight yoke",
.internal_name = "2button_flight_yoke",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 2,
.axis_names = { "Roll axis", "Pitch axis" },
.button_names = { "Trigger", "Button 2" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
@@ -350,7 +433,7 @@ const joystick_t joystick_2axis_4button = {
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4button,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
@@ -361,150 +444,6 @@ const joystick_t joystick_2axis_4button = {
.pov_names = { NULL }
};
const joystick_t joystick_4button_gamepad = {
.name = "4-button gamepad",
.internal_name = "4button_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4button,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_4button_flight_yoke = {
.name = "4-button flight yoke",
.internal_name = "4button_flight_yoke",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4button,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis" },
.button_names = { "Trigger", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_3axis_2button = {
.name = "3-axis, 2-button joystick",
.internal_name = "3axis_2button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_2button_yoke_throttle = {
.name = "2-button flight yoke with throttle",
.internal_name = "2button_yoke_throttle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis", "Throttle axis" },
.button_names = { "Trigger", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_3axis_4button = {
.name = "3-axis, 4-button joystick",
.internal_name = "3axis_4button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_4button_yoke_throttle = {
.name = "4-button flight yoke with throttle",
.internal_name = "4button_yoke_throttle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis", "Throttle axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_steering_wheel_4_button = {
.name = "Steering Wheel (3-axis, 4-button)",
.internal_name = "steering_wheel_4_button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator axis", "Brake axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_4axis_4button = {
.name = "4-axis, 4-button joystick",
.internal_name = "4axis_4button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 4,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis", "zX axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_2axis_6button = {
.name = "2-axis, 6-button joystick",
.internal_name = "2axis_6button",
@@ -540,3 +479,401 @@ const joystick_t joystick_2axis_8button = {
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6", "Button 7", "Button 8" },
.pov_names = { NULL }
};
const joystick_t joystick_3axis_2button = {
.name = "3-axis, 2-button joystick",
.internal_name = "3axis_2button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_3axis_3button = {
.name = "3-axis, 3-button joystick",
.internal_name = "3axis_3button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_3axis_4button = {
.name = "3-axis, 4-button joystick",
.internal_name = "3axis_4button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_4axis_2button = {
.name = "4-axis, 2-button joystick",
.internal_name = "4axis_2button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 4,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis", "zX axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_4axis_3button = {
.name = "4-axis, 3-button joystick",
.internal_name = "4axis_3button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 4,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis", "zX axis" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_4axis_4button = {
.name = "4-axis, 4-button joystick",
.internal_name = "4axis_4button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_4axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 4,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis", "Z axis", "zX axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_2button_gamepad = {
.name = "2-button gamepad(s)",
.internal_name = "2button_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 2,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_3button_gamepad = {
.name = "3-button gamepad",
.internal_name = "3button_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_4button_gamepad = {
.name = "4-button gamepad",
.internal_name = "4button_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_6button_gamepad = {
.name = "6-button gamepad",
.internal_name = "6button_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_6button,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 6,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6" },
.pov_names = { NULL }
};
const joystick_t joystick_gravis_gamepad = {
.name = "Gravis PC GamePad",
.internal_name = "gravis_gamepad",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "X axis", "Y axis" },
// TODO: Check this
.button_names = { "Button 1 (Red)", "Button 2 (Blue)", "Button 3 (Yellow)", "Button 4 (Green)" },
.pov_names = { NULL }
};
const joystick_t joystick_2button_flight_yoke = {
.name = "2-button flight yoke",
.internal_name = "2button_flight_yoke",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 2,
.axis_names = { "Roll axis", "Pitch axis" },
.button_names = { "Trigger", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_3button_flight_yoke = {
.name = "3-button flight yoke",
.internal_name = "3button_flight_yoke",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis" },
.button_names = { "Trigger", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_4button_flight_yoke = {
.name = "4-button flight yoke",
.internal_name = "4button_flight_yoke",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis" },
.button_names = { "Trigger", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_2button_yoke_throttle = {
.name = "2-button flight yoke with throttle",
.internal_name = "2button_yoke_throttle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 2,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis", "Throttle axis" },
.button_names = { "Trigger", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_3button_yoke_throttle = {
.name = "3-button flight yoke with throttle",
.internal_name = "3button_yoke_throttle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 3,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis", "Throttle axis" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_4button_yoke_throttle = {
.name = "4-button flight yoke with throttle",
.internal_name = "4button_yoke_throttle",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Roll axis", "Pitch axis", "Throttle axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_steering_wheel_2_button = {
.name = "Steering Wheel (3-axis, 2-button)",
.internal_name = "steering_wheel_2_button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator axis", "Brake axis" },
.button_names = { "Button 1", "Button 2" },
.pov_names = { NULL }
};
const joystick_t joystick_steering_wheel_3_button = {
.name = "Steering Wheel (3-axis, 3-button)",
.internal_name = "steering_wheel_3_button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_3button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator axis", "Brake axis" },
.button_names = { "Button 1", "Button 2", "Button 3" },
.pov_names = { NULL }
};
const joystick_t joystick_steering_wheel_4_button = {
.name = "Steering Wheel (3-axis, 4-button)",
.internal_name = "steering_wheel_4_button",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator axis", "Brake axis" },
.button_names = { "Button 1", "Button 2", "Button 3", "Button 4" },
.pov_names = { NULL }
};
const joystick_t joystick_tm_formula_t1t2 = {
.name = "Thrustmaster Formula T1/T2 with Adaptor",
.internal_name = "thrustmaster_formula_t1t2",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_2axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 2,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator/Brake axis" },
.button_names = { "Shifter Up", "Shifter Down", "Top Console Switch", "Bottom Console Switch" },
.pov_names = { NULL }
};
// TODO Validate this
const joystick_t joystick_tm_formula_t1t2wa = {
.name = "Thrustmaster Formula T1/T2 without Adaptor",
.internal_name = "thrustmaster_formula_t1t2wa",
.init = joystick_standard_init,
.close = joystick_standard_close,
.read = joystick_standard_read_4button,
.write = joystick_standard_write,
.read_axis = joystick_standard_read_axis_3axis,
.a0_over = joystick_standard_a0_over,
.axis_count = 3,
.button_count = 4,
.pov_count = 0,
.max_joysticks = 1,
.axis_names = { "Steering axis", "Accelerator axis", "Brake axis" },
.button_names = { "Shifter Up", "Shifter Down", "Top Console Switch", "Bottom Console Switch" },
.pov_names = { NULL }
};

View File

@@ -172,29 +172,73 @@ extern void gameport_update_joystick_type(uint8_t gp);
extern void gameport_remap(void *priv, uint16_t address);
extern void *gameport_add(const device_t *gameport_type);
// Paddle Controllers
extern const joystick_t joystick_generic_paddle;
// 2 axis Generic Joysticks
extern const joystick_t joystick_2axis_1button;
extern const joystick_t joystick_2axis_2button;
extern const joystick_t joystick_2button_gamepad;
extern const joystick_t joystick_2button_flight_yoke;
extern const joystick_t joystick_2axis_3button;
extern const joystick_t joystick_2axis_4button;
extern const joystick_t joystick_4button_gamepad;
extern const joystick_t joystick_4button_flight_yoke;
extern const joystick_t joystick_3axis_2button;
extern const joystick_t joystick_2button_yoke_throttle;
extern const joystick_t joystick_3axis_4button;
extern const joystick_t joystick_4button_yoke_throttle;
extern const joystick_t joystick_steering_wheel_4_button;
extern const joystick_t joystick_4axis_4button;
extern const joystick_t joystick_2axis_6button;
extern const joystick_t joystick_2axis_8button;
// 2 axis Generic Joysticks
extern const joystick_t joystick_3axis_2button;
extern const joystick_t joystick_3axis_3button;
extern const joystick_t joystick_3axis_4button;
// 4 axis Generic Joysticks
extern const joystick_t joystick_4axis_2button;
extern const joystick_t joystick_4axis_3button;
extern const joystick_t joystick_4axis_4button;
// Generic Gamepads
extern const joystick_t joystick_2button_gamepad;
extern const joystick_t joystick_3button_gamepad;
extern const joystick_t joystick_4button_gamepad;
extern const joystick_t joystick_6button_gamepad;
extern const joystick_t joystick_gravis_gamepad;
// Generic Steering Wheels
extern const joystick_t joystick_steering_wheel_2_button;
extern const joystick_t joystick_steering_wheel_3_button;
extern const joystick_t joystick_steering_wheel_4_button;
// Generic Flight Yokes
extern const joystick_t joystick_2button_flight_yoke;
extern const joystick_t joystick_4button_flight_yoke;
extern const joystick_t joystick_3button_flight_yoke;
extern const joystick_t joystick_2button_yoke_throttle;
extern const joystick_t joystick_3button_yoke_throttle;
extern const joystick_t joystick_4button_yoke_throttle;
extern const joystick_t joystick_ch_flightstick;
extern const joystick_t joystick_ch_flightstick_ch_pedals;
extern const joystick_t joystick_ch_flightstick_ch_pedals_pro;
extern const joystick_t joystick_ch_flightstick_pro;
extern const joystick_t joystick_ch_flightstick_pro_ch_pedals;
extern const joystick_t joystick_ch_flightstick_pro_ch_pedals_pro;
extern const joystick_t joystick_ch_virtual_pilot;
extern const joystick_t joystick_ch_virtual_pilot_ch_pedals;
extern const joystick_t joystick_ch_virtual_pilot_ch_pedals_pro;
extern const joystick_t joystick_ch_virtual_pilot_pro;
extern const joystick_t joystick_ch_virtual_pilot_pro_ch_pedals;
extern const joystick_t joystick_ch_virtual_pilot_pro_ch_pedals_pro;
extern const joystick_t joystick_sw_pad;
extern const joystick_t joystick_tm_fcs;
extern const joystick_t joystick_tm_fcs_rcs;
extern const joystick_t joystick_tm_formula_t1t2;
extern const joystick_t joystick_tm_formula_t1t2wa;
#ifdef __cplusplus
}
#endif

View File

@@ -852,9 +852,18 @@ msgstr ""
msgid "Invalid PCap device"
msgstr ""
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr ""
msgid "2-axis, 2-button joystick(s)"
msgstr ""
msgid "2-axis, 3-button joystick"
msgstr ""
msgid "2-axis, 4-button joystick"
msgstr ""
@@ -867,18 +876,99 @@ msgstr ""
msgid "3-axis, 2-button joystick"
msgstr ""
msgid "3-axis, 3-button joystick"
msgstr ""
msgid "3-axis, 4-button joystick"
msgstr ""
msgid "4-axis, 2-button joystick"
msgstr ""
msgid "4-axis, 3-button joystick"
msgstr ""
msgid "4-axis, 4-button joystick"
msgstr ""
msgid "2-button gamepad(s)"
msgstr ""
msgid "3-button gamepad"
msgstr ""
msgid "4-button gamepad"
msgstr ""
msgid "6-button gamepad"
msgstr ""
msgid "Gravis PC GamePad"
msgstr ""
msgid "2-button flight yoke"
msgstr ""
msgid "3-button flight yoke"
msgstr ""
msgid "4-button flight yoke"
msgstr ""
msgid "2-button flight yoke with throttle"
msgstr ""
msgid "3-button flight yoke with throttle"
msgstr ""
msgid "4-button flight yoke with throttle"
msgstr ""
msgid "Steering Wheel (3-axis, 2-button)"
msgstr ""
msgid "Steering Wheel (3-axis, 3-button)"
msgstr ""
msgid "Steering Wheel (3-axis, 4-button)"
msgstr ""
msgid "CH Flightstick"
msgstr ""
msgid "CH Flightstick + CH Pedals"
msgstr ""
msgid "CH Flightstick + CH Pedals Pro"
msgstr ""
msgid "CH Flightstick Pro"
msgstr ""
msgid "CH Flightstick Pro + CH Pedals"
msgstr ""
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr ""
msgid "CH Virtual Pilot"
msgstr ""
msgid "CH Virtual Pilot + CH Pedals"
msgstr ""
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr ""
msgid "CH Virtual Pilot Pro"
msgstr ""
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr ""
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr ""
msgid "Microsoft SideWinder Pad"
msgstr ""
@@ -888,25 +978,10 @@ msgstr ""
msgid "Thrustmaster FCS + Rudder Control System"
msgstr ""
msgid "2-button gamepad(s)"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr ""
msgid "2-button flight yoke"
msgstr ""
msgid "4-button gamepad"
msgstr ""
msgid "4-button flight yoke"
msgstr ""
msgid "2-button flight yoke with throttle"
msgstr ""
msgid "4-button flight yoke with throttle"
msgstr ""
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr ""
msgid "None"

View File

@@ -852,9 +852,18 @@ msgstr "Nebyla nalezena žádná PCap zařízení"
msgid "Invalid PCap device"
msgstr "Neplatné PCap zařízení"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joystick s 2 osami a 1 tlačítky"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joystick s 2 osami a 2 tlačítky"
msgid "2-axis, 3-button joystick"
msgstr "Joystick s 2 osami a 3 tlačítky"
msgid "2-axis, 4-button joystick"
msgstr "Joystick s 2 osami a 4 tlačítky"
@@ -867,18 +876,99 @@ msgstr "Joystick s 2 osami a 8 tlačítky"
msgid "3-axis, 2-button joystick"
msgstr "Joystick s 3 osami a 2 tlačítky"
msgid "3-axis, 3-button joystick"
msgstr "Joystick s 3 osami a 3 tlačítky"
msgid "3-axis, 4-button joystick"
msgstr "Joystick s 3 osami a 4 tlačítky"
msgid "4-axis, 2-button joystick"
msgstr "Joystick s 4 osami a 2 tlačítky"
msgid "4-axis, 3-button joystick"
msgstr "Joystick s 4 osami a 3 tlačítky"
msgid "4-axis, 4-button joystick"
msgstr "Joystick s 4 osami a 4 tlačítky"
msgid "2-button gamepad(s)"
msgstr "Ovladač se 2 tlačítky"
msgid "3-button gamepad"
msgstr "Ovladač se 3 tlačítky"
msgid "4-button gamepad"
msgstr "Ovladač se 4 tlačítky"
msgid "6-button gamepad"
msgstr "Ovladač se 6 tlačítky"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Letecký knipl se 2 tlačítky"
msgid "3-button flight yoke"
msgstr "Letecký knipl se32 tlačítky"
msgid "4-button flight yoke"
msgstr "Letecký knipl se 4 tlačítky"
msgid "2-button flight yoke with throttle"
msgstr "Letecký knipl s 2 tlačítky a pákou"
msgid "3-button flight yoke with throttle"
msgstr "Letecký knipl s 3 tlačítky a pákou"
msgid "4-button flight yoke with throttle"
msgstr "Letecký knipl s 4 tlačítky a pákou"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volant (3 osy, 2 tlačítka)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volant (3 osy, 3 tlačítka)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volant (3 osy, 4 tlačítka)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Ovladač se 2 tlačítky"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Letecký knipl se 2 tlačítky"
msgid "4-button gamepad"
msgstr "Ovladač se 4 tlačítky"
msgid "4-button flight yoke"
msgstr "Letecký knipl se 4 tlačítky"
msgid "2-button flight yoke with throttle"
msgstr "Letecký knipl s 2 tlačítky a pákou"
msgid "4-button flight yoke with throttle"
msgstr "Letecký knipl s 4 tlačítky a pákou"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volant pro Windows 95 (3 osy, 4 tlačítka)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Žadné"
@@ -2988,6 +3063,9 @@ msgstr "Režim roztažení vstupu OpenGL"
msgid "Color scheme"
msgstr "Barevné schéma"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Světlé"

View File

@@ -852,9 +852,18 @@ msgstr "Keine PCap-Geräte gefunden"
msgid "Invalid PCap device"
msgstr "Ungültiges PCap-Gerät"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-Achsen-, 1-Tasten-Joystick(s)"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-Achsen-, 2-Tasten-Joystick(s)"
msgid "2-axis, 3-button joystick"
msgstr "2-Achsen-, 3-Tasten-Joystick"
msgid "2-axis, 4-button joystick"
msgstr "2-Achsen-, 4-Tasten-Joystick"
@@ -867,18 +876,99 @@ msgstr "2-Achsen-, 8-Tasten-Joystick"
msgid "3-axis, 2-button joystick"
msgstr "3-Achsen-, 2-Tasten-Joystick"
msgid "3-axis, 3-button joystick"
msgstr "3-Achsen-, 3-Tasten-Joystick"
msgid "3-axis, 4-button joystick"
msgstr "3-Achsen-, 4-Tasten-Joystick"
msgid "4-axis, 2-button joystick"
msgstr "4-Achsen-, 2-Tasten-Joystick"
msgid "4-axis, 3-button joystick"
msgstr "4-Achsen-, 3-Tasten-Joystick"
msgid "4-axis, 4-button joystick"
msgstr "4-Achsen-, 4-Tasten-Joystick"
msgid "2-button gamepad(s)"
msgstr "2-Tasten-Gamepad(s)"
msgid "3-button gamepad"
msgstr "3-Tasten-Gamepad"
msgid "4-button gamepad"
msgstr "4-Tasten-Gamepad"
msgid "6-button gamepad"
msgstr "6-Tasten-Gamepad"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-Tasten-Steuerhorn"
msgid "3-button flight yoke"
msgstr "3-Tasten-Steuerhorn"
msgid "4-button flight yoke"
msgstr "4-Tasten-Steuerhorn"
msgid "2-button flight yoke with throttle"
msgstr "2-Tasten-Steuerhorn mit Schubregler"
msgid "3-button flight yoke with throttle"
msgstr "3-Tasten-Steuerhorn mit Schubregler"
msgid "4-button flight yoke with throttle"
msgstr "4-Tasten-Steuerhorn mit Schubregler"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Lenkrad (3-Achsen, 2-Tasten)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Lenkrad (3-Achsen, 3-Tasten)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Lenkrad (3-Achsen, 4-Tasten)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedale"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedale Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedale"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedale Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedale"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedale Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2-Tasten-Gamepad(s)"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-Tasten-Steuerhorn"
msgid "4-button gamepad"
msgstr "4-Tasten-Gamepad"
msgid "4-button flight yoke"
msgstr "4-Tasten-Steuerhorn"
msgid "2-button flight yoke with throttle"
msgstr "2-Tasten-Steuerhorn mit Schubregler"
msgid "4-button flight yoke with throttle"
msgstr "4-Tasten-Steuerhorn mit Schubregler"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 Lenkrad (3-Achsen, 4-Tasten)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ohne"
@@ -2988,6 +3063,9 @@ msgstr "Eingabestreckungsmodus von OpenGL"
msgid "Color scheme"
msgstr "Farbschema"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Licht"

View File

@@ -852,9 +852,18 @@ msgstr "No se encontraron dispositivos PCap"
msgid "Invalid PCap device"
msgstr "Dispositivo PCap inválido"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Mando(s) de 2 ejes, 1 botones"
msgid "2-axis, 2-button joystick(s)"
msgstr "Mando(s) de 2 ejes, 2 botones"
msgid "2-axis, 3-button joystick"
msgstr "Mando de 2 ejes, 3 botones"
msgid "2-axis, 4-button joystick"
msgstr "Mando de 2 ejes, 4 botones"
@@ -867,18 +876,99 @@ msgstr "Mando de 2 ejes, 8 botones"
msgid "3-axis, 2-button joystick"
msgstr "Mando de 3 ejes, 2 botones"
msgid "3-axis, 3-button joystick"
msgstr "Mando de 3 ejes, 3 botones"
msgid "3-axis, 4-button joystick"
msgstr "Mando de 3 ejes, 4 botones"
msgid "4-axis, 2-button joystick"
msgstr "Mando de 4 ejes, 2 botones"
msgid "4-axis, 3-button joystick"
msgstr "Mando de 4 ejes, 3 botones"
msgid "4-axis, 4-button joystick"
msgstr "Mando de 4 ejes, 4 botones"
msgid "2-button gamepad(s)"
msgstr "Mando(s) de juegos de 2 botones"
msgid "4-button gamepad"
msgstr "Mando de juegos de 3 botones"
msgid "4-button gamepad"
msgstr "Mando de juegos de 4 botones"
msgid "6-button gamepad"
msgstr "Mando de juegos de 6 botones"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Yugo de vuelo de 2 botones"
msgid "3-button flight yoke"
msgstr "Yugo de vuelo de 3 botones"
msgid "4-button flight yoke"
msgstr "Yugo de vuelo de 4 botones"
msgid "2-button flight yoke with throttle"
msgstr "Yugo de vuelo de 2 botones con acelerador"
msgid "3-button flight yoke with throttle"
msgstr "Yugo de vuelo de 3 botones con acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Yugo de vuelo de 4 botones con acelerador"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volante (de 3 ejes, 2 botones)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volante (de 3 ejes, 3 botones)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volante (de 3 ejes, 4 botones)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Mando(s) de juegos de 2 botones"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Yugo de vuelo de 2 botones"
msgid "4-button gamepad"
msgstr "Mando de juegos de 4 botones"
msgid "4-button flight yoke"
msgstr "Yugo de vuelo de 4 botones"
msgid "2-button flight yoke with throttle"
msgstr "Yugo de vuelo de 2 botones con acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Yugo de vuelo de 4 botones con acelerador"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volante Win95 (de 3 ejes, 4 botones)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ninguno"
@@ -2988,6 +3063,9 @@ msgstr "Modo de estiramiento de entrada de OpenGL"
msgid "Color scheme"
msgstr "Esquema de colores"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Luz"

View File

@@ -852,9 +852,18 @@ msgstr "PCap-laitteita ei löytynyt"
msgid "Invalid PCap device"
msgstr "Virheellinen PCap-laite"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-akseliset 1-painikkeiset peliohjaimet"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-akseliset 2-painikkeiset peliohjaimet"
msgid "2-axis, 3-button joystick"
msgstr "2-akselinen 3-painikkeinen peliohjain"
msgid "2-axis, 4-button joystick"
msgstr "2-akselinen 4-painikkeinen peliohjain"
@@ -867,17 +876,98 @@ msgstr "2-akselinen 8-painikkeinen peliohjain"
msgid "3-axis, 2-button joystick"
msgstr "3-akselinen 2-painikkeinen peliohjain"
msgid "3-axis, 3-button joystick"
msgstr "3-akselinen 3-painikkeinen peliohjain"
msgid "3-axis, 4-button joystick"
msgstr "3-akselinen 4-painikkeinen peliohjain"
msgid "4-axis, 2-button joystick"
msgstr "4-akselinen 2-painikkeinen peliohjain"
msgid "4-axis, 3-button joystick"
msgstr "4-akselinen 3-painikkeinen peliohjain"
msgid "4-axis, 4-button joystick"
msgstr "4-akselinen 4-painikkeinen peliohjain"
msgid "2-button gamepad(s)"
msgstr "2-painikkeiset peliohjaimet"
msgid "3-button gamepad"
msgstr "3-painikkeinen peliohjain"
msgid "4-button gamepad"
msgstr "4-painikkeinen peliohjain"
msgid "6-button gamepad"
msgstr "6-painikkeinen peliohjain"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-painikkeinen lento-ohjain"
msgid "3-button flight yoke"
msgstr "3-painikkeinen lento-ohjain"
msgid "4-button flight yoke"
msgstr "4-painikkeinen lento-ohjain"
msgid "2-button flight yoke with throttle"
msgstr "2-painikkeinen lento-ohjain kaasuvivulla"
msgid "3-button flight yoke with throttle"
msgstr "3-painikkeinen lento-ohjain kaasuvivulla"
msgid "4-button flight yoke with throttle"
msgstr "4-painikkeinen lento-ohjain kaasuvivulla"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "ratti (3-akselinen, 2-painikkeinen)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "ratti (3-akselinen, 3-painikkeinen)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "ratti (3-akselinen, 4-painikkeinen)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr ""
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -886,28 +976,13 @@ msgid "Thrustmaster Flight Control System"
msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr ""
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2-painikkeiset peliohjaimet"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-painikkeinen lento-ohjain"
msgid "4-button gamepad"
msgstr "4-painikkeinen peliohjain"
msgid "4-button flight yoke"
msgstr "4-painikkeinen lento-ohjain"
msgid "2-button flight yoke with throttle"
msgstr "2-painikkeinen lento-ohjain kaasuvivulla"
msgid "4-button flight yoke with throttle"
msgstr "4-painikkeinen lento-ohjain kaasuvivulla"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95-ratti (3-akselinen, 4-painikkeinen)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ei mikään"
@@ -2988,6 +3063,9 @@ msgstr "OpenGL-syötteen venytystila"
msgid "Color scheme"
msgstr "Väriteema"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Vaalea"

View File

@@ -852,9 +852,18 @@ msgstr "Aucun dispositif PCap trouvé"
msgid "Invalid PCap device"
msgstr "Dispositif PCap invalide"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Manette(s) avec 2 axes, 1 boutons"
msgid "2-axis, 2-button joystick(s)"
msgstr "Manette(s) avec 2 axes, 2 boutons"
msgid "2-axis, 3-button joystick"
msgstr "Manette avec 2 axes, 4 boutons"
msgid "2-axis, 4-button joystick"
msgstr "Manette avec 2 axes, 4 boutons"
@@ -867,18 +876,99 @@ msgstr "Manette avec 2 axes, 8 boutons"
msgid "3-axis, 2-button joystick"
msgstr "Manette avec 3 axes, 2 boutons"
msgid "3-axis, 3-button joystick"
msgstr "Manette avec 3 axes, 3 boutons"
msgid "3-axis, 4-button joystick"
msgstr "Manette avec 3 axes, 4 boutons"
msgid "4-axis, 2-button joystick"
msgstr "Manette avec 4 axes, 2 boutons"
msgid "4-axis, 3-button joystick"
msgstr "Manette avec 4 axes, 3 boutons"
msgid "4-axis, 4-button joystick"
msgstr "Manette avec 4 axes, 4 boutons"
msgid "2-button gamepad(s)"
msgstr "Manette(s) de jeu à 2 boutons"
msgid "3-button gamepad"
msgstr "Manette de jeu à 2 boutons"
msgid "4-button gamepad"
msgstr "Manette de jeu à 4 boutons"
msgid "6-button gamepad"
msgstr "Manette de jeu à 6 boutons"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Manette de vol à 2 boutons"
msgid "3-button flight yoke"
msgstr "Manette de vol à 3 boutons"
msgid "4-button flight yoke"
msgstr "Manette de vol à 4 boutons"
msgid "2-button flight yoke with throttle"
msgstr "Manette de vol à 2 boutons avec manette des gaz"
msgid "3-button flight yoke with throttle"
msgstr "Manette de vol à 3 boutons avec manette des gaz"
msgid "4-button flight yoke with throttle"
msgstr "Manette de vol à 4 boutons avec manette des gaz"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volant (3 axes, 2 boutons)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volant (3 axes, 3 boutons)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volant (3 axes, 4 boutons)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Système de contrôle de vol Thrustmaster"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "SCV Thrustmaster + Système de commande de gouvernail"
msgid "2-button gamepad(s)"
msgstr "Manette(s) de jeu à 2 boutons"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Manette de vol à 2 boutons"
msgid "4-button gamepad"
msgstr "Manette de jeu à 2 boutons"
msgid "4-button flight yoke"
msgstr "Manette de vol à 4 boutons"
msgid "2-button flight yoke with throttle"
msgstr "Manette de vol à 2 boutons avec manette des gaz"
msgid "4-button flight yoke with throttle"
msgstr "Manette de vol à 4 boutons avec manette des gaz"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volant Win95 (3 axes, 4 boutons)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Aucun"
@@ -2988,6 +3063,9 @@ msgstr "Mode d'étirement des données d'entrée d'OpenGL"
msgid "Color scheme"
msgstr "Palette de couleurs"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Lumière"

View File

@@ -852,9 +852,18 @@ msgstr "Nema PCap uređaja"
msgid "Invalid PCap device"
msgstr "Nevažeći PCap uređaj"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Palica za igru s 2 osi, 1 tipke"
msgid "2-axis, 2-button joystick(s)"
msgstr "Palica za igru s 2 osi, 2 tipke"
msgid "2-axis, 3-button joystick"
msgstr "Palica za igru s 2 osi, 3 tipke"
msgid "2-axis, 4-button joystick"
msgstr "Palica za igru s 2 osi, 4 tipke"
@@ -867,18 +876,99 @@ msgstr "Palica za igru s 2 osi, 8 tipke"
msgid "3-axis, 2-button joystick"
msgstr "Palica za igru s 3 osi, 2 tipke"
msgid "3-axis, 3-button joystick"
msgstr "Palica za igru s 3 osi, 3 tipke"
msgid "3-axis, 4-button joystick"
msgstr "Palica za igru s 3 osi, 4 tipke"
msgid "4-axis, 2-button joystick"
msgstr "Palica za igru s 4 osi, 2 tipke"
msgid "4-axis, 3-button joystick"
msgstr "Palica za igru s 4 osi, 3 tipke"
msgid "4-axis, 4-button joystick"
msgstr "Palica za igru s 4 osi, 4 tipke"
msgid "2-button gamepad(s)"
msgstr "Gamepad(ovi) s 2 tipke"
msgid "3-button gamepad"
msgstr "Gamepad s 3 tipke"
msgid "4-button gamepad"
msgstr "Gamepad s 4 tipke"
msgid "6-button gamepad"
msgstr "Gamepad s 6 tipke"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Jaram za letenje s 2 tipke"
msgid "3-button flight yoke"
msgstr "Jaram za letenje s 3 tipke"
msgid "4-button flight yoke"
msgstr "Jaram za letenje s 4 tipke"
msgid "2-button flight yoke with throttle"
msgstr "Jaram za letenje s 2 tipke i gasom"
msgid "3-button flight yoke with throttle"
msgstr "Jaram za letenje s 3 tipke i gasom"
msgid "4-button flight yoke with throttle"
msgstr "Jaram za letenje s 4 tipke i gasom"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volan (3 osi, 2 tipke)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volan (3 osi, 3 tipke)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volan (3 osi, 4 tipke)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Gamepad(ovi) s 2 tipke"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Jaram za letenje s 2 tipke"
msgid "4-button gamepad"
msgstr "Gamepad s 4 tipke"
msgid "4-button flight yoke"
msgstr "Jaram za letenje s 4 tipke"
msgid "2-button flight yoke with throttle"
msgstr "Jaram za letenje s 2 tipke i gasom"
msgid "4-button flight yoke with throttle"
msgstr "Jaram za letenje s 4 tipke i gasom"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volan Win95 (3 osi, 4 tipke)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Bez"
@@ -2988,6 +3063,9 @@ msgstr "Način rastezanja ulaza u OpenGL-u"
msgid "Color scheme"
msgstr "Shema boja"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Svjetlo"

View File

@@ -852,9 +852,18 @@ msgstr "Nessun dispositivo PCap trovato"
msgid "Invalid PCap device"
msgstr "Dispositivo PCap non valido"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joystick a 2 assi, 1 pulsanti"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joystick a 2 assi, 2 pulsanti"
msgid "2-axis, 3-button joystick"
msgstr "Joystick a 2 assi, 3 pulsanti"
msgid "2-axis, 4-button joystick"
msgstr "Joystick a 2 assi, 4 pulsanti"
@@ -867,18 +876,99 @@ msgstr "Joystick a 2 assi, 8 pulsanti"
msgid "3-axis, 2-button joystick"
msgstr "Joystick a 3 assi, 2 pulsanti"
msgid "3-axis, 3-button joystick"
msgstr "Joystick a 3 assi, 4 pulsanti"
msgid "3-axis, 4-button joystick"
msgstr "Joystick a 3 assi, 4 pulsanti"
msgid "4-axis, 2-button joystick"
msgstr "Joystick a 4 assi, 2 pulsanti"
msgid "4-axis, 3-button joystick"
msgstr "Joystick a 4 assi, 3 pulsanti"
msgid "4-axis, 4-button joystick"
msgstr "Joystick a 4 assi, 4 pulsanti"
msgid "2-button gamepad(s)"
msgstr "Gamepad a 2 pulsanti"
msgid "3-button gamepad"
msgstr "Gamepad a 3 pulsanti"
msgid "4-button gamepad"
msgstr "Gamepad a 4 pulsanti"
msgid "6-button gamepad"
msgstr "Gamepad a 6 pulsanti"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Barra di comando a 2 pulsanti"
msgid "3-button flight yoke"
msgstr "Barra di comando a 3 pulsanti"
msgid "4-button flight yoke"
msgstr "Barra di comando a 4 pulsanti"
msgid "2-button flight yoke with throttle"
msgstr "Barra di comando a 2 pulsanti con acceleratore"
msgid "3-button flight yoke with throttle"
msgstr "Barra di comando a 4 pulsanti con acceleratore"
msgid "4-button flight yoke with throttle"
msgstr "Barra di comando a 4 pulsanti con acceleratore"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volante (3 assi, 2 pulsanti)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volante (3 assi, 3 pulsanti)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volante (3 assi, 4 pulsanti)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + Pedali CH"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedali Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedali"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedali Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedali"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedali Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder"
@@ -888,26 +978,11 @@ msgstr "Sistema di controllo Thrustmaster Flight"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Sistema di controllo timone"
msgid "2-button gamepad(s)"
msgstr "Gamepad a 2 pulsanti"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Barra di comando a 2 pulsanti"
msgid "4-button gamepad"
msgstr "Gamepad a 4 pulsanti"
msgid "4-button flight yoke"
msgstr "Barra di comando a 4 pulsanti"
msgid "2-button flight yoke with throttle"
msgstr "Barra di comando a 2 pulsanti con acceleratore"
msgid "4-button flight yoke with throttle"
msgstr "Barra di comando a 4 pulsanti con acceleratore"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volante Win95 (3 assi, 4 pulsanti)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Nessuno"
@@ -2988,6 +3063,9 @@ msgstr "Modalità adattamento ingresso OpenGL"
msgid "Color scheme"
msgstr "Modalità colori"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Chiara"

View File

@@ -852,9 +852,18 @@ msgstr "PCapデバイスがありません"
msgid "Invalid PCap device"
msgstr "不正なPCapデバイス"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "ジョイスティック(2軸、1ボタン)"
msgid "2-axis, 2-button joystick(s)"
msgstr "ジョイスティック(2軸、2ボタン)"
msgid "2-axis, 3-button joystick"
msgstr "ジョイスティック(2軸、3ボタン)"
msgid "2-axis, 4-button joystick"
msgstr "ジョイスティック(2軸、4ボタン)"
@@ -867,18 +876,99 @@ msgstr "ジョイスティック(2軸、8ボタン)"
msgid "3-axis, 2-button joystick"
msgstr "ジョイスティック(3軸、2ボタン)"
msgid "3-axis, 3-button joystick"
msgstr "ジョイスティック(3軸、3ボタン)"
msgid "3-axis, 4-button joystick"
msgstr "ジョイスティック(3軸、4ボタン)"
msgid "4-axis, 2-button joystick"
msgstr "ジョイスティック(4軸、2ボタン)"
msgid "4-axis, 3-button joystick"
msgstr "ジョイスティック(4軸、3ボタン)"
msgid "4-axis, 4-button joystick"
msgstr "ジョイスティック(4軸、4ボタン)"
msgid "2-button gamepad(s)"
msgstr "2ボタン式ゲームパッド"
msgid "3-button gamepad"
msgstr "3ボタン式ゲームパッド"
msgid "4-button gamepad"
msgstr "4ボタン式ゲームパッド"
msgid "6-button gamepad"
msgstr "6ボタン式ゲームパッド"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2ボタン式操縦桿"
msgid "3-button flight yoke"
msgstr "3ボタン式操縦桿"
msgid "4-button flight yoke"
msgstr "4ボタン式操縦桿"
msgid "2-button flight yoke with throttle"
msgstr "2ボタン式フライトヨーク(スロットル付き)"
msgid "3-button flight yoke with throttle"
msgstr "3ボタン式フライトヨーク(スロットル付き)"
msgid "4-button flight yoke with throttle"
msgstr "4ボタン式フライトヨーク(スロットル付き)"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "ステアリングホイール(3軸、2ボタン)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "ステアリングホイール(3軸、3ボタン)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "ステアリングホイール(3軸、4ボタン)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinderパッド"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2ボタン式ゲームパッド"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2ボタン式操縦桿"
msgid "4-button gamepad"
msgstr "4ボタン式ゲームパッド"
msgid "4-button flight yoke"
msgstr "4ボタン式操縦桿"
msgid "2-button flight yoke with throttle"
msgstr "2ボタン式フライトヨーク(スロットル付き)"
msgid "4-button flight yoke with throttle"
msgstr "4ボタン式フライトヨーク(スロットル付き)"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 ステアリングホイール(3軸、4ボタン)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "なし"
@@ -2988,6 +3063,9 @@ msgstr "OpenGLの入力ストレッチモード"
msgid "Color scheme"
msgstr "配色"
msgid "System"
msgstr ""
msgid "Light"
msgstr "光"

View File

@@ -852,9 +852,18 @@ msgstr "PCap 장치가 없습니다"
msgid "Invalid PCap device"
msgstr "PCap 장치가 올바르지 않습니다"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2축, 1버튼 조이스틱"
msgid "2-axis, 2-button joystick(s)"
msgstr "2축, 2버튼 조이스틱"
msgid "2-axis, 3-button joystick"
msgstr "2축, 3버튼 조이스틱"
msgid "2-axis, 4-button joystick"
msgstr "2축, 4버튼 조이스틱"
@@ -867,18 +876,99 @@ msgstr "2축, 8버튼 조이스틱"
msgid "3-axis, 2-button joystick"
msgstr "3축, 2버튼 조이스틱"
msgid "3-axis, 3-button joystick"
msgstr "3축, 3버튼 조이스틱"
msgid "3-axis, 4-button joystick"
msgstr "3축, 4버튼 조이스틱"
msgid "4-axis, 2-button joystick"
msgstr "4축, 2버튼 조이스틱"
msgid "4-axis, 3-button joystick"
msgstr "4축, 3버튼 조이스틱"
msgid "4-axis, 4-button joystick"
msgstr "4축, 4버튼 조이스틱"
msgid "2-button gamepad(s)"
msgstr "2버튼 게임패드"
msgid "3-button gamepad"
msgstr "3버튼 게임패드"
msgid "4-button gamepad"
msgstr "4버튼 게임패드"
msgid "6-button gamepad"
msgstr "6버튼 게임패드"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2버튼 비행 조종간"
msgid "3-button flight yoke"
msgstr "3버튼 비행 조종간"
msgid "4-button flight yoke"
msgstr "4버튼 비행 조종간"
msgid "2-button flight yoke with throttle"
msgstr "2버튼 비행 조종간과 스로틀"
msgid "3-button flight yoke with throttle"
msgstr "3버튼 비행 조종간과 스로틀"
msgid "4-button flight yoke with throttle"
msgstr "4버튼 비행 조종간과 스로틀"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "조타륜 (3축, 2버튼)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "조타륜 (3축, 3버튼)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "조타륜 (3축, 4버튼)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2버튼 게임패드"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2버튼 비행 조종간"
msgid "4-button gamepad"
msgstr "4버튼 게임패드"
msgid "4-button flight yoke"
msgstr "4버튼 비행 조종간"
msgid "2-button flight yoke with throttle"
msgstr "2버튼 비행 조종간과 스로틀"
msgid "4-button flight yoke with throttle"
msgstr "4버튼 비행 조종간과 스로틀"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 조타륜 (3축, 4버튼)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "없음"
@@ -2988,6 +3063,9 @@ msgstr "OpenGL 입력 스트레치 모드"
msgid "Color scheme"
msgstr "색상 구성"
msgid "System"
msgstr ""
msgid "Light"
msgstr "빛"

View File

@@ -852,9 +852,18 @@ msgstr "Ingen PCap-enheter funnet"
msgid "Invalid PCap device"
msgstr "Ugyldig PCap-enhet"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-akset, 1-knapps styrespak(er)"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-akset, 2-knapps styrespak(er)"
msgid "2-axis, 3-button joystick"
msgstr "2-akset, 3-knapps styrespak"
msgid "2-axis, 4-button joystick"
msgstr "2-akset, 4-knapps styrespak"
@@ -867,18 +876,99 @@ msgstr "2-akset, 8-knapps styrespak"
msgid "3-axis, 2-button joystick"
msgstr "3-akset, 2-knapps styrespak"
msgid "3-axis, 3-button joystick"
msgstr "3-akset, 4-knapps styrespak"
msgid "3-axis, 4-button joystick"
msgstr "3-akset, 4-knapps styrespak"
msgid "4-axis, 2-button joystick"
msgstr "4-akset, 2-knapps styrespak"
msgid "4-axis, 3-button joystick"
msgstr "4-akset, 3-knapps styrespak"
msgid "4-axis, 4-button joystick"
msgstr "4-akset, 4-knapps styrespak"
msgid "2-button gamepad(s)"
msgstr "2-knapps gamepad(er)"
msgid "3-button gamepad"
msgstr "3-knapps gamepad"
msgid "4-button gamepad"
msgstr "4-knapps gamepad"
msgid "6-button gamepad"
msgstr "6-knapps gamepad"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-knapps flystyre"
msgid "3-button flight yoke"
msgstr "3-knapps flystyre"
msgid "4-button flight yoke"
msgstr "4-knapps flystyre"
msgid "2-button flight yoke with throttle"
msgstr "2-knapps flystyre med gass"
msgid "3-button flight yoke with throttle"
msgstr "3-knapps flystyre med gass"
msgid "4-button flight yoke with throttle"
msgstr "4-knapps flystyre med gass"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Ratt (3-akset, 3-knapps)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Ratt (3-akset, 3-knapps)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Ratt (3-akset, 4-knapps)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedaler"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedaler Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedaler"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedaler Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedaler"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedaler Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedaler"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedaler Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Ror-kontrollsystem"
msgid "2-button gamepad(s)"
msgstr "2-knapps gamepad(er)"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-knapps flystyre"
msgid "4-button gamepad"
msgstr "4-knapps gamepad"
msgid "4-button flight yoke"
msgstr "4-knapps flystyre"
msgid "2-button flight yoke with throttle"
msgstr "2-knapps flystyre med gass"
msgid "4-button flight yoke with throttle"
msgstr "4-knapps flystyre med gass"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 Ratt (3-akset, 4-knapps)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ingen"
@@ -2988,6 +3063,9 @@ msgstr "Inngangsstrekkmodus for OpenGL"
msgid "Color scheme"
msgstr "Fargevalg"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Lys"

View File

@@ -852,9 +852,18 @@ msgstr "Geen PCap-apparaten gevonden"
msgid "Invalid PCap device"
msgstr "Ongeldig PCap-apparaat"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joystick(s) met 2 assen en 1 knoppen"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joystick(s) met 2 assen en 2 knoppen"
msgid "2-axis, 3-button joystick"
msgstr "Joystick met 2 assen en 3 knoppen"
msgid "2-axis, 4-button joystick"
msgstr "Joystick met 2 assen en 4 knoppen"
@@ -867,18 +876,99 @@ msgstr "Joystick met 2 assen en 8 knoppen"
msgid "3-axis, 2-button joystick"
msgstr "Joystick met 3 assen en 2 knoppen"
msgid "3-axis, 3-button joystick"
msgstr "Joystick met 3 assen en 3 knoppen"
msgid "3-axis, 4-button joystick"
msgstr "Joystick met 3 assen en 4 knoppen"
msgid "4-axis, 2-button joystick"
msgstr "Joystick met 4 assen en 2 knoppen"
msgid "4-axis, 3-button joystick"
msgstr "Joystick met 4 assen en 3 knoppen"
msgid "4-axis, 4-button joystick"
msgstr "Joystick met 4 assen en 4 knoppen"
msgid "2-button gamepad(s)"
msgstr "2-knops gamepad(s)"
msgid "3-button gamepad"
msgstr "3-knops gamepad"
msgid "4-button gamepad"
msgstr "4-knops gamepad"
msgid "6-button gamepad"
msgstr "6-knops gamepad"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-knops stuurknuppel"
msgid "3-button flight yoke"
msgstr "3-knops stuurknuppel"
msgid "4-button flight yoke"
msgstr "4-knops stuurknuppel"
msgid "2-button flight yoke with throttle"
msgstr "2-kops stuurknuppel met gashendel "
msgid "3-button flight yoke with throttle"
msgstr "3-kops stuurknuppel met gashendel"
msgid "4-button flight yoke with throttle"
msgstr "4-kops stuurknuppel met gashendel"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Stuurwiel (3 assen, 2 knoppen)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Stuurwiel (3 assen, 3 knoppen)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Stuurwiel (3 assen, 4 knoppen)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedalen"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedalen Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedalen"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedalen Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedalen"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedalen Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedalen"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedalen Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control systeem"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Roer Control Systeem"
msgid "2-button gamepad(s)"
msgstr "2-knops gamepad(s)"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-knops stuurknuppel"
msgid "4-button gamepad"
msgstr "4-knops gamepad"
msgid "4-button flight yoke"
msgstr "4-knops stuurknuppel"
msgid "2-button flight yoke with throttle"
msgstr "2-kops stuurknuppel met gashendel "
msgid "4-button flight yoke with throttle"
msgstr "2-kops stuurknuppel met gashendel"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 Stuurwiel (3 assen, 4 knoppen)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Geen"
@@ -2988,6 +3063,9 @@ msgstr "Input stretch-modus van OpenGL"
msgid "Color scheme"
msgstr "Kleurenschema"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Licht"

View File

@@ -852,9 +852,18 @@ msgstr "Nie znaleziono urządzeń PCap"
msgid "Invalid PCap device"
msgstr "Nieprawidłowe urządzenie PCap"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joysticki 2-osiowe, 1-przyciskowe"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joysticki 2-osiowe, 2-przyciskowe"
msgid "2-axis, 3-button joystick"
msgstr "Joystick 2-osiowy, 3-przyciskowy"
msgid "2-axis, 4-button joystick"
msgstr "Joystick 2-osiowy, 4-przyciskowy"
@@ -867,18 +876,99 @@ msgstr "Joystick 2-osiowy, 8-przyciskowy"
msgid "3-axis, 2-button joystick"
msgstr "Joystick 3-osiowy, 2-przyciskowy"
msgid "3-axis, 3-button joystick"
msgstr "Joystick 3-osiowy, 2-przyciskowy"
msgid "3-axis, 4-button joystick"
msgstr "Joystick 3-osiowy, 4-przyciskowy"
msgid "4-axis, 2-button joystick"
msgstr "Joystick 4-osiowy, 2-przyciskowy"
msgid "4-axis, 3-button joystick"
msgstr "Joystick 4-osiowy, 3-przyciskowy"
msgid "4-axis, 4-button joystick"
msgstr "Joystick 4-osiowy, 4-przyciskowy"
msgid "2-button gamepad(s)"
msgstr "Pad(y) z dwoma przyciskami"
msgid "3-button gamepad"
msgstr "Pad z trzy przyciskami"
msgid "4-button gamepad"
msgstr "Pad z czterema przyciskami"
msgid "6-button gamepad"
msgstr "Pad z sześć przyciskami"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Wolant z dwoma przyciskami"
msgid "3-button flight yoke"
msgstr "Wolant z trzema guzikami"
msgid "4-button flight yoke"
msgstr "Wolant z czterema przyciskami"
msgid "2-button flight yoke with throttle"
msgstr "Wolant z dwoma przyciskami i przepustnicą"
msgid "3-button flight yoke with throttle"
msgstr "Wolant z trzema przyciskami i przepustnicą"
msgid "4-button flight yoke with throttle"
msgstr "Wolant z czterema przyciskami i przepustnicą"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Kierownica (3 osie, 2 przyciski)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Kierownica (3 osie, 3 przyciski)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Kierownica (3 osie, 4 przyciski)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Pad(y) z dwoma przyciskami"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Wolant z dwoma przyciskami"
msgid "4-button gamepad"
msgstr "Pad z czterema przyciskami"
msgid "4-button flight yoke"
msgstr "Wolant z czterema przyciskami"
msgid "2-button flight yoke with throttle"
msgstr "Wolant z dwoma przyciskami i przepustnicą"
msgid "4-button flight yoke with throttle"
msgstr "Wolant z czterema przyciskami i przepustnicą"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Kierownica Win95 (3 osie, 4 przyciski)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Żaden"
@@ -2988,6 +3063,9 @@ msgstr "Tryb rozciągania wejściowego OpenGL"
msgid "Color scheme"
msgstr "Schemat kolorów"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Światło"

View File

@@ -852,9 +852,18 @@ msgstr "Nenhum dispositivo PCap encontrado"
msgid "Invalid PCap device"
msgstr "Dispositivo PCap inválido"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joystick(s) de 2 eixos, 1 botões"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joystick(s) de 2 eixos, 2 botões"
msgid "2-axis, 3-button joystick"
msgstr "Joystick de 2 eixos, 3 botões"
msgid "2-axis, 4-button joystick"
msgstr "Joystick de 2 eixos, 4 botões"
@@ -867,18 +876,99 @@ msgstr "Joystick de 2 eixos, 8 botões"
msgid "3-axis, 2-button joystick"
msgstr "Joystick de 3 eixos, 2 botões"
msgid "3-axis, 3-button joystick"
msgstr "Joystick de 3 eixos, 3 botões"
msgid "3-axis, 4-button joystick"
msgstr "Joystick de 3 eixos, 4 botões"
msgid "4-axis, 2-button joystick"
msgstr "Joystick de 4 eixos, 2 botões"
msgid "4-axis, 3-button joystick"
msgstr "Joystick de 4 eixos, 3 botões"
msgid "4-axis, 4-button joystick"
msgstr "Joystick de 4 eixos, 4 botões"
msgid "2-button gamepad(s)"
msgstr "Gamepad(s) de 2 botões"
msgid "3-button gamepad"
msgstr "Gamepad de 3 botões"
msgid "4-button gamepad"
msgstr "Gamepad de 4 botões"
msgid "6-button gamepad"
msgstr "Gamepad de 6 botões"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Manche de voo de 2 botões"
msgid "3-button flight yoke"
msgstr "Manche de voo de 3 botões"
msgid "4-button flight yoke"
msgstr "Manche de voo de 4 botões"
msgid "2-button flight yoke with throttle"
msgstr "Manche de voo de 2 botões com acelerador"
msgid "3-button flight yoke with throttle"
msgstr "Manche de voo de 3 botões com acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Manche de voo de 4 botões com acelerador"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volante (3 eixos, 2 botões)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volante (3 eixos, 3 botões)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volante (3 eixos, 4 botões)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + Pedais CH"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + Pedais CH Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + Pedais CH"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + Pedais CH Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + Pedais CH"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + Pedais CH Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Sistema de Controle de Voo Thrustmaster"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "SCV Thrustmaster + Sistema de Controle de Leme"
msgid "2-button gamepad(s)"
msgstr "Gamepad(s) de 2 botões"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Manche de voo de 2 botões"
msgid "4-button gamepad"
msgstr "Gamepad de 4 botões"
msgid "4-button flight yoke"
msgstr "Manche de voo de 4 botões"
msgid "2-button flight yoke with throttle"
msgstr "Manche de voo de 2 botões com acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Manche de voo de 4 botões com acelerador"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volante Win95 (3 eixos, 4 botões)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Nenhum"
@@ -2988,6 +3063,9 @@ msgstr "Modo de expansão de entrada do OpenGL"
msgid "Color scheme"
msgstr "Esquema de cores"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Claro"

View File

@@ -852,9 +852,18 @@ msgstr "Não foi encontrado um dispositivo PCap"
msgid "Invalid PCap device"
msgstr "Dispositivo PCap inválido"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Joystick(s) de 2 eixos, 1 botões"
msgid "2-axis, 2-button joystick(s)"
msgstr "Joystick(s) de 2 eixos, 2 botões"
msgid "2-axis, 3-button joystick"
msgstr "Joystick de 2 eixos, 3 botões"
msgid "2-axis, 4-button joystick"
msgstr "Joystick de 2 eixos, 4 botões"
@@ -867,18 +876,99 @@ msgstr "Joystick de 2 eixos, 8 botões"
msgid "3-axis, 2-button joystick"
msgstr "Joystick de 3 eixos, 2 botões"
msgid "3-axis, 3-button joystick"
msgstr "Joystick de 3 eixos, 3 botões"
msgid "3-axis, 4-button joystick"
msgstr "Joystick de 3 eixos, 4 botões"
msgid "4-axis, 2-button joystick"
msgstr "Joystick de 4 eixos, 2 botões"
msgid "4-axis, 3-button joystick"
msgstr "Joystick de 4 eixos, 3 botões"
msgid "4-axis, 4-button joystick"
msgstr "Joystick de 4 eixos, 4 botões"
msgid "2-button gamepad(s)"
msgstr "Manípulo(s) de jogos de 2 botões"
msgid "3-button gamepad"
msgstr "Manípulo(s) de jogos de 3 botões"
msgid "4-button gamepad"
msgstr "Manípulo(s) de jogos de 4 botões"
msgid "6-button gamepad"
msgstr "Manípulo(s) de jogos de 6 botões"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Manípulo de voo de 2 botões"
msgid "3-button flight yoke"
msgstr "Manípulo de voo de 2 botões"
msgid "4-button flight yoke"
msgstr "Manípulo de voo de 4 botões"
msgid "2-button flight yoke with throttle"
msgstr "Manípulo de voo de 2 botões com acelerador"
msgid "3-button flight yoke with throttle"
msgstr "Manípulo de voo de 3 botões com acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Manípulo de voo de 4 botões com acelerador"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volante (de 3 eixos, 2 botões)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volante (de 3 eixos, 3 botões)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volante (de 3 eixos, 4 botões)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Manípulo(s) de jogos de 2 botões"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Manípulo de voo de 2 botões"
msgid "4-button gamepad"
msgstr "Manípulo(s) de jogos de 4 botões"
msgid "4-button flight yoke"
msgstr "Manípulo de voo de 4 botões"
msgid "2-button flight yoke with throttle"
msgstr "Manípulo de voo de 2 botões com acelerador"
msgid "4-button flight yoke with throttle"
msgstr "Manípulo de voo de 4 botões com acelerador"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volante Win95 (de 3 eixos, 4 botões)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Nenhum"
@@ -2988,6 +3063,9 @@ msgstr "Modo de expansão de entrada do OpenGL"
msgid "Color scheme"
msgstr "Esquema de cores"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Claro"

View File

@@ -852,9 +852,18 @@ msgstr "Устройства PCap не найдены"
msgid "Invalid PCap device"
msgstr "Неверное устройство PCap"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-осевой, 1-кнопочный джойстик"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-осевой, 2-кнопочный джойстик"
msgid "2-axis, 3-button joystick"
msgstr "2-осевой, 3-кнопочный джойстик"
msgid "2-axis, 4-button joystick"
msgstr "2-осевой, 4-кнопочный джойстик"
@@ -867,18 +876,99 @@ msgstr "2-осевой, 8-кнопочный джойстик"
msgid "3-axis, 2-button joystick"
msgstr "3-осевой, 2-кнопочный джойстик"
msgid "3-axis, 3-button joystick"
msgstr "3-осевой, 3-кнопочный джойстик"
msgid "3-axis, 4-button joystick"
msgstr "3-осевой, 4-кнопочный джойстик"
msgid "4-axis, 2-button joystick"
msgstr "4-осевой, 2-кнопочный джойстик"
msgid "4-axis, 3-button joystick"
msgstr "4-осевой, 3-кнопочный джойстик"
msgid "4-axis, 4-button joystick"
msgstr "4-осевой, 4-кнопочный джойстик"
msgid "2-button gamepad(s)"
msgstr "2-кнопочный геймпад"
msgid "3-button gamepad"
msgstr "3-кнопочный геймпад"
msgid "4-button gamepad"
msgstr "4-кнопочный геймпад"
msgid "6-button gamepad"
msgstr "6-кнопочный геймпад"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-кнопочный flight yoke"
msgid "3-button flight yoke"
msgstr "3-кнопочный flight yoke"
msgid "4-button flight yoke"
msgstr "4-кнопочный flight yoke"
msgid "2-button flight yoke with throttle"
msgstr "2-кнопочный flight yoke с дросселем"
msgid "3-button flight yoke with throttle"
msgstr "3-кнопочный flight yoke с дросселем"
msgid "4-button flight yoke with throttle"
msgstr "4-кнопочный flight yoke с дросселем"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Руль (3-осевой, 2-кнопочный)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Руль (3-осевой, 3-кнопочный)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Руль (3-осевой, 4-кнопочный)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Педали"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Педали Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Педали"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Педали Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Педали"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Педали Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Педали"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Педали Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Система управления полётом Thrustmaster"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Система управления рулем"
msgid "2-button gamepad(s)"
msgstr "2-кнопочный геймпад"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-кнопочный flight yoke"
msgid "4-button gamepad"
msgstr "4-кнопочный геймпад"
msgid "4-button flight yoke"
msgstr "4-кнопочный flight yoke"
msgid "2-button flight yoke with throttle"
msgstr "2-кнопочный flight yoke с дросселем"
msgid "4-button flight yoke with throttle"
msgstr "4-кнопочный flight yoke с дросселем"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Руль Win95 (3-осевой, 4-кнопочный)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Нет"
@@ -2988,6 +3063,9 @@ msgstr "Режим растяжения ввода OpenGL"
msgid "Color scheme"
msgstr "Цветовая схема"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Светлая"

View File

@@ -852,9 +852,18 @@ msgstr "Neboli nájdené žiadne PCap zariadenia"
msgid "Invalid PCap device"
msgstr "Neplatné PCap zariadenie"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-osový, 1-tlačidlový joystick"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-osový, 2-tlačidlový joystick"
msgid "2-axis, 3-button joystick"
msgstr "2-osový, 4-tlačidlový joystick"
msgid "2-axis, 4-button joystick"
msgstr "2-osový, 4-tlačidlový joystick"
@@ -867,18 +876,99 @@ msgstr "2-osový, 8-tlačidlový joystick"
msgid "3-axis, 2-button joystick"
msgstr "3-osový, 2-tlačidlový joystick"
msgid "3-axis, 3-button joystick"
msgstr "3-osový, 3-tlačidlový joystick"
msgid "3-axis, 4-button joystick"
msgstr "3-osový, 4-tlačidlový joystick"
msgid "4-axis, 2-button joystick"
msgstr "4-osový, 2-tlačidlový joystick"
msgid "4-axis, 3-button joystick"
msgstr "4-osový, 3-tlačidlový joystick"
msgid "4-axis, 4-button joystick"
msgstr "4-osový, 4-tlačidlový joystick"
msgid "2-button gamepad(s)"
msgstr "Ovládač s 2 tlačidlami"
msgid "3-button gamepad"
msgstr "Ovládač so 3 tlačidlami"
msgid "4-button gamepad"
msgstr "Ovládač so 4 tlačidlami"
msgid "6-button gamepad"
msgstr "Ovládač so 6 tlačidlami"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Letecký knipl s 2 tlačidlami"
msgid "3-button flight yoke"
msgstr "Letecký knipl s 3 tlačidlami"
msgid "4-button flight yoke"
msgstr "Letecký knipl so 4 tlačidlami"
msgid "2-button flight yoke with throttle"
msgstr "Letecký knipl s 2 tlačidlami a pákou"
msgid "3-button flight yoke with throttle"
msgstr "Letecký knipl s 3 tlačidlami a pákou"
msgid "4-button flight yoke with throttle"
msgstr "Letecký knipl s 4 tlačidlami a pákou"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volant (3 osy, 2 tlačítka)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volant (3 osy, 3 tlačítka)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volant (3 osy, 4 tlačítka)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Ovládač s 2 tlačidlami"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Letecký knipl s 2 tlačidlami"
msgid "4-button gamepad"
msgstr "Ovládač so 4 tlačidlami"
msgid "4-button flight yoke"
msgstr "Letecký knipl so 4 tlačidlami"
msgid "2-button flight yoke with throttle"
msgstr "Letecký knipl s 2 tlačidlami a pákou"
msgid "4-button flight yoke with throttle"
msgstr "Letecký knipl s 4 tlačidlami a pákou"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volant pre Windows 95 (3 osy, 4 tlačítka)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Žiadne"
@@ -2988,6 +3063,9 @@ msgstr "Režim rozťahovania vstupu OpenGL"
msgid "Color scheme"
msgstr "Farebná schéma"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Svetlo"

View File

@@ -852,9 +852,18 @@ msgstr "Najdena ni bila nobena naprava PCap"
msgid "Invalid PCap device"
msgstr "Neveljavna naprava PCap"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Igralna palica z 2 osema, 1 gumboma"
msgid "2-axis, 2-button joystick(s)"
msgstr "Igralna palica z 2 osema, 2 gumboma"
msgid "2-axis, 3-button joystick"
msgstr "Igralna palica z 2 osema, 3 gumbi"
msgid "2-axis, 4-button joystick"
msgstr "Igralna palica z 2 osema, 4 gumbi"
@@ -865,20 +874,101 @@ msgid "2-axis, 8-button joystick"
msgstr "Igralna palica z 2 osema, 8 gumbi"
msgid "3-axis, 2-button joystick"
msgstr "Igralna palica s 3 osmi, 2 gumboma"
msgstr "Igralna palica s 3 osmi, 2 gumbi"
msgid "3-axis, 3-button joystick"
msgstr "Igralna palica s 3 osmi, 3 gumbi"
msgid "3-axis, 4-button joystick"
msgstr "Igralna palica s 3 osmi, 4 gumbi"
msgid "4-axis, 2-button joystick"
msgstr "Igralna palica s 4 osmi, 2 gumbi"
msgid "4-axis, 3-button joystick"
msgstr "Igralna palica s 4 osmi, 3 gumbi"
msgid "4-axis, 4-button joystick"
msgstr "Igralna palica s 4 osmi, 4 gumbi"
msgid "2-button gamepad(s)"
msgstr "Igralna ploščica z 2 gumboma"
msgid "3-button gamepad"
msgstr "Igralna ploščica s 3 gumbi"
msgid "4-button gamepad"
msgstr "Igralna ploščica s 4 gumbi"
msgid "6-button gamepad"
msgstr "Igralna ploščica s 6 gumbi"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Letalski krmilni drog z 2 gumbi"
msgid "3-button flight yoke"
msgstr "Letalski krmilni drog z 3 gumbi"
msgid "4-button flight yoke"
msgstr "Letalski krmilni drog s 4 gumbi"
msgid "2-button flight yoke with throttle"
msgstr "Letalski krmilni drog z 2 gumbi gumboma ročico za plin"
msgid "3-button flight yoke with throttle"
msgstr "Letalski krmilni drog s 3 gumbi z ročico za plin"
msgid "4-button flight yoke with throttle"
msgstr "Letalski krmilni drog s 4 gumbi z ročico za plin"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Volan s 3 osmi, 2 gumbi"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Volan s 3 osmi, 3 gumbi"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Volan s 3 osmi, 4 gumbi"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Igralna ploščica z 2 gumboma"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Letalski krmilni drog z 2 gumbi"
msgid "4-button gamepad"
msgstr "Igralna ploščica s 4 gumbi"
msgid "4-button flight yoke"
msgstr "Letalski krmilni drog s 4 gumbi"
msgid "2-button flight yoke with throttle"
msgstr "Letalski krmilni drog z 2 gumbi gumboma ročico za plin"
msgid "4-button flight yoke with throttle"
msgstr "Letalski krmilni drog s 4 gumbi z ročico za plin"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Volan Win95 s 3 osmi, 4 gumbi"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Brez"
@@ -2988,6 +3063,9 @@ msgstr "Način raztezanja vhoda OpenGL"
msgid "Color scheme"
msgstr "Barvna shema"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Svetloba"

View File

@@ -852,9 +852,18 @@ msgstr "Inga PCap-enheter hittade"
msgid "Invalid PCap device"
msgstr "Ogiltig PCap-enhet"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Styrspak med 2 axlar och 1 knappar"
msgid "2-axis, 2-button joystick(s)"
msgstr "Styrspak med 2 axlar och 2 knappar"
msgid "2-axis, 3-button joystick"
msgstr "Styrspak med 2 axlar och 3 knappar"
msgid "2-axis, 4-button joystick"
msgstr "Styrspak med 2 axlar och 4 knappar"
@@ -867,18 +876,99 @@ msgstr "Styrspak med 2 axlar och 8 knappar"
msgid "3-axis, 2-button joystick"
msgstr "Styrspak med 3 axlar och 2 knappar"
msgid "3-axis, 3-button joystick"
msgstr "Styrspak med 3 axlar och 2 knappar"
msgid "3-axis, 4-button joystick"
msgstr "Styrspak med 3 axlar och 4 knappar"
msgid "4-axis, 2-button joystick"
msgstr "Styrspak med 4 axlar och 2 knappar"
msgid "4-axis, 3-button joystick"
msgstr "Styrspak med 4 axlar och 3 knappar"
msgid "4-axis, 4-button joystick"
msgstr "Styrspak med 4 axlar och 4 knappar"
msgid "2-button gamepad(s)"
msgstr "Handkontroll(er) med två knappar"
msgid "3-button gamepad"
msgstr "Handkontroll med tre knappar"
msgid "4-button gamepad"
msgstr "Handkontroll med fyra knappar"
msgid "6-button gamepad"
msgstr "Handkontroll med sex knappar"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Styrspak med två knappar"
msgid "3-button flight yoke"
msgstr "Styrspak med tre knappar"
msgid "4-button flight yoke"
msgstr "Styrspak med fyra knappar"
msgid "2-button flight yoke with throttle"
msgstr "Styrspak med två knappar och gas"
msgid "3-button flight yoke with throttle"
msgstr "Styrspak med tre knappar och gas"
msgid "4-button flight yoke with throttle"
msgstr "Styrspak med fyra knappar och gas"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "ratt (tre axlar, två knappar)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "ratt (tre axlar, tre knappar)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "ratt (tre axlar, fyra knappar)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH-pedaler"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH-pedaler Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH-pedaler"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH-pedaler Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH-pedaler"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH-pedaler Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH-pedaler"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH-pedaler Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "Handkontroll(er) med två knappar"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Styrspak med två knappar"
msgid "4-button gamepad"
msgstr "Handkontroll med fyra knappar"
msgid "4-button flight yoke"
msgstr "Styrspak med fyra knappar"
msgid "2-button flight yoke with throttle"
msgstr "Styrspak med två knappar och gas"
msgid "4-button flight yoke with throttle"
msgstr "Styrspak med fyra knappar och gas"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95-ratt (tre axlar, fyra knappar)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ingen"
@@ -2988,6 +3063,9 @@ msgstr "Inmatningssträckningsläge för OpenGL"
msgid "Color scheme"
msgstr "Färgschema"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Ljus"

View File

@@ -852,9 +852,18 @@ msgstr "Herhangi bir PCap cihazı bulunamadı"
msgid "Invalid PCap device"
msgstr "Geçersiz PCap cihazı"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2 eksenli, 1 düğmeli oyun kolları"
msgid "2-axis, 2-button joystick(s)"
msgstr "2 eksenli, 2 düğmeli oyun kolları"
msgid "2-axis, 3-button joystick"
msgstr "2 eksenli, 3 düğmeli oyun kolu"
msgid "2-axis, 4-button joystick"
msgstr "2 eksenli, 4 düğmeli oyun kolu"
@@ -867,18 +876,99 @@ msgstr "2 eksenli, 8 düğmeli oyun kolu"
msgid "3-axis, 2-button joystick"
msgstr "3 eksenli, 2 düğmeli oyun kollu"
msgid "3-axis, 3-button joystick"
msgstr "3 eksenli, 3 düğmeli oyun kolu"
msgid "3-axis, 4-button joystick"
msgstr "3 eksenli, 4 düğmeli oyun kolu"
msgid "4-axis, 2-button joystick"
msgstr "4 eksenli, 2 düğmeli oyun kolu"
msgid "4-axis, 3-button joystick"
msgstr "4 eksenli, 3 düğmeli oyun kolu"
msgid "4-axis, 4-button joystick"
msgstr "4 eksenli, 4 düğmeli oyun kolu"
msgid "2-button gamepad(s)"
msgstr "2 düğmeli oyun tablası"
msgid "3-button gamepad"
msgstr "3 düğmeli oyun tablası"
msgid "4-button gamepad"
msgstr "4 düğmeli oyun tablası"
msgid "6-button gamepad"
msgstr "6 düğmeli oyun tablası"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2 düğmeli uçuş dümeni"
msgid "3-button flight yoke"
msgstr "3 düğmeli uçuş dümeni"
msgid "4-button flight yoke"
msgstr "4 düğmeli uçuş dümeni"
msgid "2-button flight yoke with throttle"
msgstr "2 düğmeli, gaz kollu uçuş dümeni"
msgid "3-button flight yoke with throttle"
msgstr "3 düğmeli, gaz kollu uçuş dümeni"
msgid "4-button flight yoke with throttle"
msgstr "4 düğmeli, gaz kollu uçuş dümeni"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "direksiyonu (3 eksenli, 2 düğmeli)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "direksiyonu (3 eksenli, 3 düğmeli)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "direksiyonu (3 eksenli, 4 düğmeli)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2 düğmeli oyun tablası"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2 düğmeli uçuş dümeni"
msgid "4-button gamepad"
msgstr "4 düğmeli oyun tablası"
msgid "4-button flight yoke"
msgstr "4 düğmeli uçuş dümeni"
msgid "2-button flight yoke with throttle"
msgstr "2 düğmeli, gaz kollu uçuş dümeni"
msgid "4-button flight yoke with throttle"
msgstr "4 düğmeli, gaz kollu uçuş dümeni"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 direksiyonu (3 eksenli, 4 düğmeli)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Hiçbiri"
@@ -2988,6 +3063,9 @@ msgstr "OpenGL'nin giriş germe modu"
msgid "Color scheme"
msgstr "Renk şeması"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Işık"

View File

@@ -852,9 +852,18 @@ msgstr "Пристрої PCap не знайдені"
msgid "Invalid PCap device"
msgstr "Невірний пристрій PCap"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2-осьовий, 1-кнопковий джойстик"
msgid "2-axis, 2-button joystick(s)"
msgstr "2-осьовий, 2-кнопковий джойстик"
msgid "2-axis, 3-button joystick"
msgstr "2-осьовий, 3-кнопковий джойстик"
msgid "2-axis, 4-button joystick"
msgstr "2-осьовий, 4-кнопковий джойстик"
@@ -867,18 +876,99 @@ msgstr "2-осьовий, 8-кнопковий джойстик"
msgid "3-axis, 2-button joystick"
msgstr "3-осьовий, 2-кнопковий джойстик"
msgid "3-axis, 3-button joystick"
msgstr "3-осьовий, 3-кнопковий джойстик"
msgid "3-axis, 4-button joystick"
msgstr "3-осьовий, 4-кнопковий джойстик"
msgid "4-axis, 2-button joystick"
msgstr "4-осьовий, 2-кнопковий джойстик"
msgid "4-axis, 3-button joystick"
msgstr "4-осьовий, 3-кнопковий джойстик"
msgid "4-axis, 4-button joystick"
msgstr "4-осьовий, 4-кнопковий джойстик"
msgid "2-button gamepad(s)"
msgstr "2-кнопковий геймпад"
msgid "3-button gamepad"
msgstr "3-кнопковий геймпад"
msgid "4-button gamepad"
msgstr "4-кнопковий геймпад"
msgid "6-button gamepad"
msgstr "6-кнопковий геймпад"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2-кнопковий flight yoke"
msgid "3-button flight yoke"
msgstr "3-кнопковий геймпад"
msgid "4-button flight yoke"
msgstr "4-кнопковий flight yoke"
msgid "2-button flight yoke with throttle"
msgstr "2-кнопковий flight yoke з дроселем"
msgid "3-button flight yoke with throttle"
msgstr "3-кнопковий flight yoke з дроселем"
msgid "4-button flight yoke with throttle"
msgstr "4-кнопковий flight yoke з дроселем"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Кермо (3-осьове, 2-кнопкове)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Кермо (3-осьове, 3-кнопкове)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Кермо (3-осьове, 4-кнопкове)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Педалі"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Педалі Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Педалі"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Педалі Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Педалі"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Педалі Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Педалі"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Педалі Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Система управління польотом Thrustmaster"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Система управління кермом"
msgid "2-button gamepad(s)"
msgstr "4-кнопковий геймпад"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2-кнопковий flight yoke"
msgid "4-button gamepad"
msgstr "4-кнопковий геймпад"
msgid "4-button flight yoke"
msgstr "4-кнопковий flight yoke"
msgid "2-button flight yoke with throttle"
msgstr "2-кнопковий flight yoke з дроселем"
msgid "4-button flight yoke with throttle"
msgstr "4-кнопковий flight yoke з дроселем"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Кермо Win95 (3-осьове, 4-кнопкове)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Ні"
@@ -2988,6 +3063,9 @@ msgstr "Режим розтягування вхідних даних OpenGL"
msgid "Color scheme"
msgstr "Колірна гамма"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Світло"

View File

@@ -852,9 +852,18 @@ msgstr "Không tìm thấy thiết bị PCap"
msgid "Invalid PCap device"
msgstr "Thiết bị PCap không hợp quy"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "Cần điều khiển hai trục, một nút"
msgid "2-axis, 2-button joystick(s)"
msgstr "Cần điều khiển hai trục, hai nút"
msgid "2-axis, 3-button joystick"
msgstr "Cần điều khiển hai trục, ba nút"
msgid "2-axis, 4-button joystick"
msgstr "Cần điều khiển hai trục, bốn nút"
@@ -867,18 +876,99 @@ msgstr "Cần điều khiển hai trục, tám nút"
msgid "3-axis, 2-button joystick"
msgstr "Cần điều khiển ba trục, hai nút"
msgid "3-axis, 3-button joystick"
msgstr "Cần điều khiển ba trục, ba nút"
msgid "3-axis, 4-button joystick"
msgstr "Cần điều khiển ba trục, bốn nút"
msgid "4-axis, 2-button joystick"
msgstr "Cần điều khiển bốn trục, hai nút"
msgid "4-axis, 3-button joystick"
msgstr "Cần điều khiển bốn trục, ba nút"
msgid "4-axis, 4-button joystick"
msgstr "Cần điều khiển bốn trục, bốn nút"
msgid "2-button gamepad(s)"
msgstr "Tay cầm game hai nút"
msgid "3-button gamepad"
msgstr "Tay cầm game ba nút"
msgid "4-button gamepad"
msgstr "Tay cầm game bốn nút"
msgid "6-button gamepad"
msgstr "Tay cầm game sáu nút"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "Vô lăng máy bay hai nút"
msgid "3-button flight yoke"
msgstr "Vô lăng máy bay ba nút"
msgid "4-button flight yoke"
msgstr "Vô lăng máy bay bốn nút"
msgid "2-button flight yoke with throttle"
msgstr "Vô lăng máy bay hai nút có cần ga"
msgid "3-button flight yoke with throttle"
msgstr "Vô lăng máy bay ba nút có cần ga"
msgid "4-button flight yoke with throttle"
msgstr "Vô lăng máy bay bốn nút có cần ga"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "Vô lăng (ba trục, hai nút)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "Vô lăng (ba trục, ba nút)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "Vô lăng (ba trục, bốn nút)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + bàn giậm CH"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + bàn giậm CH Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + bàn giậm CH"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + bàn giậm CH Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + bàn giậm CH"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + bàn giậm CH Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + bàn giậm CH"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + bàn giậm CH Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Hệ thống bánh lái"
msgid "2-button gamepad(s)"
msgstr "Tay cầm game hai nút"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "Vô lăng máy bay hai nút"
msgid "4-button gamepad"
msgstr "Tay cầm game bốn nút"
msgid "4-button flight yoke"
msgstr "Vô lăng máy bay bốn nút"
msgid "2-button flight yoke with throttle"
msgstr "Vô lăng máy bay hai nút có cần ga"
msgid "4-button flight yoke with throttle"
msgstr "Vô lăng máy bay bốn nút có cần ga"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Vô lăng Win95 (ba trục, bốn nút)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "Không có"
@@ -2988,6 +3063,9 @@ msgstr "Chế độ kéo giãn đầu vào của OpenGL"
msgid "Color scheme"
msgstr "Bảng màu"
msgid "System"
msgstr ""
msgid "Light"
msgstr "Ánh sáng"

View File

@@ -852,9 +852,18 @@ msgstr "未找到 PCap 设备"
msgid "Invalid PCap device"
msgstr "无效 PCap 设备"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2 轴, 1 键操纵杆"
msgid "2-axis, 2-button joystick(s)"
msgstr "2 轴, 2 键操纵杆"
msgid "2-axis, 3-button joystick"
msgstr "2 轴, 3 键操纵杆"
msgid "2-axis, 4-button joystick"
msgstr "2 轴, 4 键操纵杆"
@@ -867,18 +876,99 @@ msgstr "2 轴, 8 键操纵杆"
msgid "3-axis, 2-button joystick"
msgstr "3 轴, 2 键操纵杆"
msgid "3-axis, 3-button joystick"
msgstr "3 轴, 3 键操纵杆"
msgid "3-axis, 4-button joystick"
msgstr "3 轴, 4 键操纵杆"
msgid "4-axis, 2-button joystick"
msgstr "4 轴, 2 键操纵杆"
msgid "4-axis, 3-button joystick"
msgstr "4 轴, 3 键操纵杆"
msgid "4-axis, 4-button joystick"
msgstr "4 轴, 4 键操纵杆"
msgid "2-button gamepad(s)"
msgstr "2 按钮游戏手柄"
msgid "3-button gamepad"
msgstr "3 按钮游戏手柄"
msgid "4-button gamepad"
msgstr "4 按钮游戏手柄"
msgid "6-button gamepad"
msgstr "6 按钮游戏手柄"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2 按钮飞行摇杆"
msgid "3-button flight yoke"
msgstr "3 按钮飞行摇杆"
msgid "4-button flight yoke"
msgstr "4 按钮飞行摇杆"
msgid "2-button flight yoke with throttle"
msgstr "2 按钮带油门飞行摇杆"
msgid "3-button flight yoke with throttle"
msgstr "3 按钮带油门飞行摇杆"
msgid "4-button flight yoke with throttle"
msgstr "4 按钮带油门飞行摇杆"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "方向盘 (3 轴, 2 键)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "方向盘 (3 轴, 3 键)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "方向盘 (3 轴, 4 键)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2 按钮游戏手柄"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2 按钮飞行摇杆"
msgid "4-button gamepad"
msgstr "4 按钮游戏手柄"
msgid "4-button flight yoke"
msgstr "4 按钮飞行摇杆"
msgid "2-button flight yoke with throttle"
msgstr "2 按钮带油门飞行摇杆"
msgid "4-button flight yoke with throttle"
msgstr "4 按钮带油门飞行摇杆"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 方向盘 (3 轴, 4 键)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "无"
@@ -2988,6 +3063,9 @@ msgstr "OpenGL的输入拉伸模式"
msgid "Color scheme"
msgstr "配色方案"
msgid "System"
msgstr ""
msgid "Light"
msgstr "亮色"

View File

@@ -852,9 +852,18 @@ msgstr "未找到 PCap 裝置"
msgid "Invalid PCap device"
msgstr "無效 PCap 裝置"
msgid "Generic Paddle Controller(s)"
msgstr ""
msgid "2-axis, 1-button joystick(s)"
msgstr "2 軸, 1 鍵搖桿"
msgid "2-axis, 2-button joystick(s)"
msgstr "2 軸, 2 鍵搖桿"
msgid "2-axis, 3-button joystick"
msgstr "2 軸, 3 鍵搖桿"
msgid "2-axis, 4-button joystick"
msgstr "2 軸, 4 鍵搖桿"
@@ -867,18 +876,99 @@ msgstr "2 軸, 8 鍵搖桿"
msgid "3-axis, 2-button joystick"
msgstr "3 軸, 2 鍵搖桿"
msgid "3-axis, 3-button joystick"
msgstr "3 軸, 3 鍵搖桿"
msgid "3-axis, 4-button joystick"
msgstr "3 軸, 4 鍵搖桿"
msgid "4-axis, 2-button joystick"
msgstr "4 軸, 2 鍵搖桿"
msgid "4-axis, 3-button joystick"
msgstr "4 軸, 3 鍵搖桿"
msgid "4-axis, 4-button joystick"
msgstr "4 軸, 4 鍵搖桿"
msgid "2-button gamepad(s)"
msgstr "2 鍵遊戲手柄"
msgid "3-button gamepad"
msgstr "3 鍵遊戲手柄"
msgid "4-button gamepad"
msgstr "4 鍵遊戲手柄"
msgid "6-button gamepad"
msgstr "6 鍵遊戲手柄"
msgid "Gravis PC GamePad"
msgstr "Gravis PC GamePad"
msgid "2-button flight yoke"
msgstr "2 按鈕飛行搖桿"
msgid "3-button flight yoke"
msgstr "3 按鈕飛行搖桿"
msgid "4-button flight yoke"
msgstr "4 按鈕飛行搖桿"
msgid "2-button flight yoke with throttle"
msgstr "2 按鈕帶油門飛行搖桿"
msgid "3-button flight yoke with throttle"
msgstr "3 按鈕帶油門飛行搖桿"
msgid "4-button flight yoke with throttle"
msgstr "4 按鈕帶油門飛行搖桿"
msgid "Steering Wheel (3-axis, 2-button)"
msgstr "方向盤 (3 軸, 2 鍵搖桿)"
msgid "Steering Wheel (3-axis, 3-button)"
msgstr "方向盤 (3 軸, 3 鍵搖桿)"
msgid "Steering Wheel (3-axis, 4-button)"
msgstr "方向盤 (3 軸, 4 鍵搖桿)"
msgid "CH Flightstick"
msgstr "CH Flightstick"
msgid "CH Flightstick + CH Pedals"
msgstr "CH Flightstick + CH Pedals"
msgid "CH Flightstick + CH Pedals Pro"
msgstr "CH Flightstick + CH Pedals Pro"
msgid "CH Flightstick Pro"
msgstr "CH Flightstick Pro"
msgid "CH Flightstick Pro + CH Pedals"
msgstr "CH Flightstick Pro + CH Pedals"
msgid "CH Flightstick Pro + CH Pedals Pro"
msgstr "CH Flightstick Pro + CH Pedals Pro"
msgid "CH Virtual Pilot"
msgstr "CH Virtual Pilot"
msgid "CH Virtual Pilot + CH Pedals"
msgstr "CH Virtual Pilot + CH Pedals"
msgid "CH Virtual Pilot + CH Pedals Pro"
msgstr "CH Virtual Pilot + CH Pedals Pro"
msgid "CH Virtual Pilot Pro"
msgstr "CH Virtual Pilot Pro"
msgid "CH Virtual Pilot Pro + CH Pedals"
msgstr "CH Virtual Pilot Pro + CH Pedals"
msgid "CH Virtual Pilot Pro + CH Pedals Pro"
msgstr "CH Virtual Pilot Pro + CH Pedals Pro"
msgid "Microsoft SideWinder Pad"
msgstr "Microsoft SideWinder Pad"
@@ -888,26 +978,11 @@ msgstr "Thrustmaster Flight Control System"
msgid "Thrustmaster FCS + Rudder Control System"
msgstr "Thrustmaster FCS + Rudder Control System"
msgid "2-button gamepad(s)"
msgstr "2 鍵遊戲手柄"
msgid "Thrustmaster Formula T1/T2 with Adaptor"
msgstr "Thrustmaster Formula T1/T2 with Adaptor"
msgid "2-button flight yoke"
msgstr "2 按鈕飛行搖桿"
msgid "4-button gamepad"
msgstr "4 鍵遊戲手柄"
msgid "4-button flight yoke"
msgstr "4 按鈕飛行搖桿"
msgid "2-button flight yoke with throttle"
msgstr "2 按鈕帶油門飛行搖桿"
msgid "4-button flight yoke with throttle"
msgstr "4 按鈕帶油門飛行搖桿"
msgid "Win95 Steering Wheel (3-axis, 4-button)"
msgstr "Win95 方向盤 (3 軸, 4 鍵搖桿)"
msgid "Thrustmaster Formula T1/T2 without Adaptor"
msgstr "Thrustmaster Formula T1/T2 without Adaptor"
msgid "None"
msgstr "無"
@@ -2988,6 +3063,9 @@ msgstr "OpenGL 的輸入拉伸模式"
msgid "Color scheme"
msgstr "配色方案"
msgid "System"
msgstr ""
msgid "Light"
msgstr "亮色"