summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-11-11 15:54:11 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-11-11 15:54:11 +0800
commit09b6466e1414d75c9497a6af4c4eb37d4358a777 (patch)
tree45a91b8ffc350c1af33a4a10cffb3819d384c461 /editor
parent0f5f3bc9546b46b2029fc8896dc859697f1eab97 (diff)
downloadredot-engine-09b6466e1414d75c9497a6af4c4eb37d4358a777.tar.gz
Translate the name of the debugger session tabs
Diffstat (limited to 'editor')
-rw-r--r--editor/debugger/editor_debugger_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/editor_debugger_node.cpp b/editor/debugger/editor_debugger_node.cpp
index 0f948b4ed5..7bb42378a2 100644
--- a/editor/debugger/editor_debugger_node.cpp
+++ b/editor/debugger/editor_debugger_node.cpp
@@ -120,7 +120,7 @@ ScriptEditorDebugger *EditorDebuggerNode::_add_debugger() {
tabs->add_child(node);
- node->set_name("Session " + itos(tabs->get_tab_count()));
+ node->set_name(vformat(TTR("Session %d"), tabs->get_tab_count()));
if (tabs->get_tab_count() > 1) {
node->clear_style();
tabs->set_tabs_visible(true);