diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-07-23 11:18:45 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-07-23 11:19:21 +0800 |
commit | b35a847109f88c2b6afd0bd4998f8a93e088335d (patch) | |
tree | 3a46d9bf77c7ecbd6551d20013954dad75a1435d /modules/gltf/register_types.cpp | |
parent | f8dbed4d0aef09ae7f4e3d66213268dba23a31d6 (diff) | |
download | redot-engine-b35a847109f88c2b6afd0bd4998f8a93e088335d.tar.gz |
Make blend file importer warnings translatable
Diffstat (limited to 'modules/gltf/register_types.cpp')
-rw-r--r-- | modules/gltf/register_types.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/register_types.cpp b/modules/gltf/register_types.cpp index 87149fa11d..1788ffac3a 100644 --- a/modules/gltf/register_types.cpp +++ b/modules/gltf/register_types.cpp @@ -70,9 +70,9 @@ static void _editor_init() { if (blend_enabled) { Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM); if (blender3_path.is_empty()) { - WARN_PRINT("Blend file import is enabled in the project settings, but no Blender path is configured in the editor settings. Blend files will not be imported."); + WARN_PRINT(TTR("Blend file import is enabled in the project settings, but no Blender path is configured in the editor settings. Blend files will not be imported.")); } else if (!da->dir_exists(blender3_path)) { - WARN_PRINT("Blend file import is enabled, but the Blender path doesn't point to an accessible directory. Blend files will not be imported."); + WARN_PRINT(TTR("Blend file import is enabled, but the Blender path doesn't point to an accessible directory. Blend files will not be imported.")); } else { Ref<EditorSceneFormatImporterBlend> importer; importer.instantiate(); |