Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-02-13 18:18:19 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-13 18:19:09 +0300
commit10efc54729f054f72377c4a7a16c99d50c2cf81e (patch)
treece96cfac030e838ea64f64f9a875e37f72ae7071 /source/blender/blenkernel
parenta4e81e2dfbdc63e7db3132f81a02cc5ac4985374 (diff)
Fix NodeTree types UI messages not being properly tagged for translation.
Probably fix first part of T61446.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/node.c b/source/blender/blenkernel/intern/node.c
index 8449c506939..7ccff4be808 100644
--- a/source/blender/blenkernel/intern/node.c
+++ b/source/blender/blenkernel/intern/node.c
@@ -3364,8 +3364,8 @@ static void register_undefined_types(void)
*/
strcpy(NodeTreeTypeUndefined.idname, "NodeTreeUndefined");
- strcpy(NodeTreeTypeUndefined.ui_name, "Undefined");
- strcpy(NodeTreeTypeUndefined.ui_description, "Undefined Node Tree Type");
+ strcpy(NodeTreeTypeUndefined.ui_name, N_("Undefined"));
+ strcpy(NodeTreeTypeUndefined.ui_description, N_("Undefined Node Tree Type"));
node_type_base_custom(&NodeTypeUndefined, "NodeUndefined", "Undefined", 0, 0);
NodeTypeUndefined.poll = node_undefined_poll;