diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-04 14:31:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-04 14:31:43 +0200 |
commit | c97885be7d1da7ac1e327f36b68d061d42c46a56 (patch) | |
tree | 5be7d36a130519d935033f75039f434ba6f1a3f6 /modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp | |
parent | 27dec32699a686c69d9284a3458736680e3d2307 (diff) | |
parent | 91204f6f3f701887716d4628baa72b4f647d8857 (diff) | |
download | redot-engine-c97885be7d1da7ac1e327f36b68d061d42c46a56.tar.gz |
Merge pull request #89811 from timothyqiu/missing-i18n
Fix missing i18n for some editor strings
Diffstat (limited to 'modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp')
-rw-r--r-- | modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp b/modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp index 51642d8503..8fd66fac04 100644 --- a/modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp +++ b/modules/openxr/editor/openxr_select_interaction_profile_dialog.cpp @@ -111,7 +111,7 @@ void OpenXRSelectInteractionProfileDialog::ok_pressed() { } OpenXRSelectInteractionProfileDialog::OpenXRSelectInteractionProfileDialog() { - set_title("Select an interaction profile"); + set_title(TTR("Select an interaction profile")); scroll = memnew(ScrollContainer); scroll->set_custom_minimum_size(Size2(600.0, 400.0)); |