summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_export.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index b36ed72125..7c99318dca 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -378,7 +378,7 @@ String EditorExportPlatform::find_export_template(String template_file_name, Str
// Not found
if (err) {
- *err += "No export template found at \"" + template_path + "\".";
+ *err += TTR("No export template found at the expected path:") + "\n" + template_path + "\n";
}
return String();
}
@@ -1404,12 +1404,12 @@ bool EditorExportPlatformPC::can_export(const Ref<EditorExportPreset> &p_preset,
if (!FileAccess::exists(custom_debug_binary)) {
dvalid = false;
- err = "Custom debug binary not found.\n";
+ err += TTR("Custom debug template not found.") + "\n";
}
if (!FileAccess::exists(custom_release_binary)) {
rvalid = false;
- err += "Custom release binary not found.\n";
+ err += TTR("Custom release template not found.") + "\n";
}
if (dvalid || rvalid)