Put multiple colons back into translated strings

This commit is contained in:
Yuri Sizov 2021-07-31 20:08:07 +03:00
parent 20d46c5b9e
commit 969ba687ef
4 changed files with 10 additions and 10 deletions

View file

@ -4697,7 +4697,7 @@ public:
UndoRedo *undo_redo = EditorNode::get_singleton()->get_undo_redo();
updating = true;
undo_redo->create_action(TTR("Edit Visual Property") + ": " + p_property, UndoRedo::MERGE_ENDS);
undo_redo->create_action(TTR("Edit Visual Property:") + " " + p_property, UndoRedo::MERGE_ENDS);
undo_redo->add_do_property(node.ptr(), p_property, p_value);
undo_redo->add_undo_property(node.ptr(), p_property, node->get(p_property));