diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-03-23 22:39:49 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-04-03 16:42:28 +0800 |
commit | 91204f6f3f701887716d4628baa72b4f647d8857 (patch) | |
tree | 37cc09c822cae87219926d744d163ae0a7c6c497 /editor/editor_locale_dialog.cpp | |
parent | 29b3d9e9e538f0aa8effc8ad8bf19a2915292a89 (diff) | |
download | redot-engine-91204f6f3f701887716d4628baa72b4f647d8857.tar.gz |
Fix missing i18n for some editor strings
Diffstat (limited to 'editor/editor_locale_dialog.cpp')
-rw-r--r-- | editor/editor_locale_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_locale_dialog.cpp b/editor/editor_locale_dialog.cpp index 1318b59685..e97e4ac777 100644 --- a/editor/editor_locale_dialog.cpp +++ b/editor/editor_locale_dialog.cpp @@ -322,7 +322,7 @@ void EditorLocaleDialog::_update_tree() { if (!is_edit_mode) { TreeItem *t = cnt_list->create_item(c_root); - t->set_text(0, "[Default]"); + t->set_text(0, TTR("[Default]")); t->set_metadata(0, ""); } |