aboutsummaryrefslogtreecommitdiff
path: root/editor/dependency_editor.cpp
diff options
context:
space:
mode:
authorArtem Varaksa2018-01-04 22:00:39 +0300
committerArtem Varaksa2018-01-04 22:00:39 +0300
commit928ca10a7bf0b4093984ba70611b8162c89043eb (patch)
tree0cdf81d885497885a95a2be944b81c80a56322ee /editor/dependency_editor.cpp
parent92e114edfdf45aa311f7b8326d286998365b6bfa (diff)
downloadgodot-928ca10a7bf0b4093984ba70611b8162c89043eb.tar.gz
godot-928ca10a7bf0b4093984ba70611b8162c89043eb.tar.zst
godot-928ca10a7bf0b4093984ba70611b8162c89043eb.zip
Clean up \n from end of translation strings
Diffstat (limited to 'editor/dependency_editor.cpp')
-rw-r--r--editor/dependency_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp
index f18a96615..4e753cb34 100644
--- a/editor/dependency_editor.cpp
+++ b/editor/dependency_editor.cpp
@@ -514,7 +514,7 @@ void DependencyRemoveDialog::ok_pressed() {
print_line("Moving to trash: " + path);
Error err = OS::get_singleton()->move_to_trash(path);
if (err != OK) {
- EditorNode::get_singleton()->add_io_error(TTR("Cannot remove:\n") + to_delete[i] + "\n");
+ EditorNode::get_singleton()->add_io_error(TTR("Cannot remove:") + "\n" + to_delete[i] + "\n");
}
}