Remove spaces and punctuation from the beginning of translatable strings.

This commit is contained in:
bruvzg 2024-08-22 20:47:26 +03:00
parent 568589c9d8
commit fba7ad8c7b
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
3 changed files with 5 additions and 3 deletions

View file

@ -1178,7 +1178,7 @@ void Node3DEditorViewport::_update_name() {
if (auto_orthogonal) {
// TRANSLATORS: This will be appended to the view name when Auto Orthogonal is enabled.
name += TTR(" [auto]");
name += " " + TTR("[auto]");
}
view_menu->set_text(name);