Skip to content

Commit

Permalink
Merge pull request #99054 from timothyqiu/session-names
Browse files Browse the repository at this point in the history
Translate the name of the debugger session tabs
  • Loading branch information
Repiteo committed Nov 22, 2024
2 parents 7faad0c + 09b6466 commit 0c45ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/debugger/editor_debugger_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0c45ace

Please sign in to comment.