UI: Fix a few typos

- "Acion Slot" -> "Action": typo.
- "Specifies the input node used the created zone" -> "by the created
  zone": typo.
- "No reference available {!r}, Update..." -> "update": lower case.
- "uninitialized file-list" -> "Uninitialized": sentence case.

Some issues reported by Alexandr Fatih.

Pull Request: https://projects.blender.org/blender/blender/pulls/148265
This commit is contained in:
Damien Picard
2025-10-17 16:13:30 +02:00
committed by Hans Goudey
parent 2902255424
commit 58b8ae1717
4 changed files with 7 additions and 7 deletions

View File

@@ -667,12 +667,12 @@ class NODE_OT_add_zone(NodeAddZoneOperator, Operator):
input_node_type: StringProperty(
name="Input Node",
description="Specifies the input node used the created zone",
description="Specifies the input node used by the created zone",
)
output_node_type: StringProperty(
name="Output Node",
description="Specifies the output node used the created zone",
description="Specifies the output node used by the created zone",
)
add_default_geometry_link: BoolProperty(
@@ -689,12 +689,12 @@ class NODE_OT_swap_zone(ZoneOperator, NodeSwapOperator, Operator):
input_node_type: StringProperty(
name="Input Node",
description="Specifies the input node used the created zone",
description="Specifies the input node used by the created zone",
)
output_node_type: StringProperty(
name="Output Node",
description="Specifies the output node used the created zone",
description="Specifies the output node used by the created zone",
)
add_default_geometry_link: BoolProperty(