From 928ca10a7bf0b4093984ba70611b8162c89043eb Mon Sep 17 00:00:00 2001 From: Artem Varaksa Date: Thu, 4 Jan 2018 22:00:39 +0300 Subject: Clean up \n from end of translation strings --- editor/editor_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/editor_export.cpp') 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 &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; } -- cgit v1.2.3