summaryrefslogtreecommitdiffstats
path: root/tools/editor/multi_node_edit.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-05-03 22:25:37 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-05-03 22:25:37 -0300
commit567cb691ec49844101247bb9dc34bc2722f6af4f (patch)
treecaa577fdc22feec8869e66b32be34db0c90f8aa8 /tools/editor/multi_node_edit.cpp
parentc7e8def44696da9ddf0b459e166280668c84c4cb (diff)
downloadredot-engine-567cb691ec49844101247bb9dc34bc2722f6af4f.tar.gz
Modified editor strings to be translatable in the future
Diffstat (limited to 'tools/editor/multi_node_edit.cpp')
-rw-r--r--tools/editor/multi_node_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/multi_node_edit.cpp b/tools/editor/multi_node_edit.cpp
index cfa998bee9..54697d41ab 100644
--- a/tools/editor/multi_node_edit.cpp
+++ b/tools/editor/multi_node_edit.cpp
@@ -9,7 +9,7 @@ bool MultiNodeEdit::_set(const StringName& p_name, const Variant& p_value){
UndoRedo *ur=EditorNode::get_singleton()->get_undo_redo();
- ur->create_action("MultiNode Set "+String(p_name));
+ ur->create_action(TTR("MultiNode Set ")+String(p_name));
for (const List<NodePath>::Element *E=nodes.front();E;E=E->next()) {
if (!es->has_node(E->get()))