summaryrefslogtreecommitdiff
path: root/editor/editor_export.cpp
diff options
context:
space:
mode:
authorArtem Varaksa <aymfst@gmail.com>2018-01-04 22:00:39 +0300
committerArtem Varaksa <aymfst@gmail.com>2018-01-04 22:00:39 +0300
commit928ca10a7bf0b4093984ba70611b8162c89043eb (patch)
tree0cdf81d885497885a95a2be944b81c80a56322ee /editor/editor_export.cpp
parent92e114edfdf45aa311f7b8326d286998365b6bfa (diff)
Clean up \n from end of translation strings
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r--editor/editor_export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index 98fb7aeeea..e6a481eb01 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -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;
}