From 58b8ae1717cf2b8c1a0442f28fb27a957216e985 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Fri, 17 Oct 2025 16:13:30 +0200 Subject: [PATCH] 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 --- scripts/addons_core/rigify/operators/action_layers.py | 2 +- scripts/startup/bl_operators/node.py | 8 ++++---- scripts/startup/bl_operators/wm.py | 2 +- source/blender/makesrna/intern/rna_space_api.cc | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/addons_core/rigify/operators/action_layers.py b/scripts/addons_core/rigify/operators/action_layers.py index d17d5710a70..760332c7e47 100644 --- a/scripts/addons_core/rigify/operators/action_layers.py +++ b/scripts/addons_core/rigify/operators/action_layers.py @@ -107,7 +107,7 @@ class ActionSlot(PropertyGroup, ActionSlotBase): return str(action_slot.handle) action_slot_ui: StringProperty( - name="Acion Slot", + name="Action Slot", description="Slot of the Action to use for the Action Constraints", # These callbacks let us store the action slot's `handle` property # under the hood (which is unique and never changes), while acting diff --git a/scripts/startup/bl_operators/node.py b/scripts/startup/bl_operators/node.py index 43fb87b06b3..c5befc9af99 100644 --- a/scripts/startup/bl_operators/node.py +++ b/scripts/startup/bl_operators/node.py @@ -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( diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py index 0a08c084248..fc212200a51 100644 --- a/scripts/startup/bl_operators/wm.py +++ b/scripts/startup/bl_operators/wm.py @@ -1342,7 +1342,7 @@ class WM_OT_doc_view_manual(Operator): self.report( {'WARNING'}, rpt_("No reference available {!r}, " - "Update info in '_rna_manual_reference.py' " + "update info in '_rna_manual_reference.py' " "or callback to bpy.utils.manual_map()").format(self.doc_id) ) return {'CANCELLED'} diff --git a/source/blender/makesrna/intern/rna_space_api.cc b/source/blender/makesrna/intern/rna_space_api.cc index 949bd6d2163..400c6070a0b 100644 --- a/source/blender/makesrna/intern/rna_space_api.cc +++ b/source/blender/makesrna/intern/rna_space_api.cc @@ -81,7 +81,7 @@ static void rna_FileBrowser_deselect_all(SpaceFile *sfile, ReportList *reports) if (sfile->files == nullptr) { /* Likely to happen in background mode. * We could look into initializing this on demand, see: #141547. */ - BKE_report(reports, RPT_ERROR, "uninitialized file-list"); + BKE_report(reports, RPT_ERROR, "Uninitialized file-list"); return; } ED_fileselect_deselect_all(sfile);