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

@@ -1347,7 +1347,7 @@ Error EditorExportPlatformPC::export_project(const Ref<EditorExportPreset> &p_pr
}
if (template_path != String() && !FileAccess::exists(template_path)) {
EditorNode::get_singleton()->show_warning(TTR("Template file not found:\n") + template_path);
EditorNode::get_singleton()->show_warning(TTR("Template file not found:") + "\n" + template_path);
return ERR_FILE_NOT_FOUND;
}