mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Make DolphinWX strings more like DolphinQt2 strings
Same as the previous commit, except I'm copying strings in the other direction because the DolphinWX variants of these strings could use some improvement.
This commit is contained in:
@ -43,8 +43,11 @@ Turntable::Turntable(ExtensionReg& reg) : Attachment(_trans("Turntable"), reg)
|
||||
m_buttons->controls.emplace_back(new ControllerEmu::Input(turntable_button_name));
|
||||
|
||||
// turntables
|
||||
groups.emplace_back(m_left_table = new ControllerEmu::Slider(_trans("Table Left")));
|
||||
groups.emplace_back(m_right_table = new ControllerEmu::Slider(_trans("Table Right")));
|
||||
// i18n: "Table" refers to a turntable
|
||||
groups.emplace_back(m_left_table = new ControllerEmu::Slider("Table Left", _trans("Left Table")));
|
||||
groups.emplace_back(m_right_table =
|
||||
// i18n: "Table" refers to a turntable
|
||||
new ControllerEmu::Slider("Table Right", _trans("Right Table")));
|
||||
|
||||
// stick
|
||||
groups.emplace_back(
|
||||
|
Reference in New Issue
Block a user