diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 00:24:52 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-10 16:55:50 +0800 |
commit | 26581ca574a5299762ae8522e1545f640ecade2b (patch) | |
tree | d9a4bd26b3ad35d8e9799805d4190bad435df116 /core | |
parent | 929ee61170ec4d431d6d2cfeddccdec2a59a11b7 (diff) |
Add some missing translatable editor strings
Diffstat (limited to 'core')
-rw-r--r-- | core/input/input_event.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp index 7c4642a8a5..a6c1bb168c 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -1186,14 +1186,14 @@ static const char *_joy_button_descriptions[(size_t)JoyButton::SDL_MAX] = { }; String InputEventJoypadButton::as_text() const { - String text = "Joypad Button " + itos((int64_t)button_index); + String text = vformat(RTR("Joypad Button %d"), (int64_t)button_index); if (button_index > JoyButton::INVALID && button_index < JoyButton::SDL_MAX) { - text += vformat(" (%s)", _joy_button_descriptions[(size_t)button_index]); + text += vformat(" (%s)", TTRGET(_joy_button_descriptions[(size_t)button_index])); } if (pressure != 0) { - text += ", Pressure:" + String(Variant(pressure)); + text += ", " + RTR("Pressure:") + " " + String(Variant(pressure)); } return text; |