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/editor_asset_installer.cpp | |
parent | 99980d856bf2581ff7b86e50067a0f8814442834 (diff) | |
download | redot-engine-3ae0306a1f7de50d52b9a6654c25934044527824.tar.gz |
Tweak a few strings displayed in the editor for consistency
Diffstat (limited to 'editor/editor_asset_installer.cpp')
-rw-r--r-- | editor/editor_asset_installer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_asset_installer.cpp b/editor/editor_asset_installer.cpp index b706f2cae6..98e670f952 100644 --- a/editor/editor_asset_installer.cpp +++ b/editor/editor_asset_installer.cpp @@ -90,7 +90,7 @@ void EditorAssetInstaller::open(const String &p_path, int p_depth) { unzFile pkg = unzOpen2(p_path.utf8().get_data(), &io); if (!pkg) { - error->set_text(TTR("Error opening package file, not in zip format.")); + error->set_text(TTR("Error opening package file, not in ZIP format.")); return; } @@ -217,7 +217,7 @@ void EditorAssetInstaller::ok_pressed() { unzFile pkg = unzOpen2(package_path.utf8().get_data(), &io); if (!pkg) { - error->set_text(TTR("Error opening package file, not in zip format.")); + error->set_text(TTR("Error opening package file, not in ZIP format.")); return; } |