From fa3dd4bdb56f9d3f8f0659d8c595cba71d57494a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 22 Aug 2023 11:28:36 +0200 Subject: [PATCH] I18N: Add back wrongly removed translation marker in recent cleanup. 7d9214d30f was a tad over enthousiastic in that case. ;) Thanks to @mod_moder for noticing this! --- source/blender/nodes/geometry/nodes/node_geo_sample_volume.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/nodes/geometry/nodes/node_geo_sample_volume.cc b/source/blender/nodes/geometry/nodes/node_geo_sample_volume.cc index 8bba7e4c2ed..a8805b3e1a8 100644 --- a/source/blender/nodes/geometry/nodes/node_geo_sample_volume.cc +++ b/source/blender/nodes/geometry/nodes/node_geo_sample_volume.cc @@ -35,8 +35,8 @@ static void node_declare(NodeDeclarationBuilder &b) .translation_context(BLT_I18NCONTEXT_ID_ID) .supported_type(GeometryComponent::Type::Volume); - std::string grid_socket_description = - "Expects a Named Attribute with the name of a Grid in the Volume"; + std::string grid_socket_description = N_( + "Expects a Named Attribute with the name of a Grid in the Volume"); b.add_input(("Grid"), "Grid_Vector") .field_on_all()