Clean up \n from end of translation strings

This commit is contained in:
Artem Varaksa 2018-01-04 22:00:39 +03:00
parent 92e114edfd
commit 928ca10a7b
6 changed files with 12 additions and 12 deletions

View file

@ -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");
}
}