1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Merge similar editor strings

(cherry picked from commit 4383f8a790)
This commit is contained in:
Haoyu Qiu
2021-07-13 13:31:48 +08:00
committed by Rémi Verschelde
parent db42629cef
commit 6250a33c61
2 changed files with 3 additions and 3 deletions

View File

@@ -4508,7 +4508,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;
}
@@ -5355,7 +5355,7 @@ void AnimationTrackEditor::_edit_menu_pressed(int p_option) {
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;
}