diff --git a/source/blender/editors/interface/templates/interface_template_node_inputs.cc b/source/blender/editors/interface/templates/interface_template_node_inputs.cc index ab324e97dcc..e063cdee9e7 100644 --- a/source/blender/editors/interface/templates/interface_template_node_inputs.cc +++ b/source/blender/editors/interface/templates/interface_template_node_inputs.cc @@ -70,7 +70,8 @@ static void draw_node_input(bContext *C, PointerRNA socket_ptr = RNA_pointer_create_discrete( node_ptr->owner_id, &RNA_NodeSocket, &socket); - const StringRefNull text(IFACE_(bke::node_socket_label(socket).c_str())); + const StringRefNull text( + CTX_IFACE_(bke::node_socket_translation_context(socket), bke::node_socket_label(socket))); uiLayout *row = &layout->row(true); socket.typeinfo->draw(C, row, &socket_ptr, node_ptr, text); }