diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-08-21 21:09:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-21 21:09:36 +0200 |
| commit | e132c36261e832b7b461d97909bf15786acc85ba (patch) | |
| tree | d366ad96a605a3ed2184d6f79eaa03da529dd5ab /editor/editor_asset_installer.cpp | |
| parent | 923ef2662542f8ec882c2f3cc01f773a3e94fdb3 (diff) | |
| parent | 3ae0306a1f7de50d52b9a6654c25934044527824 (diff) | |
| download | redot-engine-e132c36261e832b7b461d97909bf15786acc85ba.tar.gz | |
Merge pull request #31539 from Calinou/improve-editor-strings
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; } |
