summaryrefslogtreecommitdiffstats
path: root/editor/editor_help_search.cpp
diff options
context:
space:
mode:
authorChaosus <chaosus89@gmail.com>2024-11-14 11:37:17 +0300
committerChaosus <chaosus89@gmail.com>2024-11-14 11:37:17 +0300
commitf3344b71b132c3a73cde1b9c111ea3acc03e96ca (patch)
treea1c462f7def87ed971750783d8f481a5082dccd7 /editor/editor_help_search.cpp
parent76fa7b291455a8ba24c50005072ebdb58f8a5984 (diff)
downloadredot-engine-f3344b71b132c3a73cde1b9c111ea3acc03e96ca.tar.gz
Fix incorrect order: `TTR(vformat` instead of `vformat(TTR`
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r--editor/editor_help_search.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp
index b0c06475f8..0fc7052a2b 100644
--- a/editor/editor_help_search.cpp
+++ b/editor/editor_help_search.cpp
@@ -1166,7 +1166,7 @@ TreeItem *EditorHelpSearch::Runner::_create_class_item(TreeItem *p_parent, const
if (p_matching_keyword.is_empty()) {
item->set_text(0, p_doc->name);
} else {
- item->set_text(0, p_doc->name + " - " + TTR(vformat("Matches the \"%s\" keyword.", p_matching_keyword)));
+ item->set_text(0, p_doc->name + " - " + vformat(TTR("Matches the \"%s\" keyword."), p_matching_keyword));
}
if (!term.is_empty()) {
@@ -1272,7 +1272,7 @@ TreeItem *EditorHelpSearch::Runner::_create_member_item(TreeItem *p_parent, cons
text = p_class_name + "." + p_text;
}
if (!p_matching_keyword.is_empty()) {
- text += " - " + TTR(vformat("Matches the \"%s\" keyword.", p_matching_keyword));
+ text += " - " + vformat(TTR("Matches the \"%s\" keyword."), p_matching_keyword);
}
item->set_text(0, text);