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:
authorJacques Lucke <jacques@blender.org>2021-10-27 16:31:00 +0300
committerJacques Lucke <jacques@blender.org>2021-10-27 16:31:00 +0300
commitcc6d5bc241fd453c361c42d50b3a8ca9058bbaee (patch)
treee970b3679bb4e458b55f91996ebaa3f4f2cf2a51 /source/blender/nodes/intern/node_geometry_exec.cc
parent7cbb01f07e84c463af77a57930b3d027b09549a5 (diff)
Fix: typo in info message
Diffstat (limited to 'source/blender/nodes/intern/node_geometry_exec.cc')
-rw-r--r--source/blender/nodes/intern/node_geometry_exec.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/nodes/intern/node_geometry_exec.cc b/source/blender/nodes/intern/node_geometry_exec.cc
index bcf6ff2fcf6..c7a3e795c33 100644
--- a/source/blender/nodes/intern/node_geometry_exec.cc
+++ b/source/blender/nodes/intern/node_geometry_exec.cc
@@ -52,13 +52,14 @@ void GeoNodeExecParams::check_input_geometry_set(StringRef identifier,
if (only_realized_data) {
if (geometry_set.has_instances()) {
- this->error_message_add(NodeWarningType::Info, "Instances in input geometry are ignored");
+ this->error_message_add(NodeWarningType::Info,
+ TIP_("Instances in input geometry are ignored"));
}
}
if (only_instances) {
if (geometry_set.has_realized_data()) {
this->error_message_add(NodeWarningType::Info,
- "Realized data in input geometry are ignored");
+ TIP_("Realized data in input geometry is ignored"));
}
}
if (supported_types.is_empty()) {