summaryrefslogtreecommitdiffstats
path: root/modules/openxr/editor/openxr_action_set_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-04 14:31:43 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-04 14:31:43 +0200
commitc97885be7d1da7ac1e327f36b68d061d42c46a56 (patch)
tree5be7d36a130519d935033f75039f434ba6f1a3f6 /modules/openxr/editor/openxr_action_set_editor.cpp
parent27dec32699a686c69d9284a3458736680e3d2307 (diff)
parent91204f6f3f701887716d4628baa72b4f647d8857 (diff)
downloadredot-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_action_set_editor.cpp')
-rw-r--r--modules/openxr/editor/openxr_action_set_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/openxr/editor/openxr_action_set_editor.cpp b/modules/openxr/editor/openxr_action_set_editor.cpp
index a9fc6c4db6..8b4a0e989c 100644
--- a/modules/openxr/editor/openxr_action_set_editor.cpp
+++ b/modules/openxr/editor/openxr_action_set_editor.cpp
@@ -261,13 +261,13 @@ OpenXRActionSetEditor::OpenXRActionSetEditor(Ref<OpenXRActionMap> p_action_map,
action_set_hb->add_child(action_set_priority);
add_action = memnew(Button);
- add_action->set_tooltip_text("Add Action.");
+ add_action->set_tooltip_text(TTR("Add action."));
add_action->connect("pressed", callable_mp(this, &OpenXRActionSetEditor::_on_add_action));
add_action->set_flat(true);
action_set_hb->add_child(add_action);
rem_action_set = memnew(Button);
- rem_action_set->set_tooltip_text("Remove Action Set.");
+ rem_action_set->set_tooltip_text(TTR("Remove action set."));
rem_action_set->connect("pressed", callable_mp(this, &OpenXRActionSetEditor::_on_remove_action_set));
rem_action_set->set_flat(true);
action_set_hb->add_child(rem_action_set);