diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-09 20:38:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 20:38:19 +0100 |
commit | f17c5501eb4bb6a86d9f2f07567da081eb8991b0 (patch) | |
tree | 7b6b8cce5077329811983e7112cccadbe493c92c /editor/plugins/animation_state_machine_editor.cpp | |
parent | 3a7dd7f3230171f2d75ee30b4544e931e966591f (diff) | |
parent | 25d93200c826bd47235697128f002c7a9d81952a (diff) | |
download | redot-engine-f17c5501eb4bb6a86d9f2f07567da081eb8991b0.tar.gz |
Merge pull request #58865 from timothyqiu/more-i18n
Add missing i18n to various strings
Diffstat (limited to 'editor/plugins/animation_state_machine_editor.cpp')
-rw-r--r-- | editor/plugins/animation_state_machine_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_state_machine_editor.cpp b/editor/plugins/animation_state_machine_editor.cpp index 6c284f2268..2f94176e2a 100644 --- a/editor/plugins/animation_state_machine_editor.cpp +++ b/editor/plugins/animation_state_machine_editor.cpp @@ -108,7 +108,7 @@ void AnimationNodeStateMachineEditor::_state_machine_gui_input(const Ref<InputEv continue; // nope } int idx = menu->get_item_count(); - menu->add_item(vformat("Add %s", name), idx); + menu->add_item(vformat(TTR("Add %s"), name), idx); menu->set_item_metadata(idx, E); } Ref<AnimationNode> clipb = EditorSettings::get_singleton()->get_resource_clipboard(); |