summaryrefslogtreecommitdiff
path: root/editor/plugins/input_event_editor_plugin.cpp
diff options
context:
space:
mode:
authorfoxydevloper <12120644+foxydevloper@users.noreply.github.com>2021-07-19 15:10:05 -0400
committerfoxydevloper <12120644+foxydevloper@users.noreply.github.com>2021-07-19 18:30:52 -0400
commit42d740d641a868fca3de69e5ebe158c9f63dafce (patch)
tree731e8e6c450f23ed3a0dc2586db174a488abed26 /editor/plugins/input_event_editor_plugin.cpp
parentdfc1ec7fb97f38c5e785433cb0fb497dfa8c7e36 (diff)
Make various strings translatable
Diffstat (limited to 'editor/plugins/input_event_editor_plugin.cpp')
-rw-r--r--editor/plugins/input_event_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/input_event_editor_plugin.cpp b/editor/plugins/input_event_editor_plugin.cpp
index f1aa10844b..d3d2de92f5 100644
--- a/editor/plugins/input_event_editor_plugin.cpp
+++ b/editor/plugins/input_event_editor_plugin.cpp
@@ -86,7 +86,7 @@ InputEventConfigContainer::InputEventConfigContainer() {
mc->add_child(hb);
open_config_button = memnew(Button);
- open_config_button->set_text("Configure");
+ open_config_button->set_text(TTR("Configure"));
open_config_button->connect("pressed", callable_mp(this, &InputEventConfigContainer::_configure_pressed));
hb->add_child(open_config_button);