mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Use _trans consistently for controllers
Some strings were marked with _trans in some places but not others. This commit adds extra _trans markers so that the usage of _trans is consistent. This shouldn't have any effect on which strings actually get translated. (Note that _trans doesn't do anything at runtime.) I also added a few new i18n comments.
This commit is contained in:
@ -492,8 +492,11 @@ wxStaticBoxSizer* TASInputDlg::CreateAccelLayout(Control* x, Control* y, Control
|
||||
const wxString& title)
|
||||
{
|
||||
auto* const temp_box = new wxStaticBoxSizer(wxHORIZONTAL, this, title);
|
||||
// i18n: Refers to a 3D axis (used when mapping motion controls)
|
||||
auto* const xBox = new wxStaticBoxSizer(wxVERTICAL, this, _("X"));
|
||||
// i18n: Refers to a 3D axis (used when mapping motion controls)
|
||||
auto* const yBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Y"));
|
||||
// i18n: Refers to a 3D axis (used when mapping motion controls)
|
||||
auto* const zBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Z"));
|
||||
const int space5 = FromDIP(5);
|
||||
|
||||
|
Reference in New Issue
Block a user