mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +00:00 
			
		
		
		
	Merge pull request #79358 from timothyqiu/indentation
Make indentation indicators translatable
This commit is contained in:
		
						commit
						04e550acb6
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -891,7 +891,7 @@ void CodeTextEditor::_line_col_changed() {
 | 
				
			||||||
	sb.append(itos(positional_column + 1).lpad(3));
 | 
						sb.append(itos(positional_column + 1).lpad(3));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sb.append(" | ");
 | 
						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());
 | 
						line_and_col_txt->set_text(sb.as_string());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue