summaryrefslogtreecommitdiffstats
path: root/editor/export_template_manager.cpp
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-08-21 19:32:58 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-08-21 19:33:29 +0200
commit3ae0306a1f7de50d52b9a6654c25934044527824 (patch)
treed6fac55effddd46b1f70c583842fa7d5eb48807c /editor/export_template_manager.cpp
parent99980d856bf2581ff7b86e50067a0f8814442834 (diff)
downloadredot-engine-3ae0306a1f7de50d52b9a6654c25934044527824.tar.gz
Tweak a few strings displayed in the editor for consistency
Diffstat (limited to 'editor/export_template_manager.cpp')
-rw-r--r--editor/export_template_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp
index 68e859966c..1447a143d4 100644
--- a/editor/export_template_manager.cpp
+++ b/editor/export_template_manager.cpp
@@ -590,7 +590,7 @@ Error ExportTemplateManager::install_android_template() {
zlib_filefunc_def io = zipio_create_io_from_file(&src_f);
unzFile pkg = unzOpen2(source_zip.utf8().get_data(), &io);
- ERR_FAIL_COND_V_MSG(!pkg, ERR_CANT_OPEN, "Android sources not in zip format.");
+ ERR_FAIL_COND_V_MSG(!pkg, ERR_CANT_OPEN, "Android sources not in ZIP format.");
int ret = unzGoToFirstFile(pkg);