Merge pull request #5345 from JosJuice/consistent-controller-translation

Use _trans consistently for controllers
This commit is contained in:
Anthony
2017-05-04 09:00:41 -07:00
committed by GitHub
9 changed files with 53 additions and 35 deletions

View File

@ -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);