1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Fix casing of the "to" stop word in editor strings

This also fixes a C# documentation example that had one of its
strings incorrectly converted.
This commit is contained in:
Hugo Locurcio
2021-07-13 15:25:56 +02:00
parent b44b277f6f
commit a3fbd68781
7 changed files with 11 additions and 11 deletions

View File

@@ -6181,7 +6181,7 @@ void Node3DEditor::snap_selected_nodes_to_floor() {
}
if (snapped_to_floor) {
undo_redo->create_action(TTR("Snap Nodes To Floor"));
undo_redo->create_action(TTR("Snap Nodes to Floor"));
// Perform snapping if at least one node can be snapped
for (int i = 0; i < keys.size(); i++) {