Skip to content

Commit

Permalink
Merge pull request #79358 from timothyqiu/indentation
Browse files Browse the repository at this point in the history
Make indentation indicators translatable
  • Loading branch information
YuriSizov committed Jul 31, 2023
2 parents 41efc7c + a552103 commit 04e550a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/code_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());

Expand Down

0 comments on commit 04e550a

Please sign in to comment.