diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-07-31 21:01:13 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-07-31 21:01:13 +0200 |
commit | 04e550acb6bf542f405fc62336660be32b60f768 (patch) | |
tree | bb25d025e9372375a1d2aa7271f15895eccbacb7 /editor/code_editor.cpp | |
parent | 41efc7cb86bd7df6e3c5b6f84582910741968674 (diff) | |
parent | a552103531a305072bcd0b4c63994354d7de164b (diff) | |
download | redot-engine-04e550acb6bf542f405fc62336660be32b60f768.tar.gz |
Merge pull request #79358 from timothyqiu/indentation
Make indentation indicators translatable
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index cde74e0854..6c5c99698d 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()); |