From 83b413cfd39358260183ec11f878a17eb3c1503a Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 30 Jul 2023 19:12:39 +0200 Subject: [PATCH] Add missing TTR for Tabs and Spaces --- editor/code_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index cde74e08548f..7742856507b3 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -891,7 +891,7 @@ void CodeTextEditor::_line_col_changed() { sb.append(itos(positional_column + 1).lpad(3)); sb.append(" | "); - sb.append(text_editor->is_indent_using_spaces() ? "Spaces" : "Tabs"); + sb.append(text_editor->is_indent_using_spaces() ? TTR("Spaces") : TTR("Tabs")); line_and_col_txt->set_text(sb.as_string());