diff options
author | foxydevloper <12120644+foxydevloper@users.noreply.github.com> | 2021-07-19 15:10:05 -0400 |
---|---|---|
committer | foxydevloper <12120644+foxydevloper@users.noreply.github.com> | 2021-07-19 18:30:52 -0400 |
commit | 42d740d641a868fca3de69e5ebe158c9f63dafce (patch) | |
tree | 731e8e6c450f23ed3a0dc2586db174a488abed26 /editor/plugins/input_event_editor_plugin.cpp | |
parent | dfc1ec7fb97f38c5e785433cb0fb497dfa8c7e36 (diff) |
Make various strings translatable
Diffstat (limited to 'editor/plugins/input_event_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/input_event_editor_plugin.cpp | 2 |
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); |