diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-10 15:06:30 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-10 15:06:30 +0100 |
| commit | 5f0afeaf161784768998c51a2f38d6a50e2676bb (patch) | |
| tree | db54e015031dc87e627d86a9caf68fbbb1b61e8a /editor/project_manager.cpp | |
| parent | 871c06af6d1d38921801f312fa0c7a04e9bdd6fb (diff) | |
| parent | 26581ca574a5299762ae8522e1545f640ecade2b (diff) | |
Merge pull request #73027 from timothyqiu/more-i18n
Add some missing translatable editor strings
Diffstat (limited to 'editor/project_manager.cpp')
| -rw-r--r-- | editor/project_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 105e3a5d47..6c7ad259ea 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -961,8 +961,8 @@ public: default_files_container->add_child(l); vcs_metadata_selection = memnew(OptionButton); vcs_metadata_selection->set_custom_minimum_size(Size2(100, 20)); - vcs_metadata_selection->add_item("None", (int)EditorVCSInterface::VCSMetadata::NONE); - vcs_metadata_selection->add_item("Git", (int)EditorVCSInterface::VCSMetadata::GIT); + vcs_metadata_selection->add_item(TTR("None"), (int)EditorVCSInterface::VCSMetadata::NONE); + vcs_metadata_selection->add_item(TTR("Git"), (int)EditorVCSInterface::VCSMetadata::GIT); vcs_metadata_selection->select((int)EditorVCSInterface::VCSMetadata::GIT); default_files_container->add_child(vcs_metadata_selection); Control *spacer = memnew(Control); |