diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-07-13 08:44:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-13 08:44:38 +0200 |
| commit | d5cbd6cdb3a68d463f97a35cc1fbf4dd1ac47cf1 (patch) | |
| tree | a1d69d518fc5ece00fa567349fb5227c379ecfa1 /editor/animation_track_editor.cpp | |
| parent | 6a47de653a364f9b8ad5124f2ef212664488052f (diff) | |
| parent | 4383f8a7906dad841052190ad4a8d2613fe2e4ef (diff) | |
| download | redot-engine-d5cbd6cdb3a68d463f97a35cc1fbf4dd1ac47cf1.tar.gz | |
Merge pull request #50410 from timothyqiu/similar-msg
Merge similar editor strings
Diffstat (limited to 'editor/animation_track_editor.cpp')
| -rw-r--r-- | editor/animation_track_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index f61fb6bab3..1aa676d11c 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -4450,7 +4450,7 @@ void AnimationTrackEditor::_new_track_node_selected(NodePath p_path) { } if (node == AnimationPlayerEditor::singleton->get_player()) { - EditorNode::get_singleton()->show_warning(TTR("An animation player can't animate itself, only other players.")); + EditorNode::get_singleton()->show_warning(TTR("AnimationPlayer can't animate itself, only other players.")); return; } @@ -5334,7 +5334,7 @@ void AnimationTrackEditor::_edit_menu_pressed(int p_option) { } break; case EDIT_PASTE_TRACKS: { if (track_clipboard.size() == 0) { - EditorNode::get_singleton()->show_warning(TTR("Clipboard is empty")); + EditorNode::get_singleton()->show_warning(TTR("Clipboard is empty!")); break; } |
