diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-08-21 19:32:58 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-08-21 19:33:29 +0200 |
commit | 3ae0306a1f7de50d52b9a6654c25934044527824 (patch) | |
tree | d6fac55effddd46b1f70c583842fa7d5eb48807c /editor/export_template_manager.cpp | |
parent | 99980d856bf2581ff7b86e50067a0f8814442834 (diff) | |
download | redot-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.cpp | 2 |
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); |