summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-06-23 08:02:37 +0200
committerGitHub <noreply@github.com>2022-06-23 08:02:37 +0200
commitabb92861f44427e9376fab9ee2f414f14848d6b5 (patch)
tree41defd181e3841225a7c032ededa4293d7926096
parentcf4d39ecc139643dab07c831c75d7975ef1dd51b (diff)
parent084fdee4a21ad70800987e18336fff020b8000b8 (diff)
Merge pull request #62334 from timothyqiu/title-ttr
Add missing TTR in dialog title
-rw-r--r--editor/plugins/animation_player_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_player_editor_plugin.cpp b/editor/plugins/animation_player_editor_plugin.cpp
index 98ccc1fdbe..e5ca5d66e8 100644
--- a/editor/plugins/animation_player_editor_plugin.cpp
+++ b/editor/plugins/animation_player_editor_plugin.cpp
@@ -1053,7 +1053,7 @@ void AnimationPlayerEditor::_animation_duplicate() {
_update_name_dialog_library_dropdown();
name_dialog_op = TOOL_DUPLICATE_ANIM;
- name_dialog->set_title("Duplicate Animation");
+ name_dialog->set_title(TTR("Duplicate Animation"));
name_title->set_text(TTR("Duplicated Animation Name:"));
name->set_text(new_name);
name_dialog->popup_centered(Size2(300, 90));