Put multiple colons back into translated strings

This commit is contained in:
Yuri Sizov 2021-07-31 20:18:24 +03:00
parent 7c1ee0488e
commit 9b228f0f5d
6 changed files with 23 additions and 23 deletions

View file

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