diff options
author | Artem Varaksa <aymfst@gmail.com> | 2018-01-04 22:00:39 +0300 |
---|---|---|
committer | Artem Varaksa <aymfst@gmail.com> | 2018-01-04 22:00:39 +0300 |
commit | 928ca10a7bf0b4093984ba70611b8162c89043eb (patch) | |
tree | 0cdf81d885497885a95a2be944b81c80a56322ee /editor/editor_export.cpp | |
parent | 92e114edfdf45aa311f7b8326d286998365b6bfa (diff) |
Clean up \n from end of translation strings
Diffstat (limited to 'editor/editor_export.cpp')
-rw-r--r-- | editor/editor_export.cpp | 2 |
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; } |