UI: Capitalize "Python" in UI messages, improve a few others #107916

Merged
Hans Goudey merged 1 commits from pioverfour/blender:dp_fix_messages into main 2023-05-14 15:23:51 +02:00
Member
  • "... (matches pythons ...)": capitalize and use possessive ('s).
  • "Layer Proxy Protection": replace proxy by override, following 2.80.
  • "Enable Plane Trim": expand description.
  • "Make curve path children to rotate along the path": remove "to".
  • "Option for curve-deform: make deformed child to stretch along
    entire path": remove "to".
  • "... apply the curve radius with path following it and deforming":
    rephrase unclear description.
  • "Custom light falloff curve" : unrelated to lights, used in Grease
    Pencil modifiers.
  • "Grease Pencil layer assigned to the generated strokes": rephrase
    because a GP stroke is assigned to a layer, not the other way
    around.
  • "Attribute domain where the attribute domain is stored in the
    simulation state": remove second "domain" (typo).
- "... (matches pythons ...)": capitalize and use possessive ('s). - "Layer Proxy Protection": replace proxy by override, following 2.80. - "Enable Plane Trim": expand description. - "Make curve path children to rotate along the path": remove "to". - "Option for curve-deform: make deformed child to stretch along entire path": remove "to". - "... apply the curve radius with path following it and deforming": rephrase unclear description. - "Custom light falloff curve" : unrelated to lights, used in Grease Pencil modifiers. - "Grease Pencil layer assigned to the generated strokes": rephrase because a GP stroke is assigned to a layer, not the other way around. - "Attribute domain where the attribute domain is stored in the simulation state": remove second "domain" (typo).
Damien Picard added the
Module
User Interface
label 2023-05-14 01:37:32 +02:00
Damien Picard added 1 commit 2023-05-14 01:37:39 +02:00
d76b8840fc UI: Capitalize "Python" in UI messages, and improve a few others
- "... (matches pythons ...)": capitalize and use possessive ('s).
- "Layer Proxy Protection": replace proxy by override, following 2.80.
- "Enable Plane Trim": expand description.
- "Make curve path children to rotate along the path": remove "to".
- "Option for curve-deform: make deformed child to stretch along
  entire path": remove "to".
- "... apply the curve radius with path following it and deforming":
  rephrase unclear description.
- "Custom light falloff curve" : unrelated to lights, used in Grease
  Pencil modifiers.
- "Grease Pencil layer assigned to the generated strokes": rephrase
  because a GP stroke is assigned to a layer, not the other way
  around.
- "Attribute domain where the attribute domain is stored in the
  simulation state": remove first "domain" (typo).
Damien Picard reviewed 2023-05-14 01:44:42 +02:00
@ -1566,1 +1564,3 @@
"on file reload and undo");
"Layer Override Protection",
"Protected layers in overridden instances are restored to "
"their original settings on file reload and undo");
Author
Member

Replace "proxy" by "override", following Blender 2.80. Edit description to match terminology.

Replace "proxy" by "override", following Blender 2.80. Edit description to match terminology.
@ -3488,0 +3487,4 @@
RNA_def_property_ui_text(
prop,
"Use Plane Trim",
"Limit the distance from the offset plane that a vertex can be affected");
Author
Member

Expand description for this brush feature.

Expand description for this brush feature.
@ -1019,3 +1019,3 @@
prop = RNA_def_property(srna, "use_path_follow", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", CU_FOLLOW);
RNA_def_property_ui_text(prop, "Follow", "Make curve path children to rotate along the path");
RNA_def_property_ui_text(prop, "Follow", "Make curve path children rotate along the path");
Author
Member

Grammar: remove "to".

Grammar: remove "to".
@ -1035,3 +1035,3 @@
"Stretch",
"Option for curve-deform: "
"make deformed child to stretch along entire path");
"make deformed child stretch along entire path");
Author
Member

Grammar: remove "to".

Grammar: remove "to".
@ -1052,2 +1052,3 @@
"Option for paths and curve-deform: "
"apply the curve radius with path following it and deforming");
"apply the curve radius to objects following it "
"and to deformed objects");
Author
Member

Rephrase unclear description.

Rephrase unclear description.
@ -2958,3 +2958,3 @@
prop = RNA_def_property(srna, "falloff_curve", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "curfalloff");
RNA_def_property_ui_text(prop, "Falloff Curve", "Custom light falloff curve");
RNA_def_property_ui_text(prop, "Falloff Curve", "Custom falloff curve");
Author
Member

Unrelated to lights, used in Grease Pencil modifiers.

Unrelated to lights, used in Grease Pencil modifiers.
@ -3872,2 +3872,3 @@
prop = RNA_def_property(srna, "target_layer", PROP_STRING, PROP_NONE);
RNA_def_property_ui_text(prop, "Layer", "Grease Pencil layer assigned to the generated strokes");
RNA_def_property_ui_text(
prop, "Layer", "Grease Pencil layer to which assign the generated strokes");
Author
Member

Rephrase because a GP stroke is assigned to a layer, not the other way around.
Likely a copy and paste from "Grease Pencil material assigned to the generated strokes" right above, which is accurate.

Rephrase because a GP stroke is assigned to a layer, not the other way around. Likely a copy and paste from "Grease Pencil material assigned to the generated strokes" right above, which is accurate.
@ -9959,3 +9959,3 @@
prop,
"Attribute Domain",
"Attribute domain where the attribute domain is stored in the simulation state");
"Attribute domain where the attribute is stored in the simulation state");
Author
Member

Typo

Typo
@ -559,3 +559,3 @@
"\n"
" Return the identifiers of collection members\n"
" (matching pythons dict.keys() functionality).\n"
" (matching Python's dict.keys() functionality).\n"
Author
Member

Capitalize and use possessive ('s).

Capitalize and use possessive ('s).
@ -594,3 +594,3 @@
"\n"
" Return the identifiers of collection members\n"
" (matching pythons dict.items() functionality).\n"
" (matching Python's dict.items() functionality).\n"
Author
Member

Capitalize and use possessive ('s).

Capitalize and use possessive ('s).
@ -601,3 +601,3 @@
"\n"
" Return the group indices used by this vertex\n"
" (matching pythons dict.keys() functionality).\n"
" (matching Python's dict.keys() functionality).\n"
Author
Member

Capitalize and use possessive ('s).

Capitalize and use possessive ('s).
Damien Picard requested review from Hans Goudey 2023-05-14 01:49:45 +02:00
Hans Goudey approved these changes 2023-05-14 15:23:21 +02:00
Hans Goudey changed title from UI: Capitalize "Python" in UI messages, and improve a few others to UI: Capitalize "Python" in UI messages, improve a few others 2023-05-14 15:23:29 +02:00
Hans Goudey merged commit d17f9f4872 into main 2023-05-14 15:23:51 +02:00
Damien Picard deleted branch dp_fix_messages 2023-05-14 15:41:12 +02:00
Howard Trickey referenced this issue from a commit 2023-05-29 02:51:40 +02:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#107916
No description provided.