diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-09 20:38:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 20:38:19 +0100 |
commit | f17c5501eb4bb6a86d9f2f07567da081eb8991b0 (patch) | |
tree | 7b6b8cce5077329811983e7112cccadbe493c92c /editor/import | |
parent | 3a7dd7f3230171f2d75ee30b4544e931e966591f (diff) | |
parent | 25d93200c826bd47235697128f002c7a9d81952a (diff) |
Merge pull request #58865 from timothyqiu/more-i18n
Add missing i18n to various strings
Diffstat (limited to 'editor/import')
-rw-r--r-- | editor/import/resource_importer_layered_texture.cpp | 2 | ||||
-rw-r--r-- | editor/import/resource_importer_texture.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/import/resource_importer_layered_texture.cpp b/editor/import/resource_importer_layered_texture.cpp index d9dd273ed4..197cc49a95 100644 --- a/editor/import/resource_importer_layered_texture.cpp +++ b/editor/import/resource_importer_layered_texture.cpp @@ -544,5 +544,5 @@ void ResourceImporterLayeredTexture::_check_compress_stex(Ref<LayeredTextureImpo } return; } - EditorNode::add_io_error("Warning, no suitable PC VRAM compression enabled in Project Settings. This texture will not display correctly on PC."); + EditorNode::add_io_error(TTR("Warning, no suitable PC VRAM compression enabled in Project Settings. This texture will not display correctly on PC.")); } diff --git a/editor/import/resource_importer_texture.cpp b/editor/import/resource_importer_texture.cpp index 1561fc788c..e672fe2dee 100644 --- a/editor/import/resource_importer_texture.cpp +++ b/editor/import/resource_importer_texture.cpp @@ -558,7 +558,7 @@ Error ResourceImporterTexture::import(const String &p_source_file, const String } if (!ok_on_pc) { - EditorNode::add_io_error("Warning, no suitable PC VRAM compression enabled in Project Settings. This texture will not display correctly on PC."); + EditorNode::add_io_error(TTR("Warning, no suitable PC VRAM compression enabled in Project Settings. This texture will not display correctly on PC.")); } } else { //import normally |