diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-07-31 22:05:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 22:05:43 +0200 |
commit | 20fa3ec0939d2482c5acffe031e88e317a7868cb (patch) | |
tree | c2f1f71f2e5d92b4ec44b06e212f667f114b2f55 /editor/plugins/visual_shader_editor_plugin.cpp | |
parent | a12f83206021fa16a5cba5a950e7bb135cf75b8b (diff) | |
parent | 969ba687efe37435bdcb3574aa1fa3ed384c121b (diff) | |
download | redot-engine-20fa3ec0939d2482c5acffe031e88e317a7868cb.tar.gz |
Merge pull request #51110 from pycbouh/editor-put-the-colon-back-in
Put multiple colons back into translated strings
Diffstat (limited to 'editor/plugins/visual_shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index 46818afe45..add75d47fd 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -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)); |