1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

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
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);