From 2192c717a41e11f4722a1796dce7a976958fb518 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Wed, 12 Jul 2023 09:12:02 +0800 Subject: [PATCH] Make indentation indicators translatable (cherry picked from commit a552103531a305072bcd0b4c63994354d7de164b) --- 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 c1a4b052c18..4c3d23aa631 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", "Indentation") : TTR("Tabs", "Indentation")); line_and_col_txt->set_text(sb.as_string());