diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-06-23 08:02:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 08:02:37 +0200 |
commit | abb92861f44427e9376fab9ee2f414f14848d6b5 (patch) | |
tree | 41defd181e3841225a7c032ededa4293d7926096 | |
parent | cf4d39ecc139643dab07c831c75d7975ef1dd51b (diff) | |
parent | 084fdee4a21ad70800987e18336fff020b8000b8 (diff) |
Merge pull request #62334 from timothyqiu/title-ttr
Add missing TTR in dialog title
-rw-r--r-- | editor/plugins/animation_player_editor_plugin.cpp | 2 |
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)); |