Collection of bad/missing tooltips
#51061
Closed
opened
No Branch/Tag Specified
Labels
Clear labels
Apply labels
legacy project
Animation & Rigging
legacy project
Asset Browser Project Overview
legacy project
Audio
legacy project
Compositing
legacy project
Core
legacy project
Cycles
legacy project
Datablocks and Libraries
legacy project
Development Management
legacy project
EEVEE & Viewport
legacy project
Geometry Nodes
legacy project
Grease Pencil
legacy project
Images & Movies
legacy project
Import & Export
legacy project
Infrastructure: Websites
legacy project
Line Art
legacy project
Modeling
legacy project
Modifiers
legacy project
Nodes
legacy project
Nodes & Physics
legacy project
Physics
legacy project
Platform: Windows
legacy project
Python API
legacy project
Render & Cycles
legacy project
Sculpt, Paint & Texture
legacy project
Translations
legacy project
User Interface
legacy project
UV Editing
legacy project
VFX & Video
legacy project
Video Sequencer
Meta
Good First Issue
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 & Devices
Module
Python API
Module
Rendering & Cycles
Module
Sculpt, Paint & Texture
Module
User Interface
Module
VFX & Video
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Information 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 Label
legacy project
Animation & Rigging
legacy project
Asset Browser Project Overview
legacy project
Audio
legacy project
Compositing
legacy project
Core
legacy project
Cycles
legacy project
Datablocks and Libraries
legacy project
Development Management
legacy project
EEVEE & Viewport
legacy project
Geometry Nodes
legacy project
Grease Pencil
legacy project
Images & Movies
legacy project
Import & Export
legacy project
Infrastructure: Websites
legacy project
Line Art
legacy project
Modeling
legacy project
Modifiers
legacy project
Nodes
legacy project
Nodes & Physics
legacy project
Physics
legacy project
Platform: Windows
legacy project
Python API
legacy project
Render & Cycles
legacy project
Sculpt, Paint & Texture
legacy project
Translations
legacy project
User Interface
legacy project
UV Editing
legacy project
VFX & Video
legacy project
Video Sequencer
Meta
Good First Issue
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 & Devices
Module
Python API
Module
Rendering & Cycles
Module
Sculpt, Paint & Texture
Module
User Interface
Module
VFX & Video
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Information 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
Milestone
Set milestone
Clear milestone
No items
No Milestone
Projects
Set Project
Clear projects
No project
Assignees
Assign users
Clear assignees
No Assignees
8 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-manual#51061
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. It CANNOT be undone. Continue?
This task is used to collect a list of bad tooltip so that people can write new ones.
When reporting errors simply describe the tooltip that is bad or right click --> online python reference, from here you can copy the python command so we can flag it here for rewriting.
Terms
Here is a list of frequently used terms and how to write them:
Tooltips:
bpy.ops.render.render
: "Render active scene"bpy.ops.wm.operator_cheat_sheet
: "Undocumented" --> "List all the Operators in a textblock, useful for scripting"bpy.ops.world.new
"Add a new world" --> "Add a new world Data-Block"Missing Tooltips
Missing tooltips can be found with this regex:
RNA_def_property_ui_text\(prop, "[^"]*", ""\);
Changed status to: 'Open'
Added subscribers: @Blendify, @JulianEisel, @ideasman42
Added subscriber: @VukGardasevic
Operator Cheat Sheet doesn't have a tooltip at all.
bpy.ops.wm.operator_cheat_sheet()
- class WM_OT_operator_cheat_sheet in scripts\startup\bl_operators\wm.pyIt could be something like:
Added subscriber: @blend-it
Useful for avoid this kind of changes become a nightmare for far-to-be-completed UI translations... :)
Some more bad tooltips can be found here: https://wiki.blender.org/index.php/Dev:Ref/Proposals/UI/Tooltips#Tooltip_and_Infotip_Suggestions
Collection of bad tooltipsto Collection of bad/missing tooltipsAdded subscriber: @jenkm
Color Balance Node
For the Lift/Gamma/Gain formula, Lift tooltip is the "Correction for Shadows" it’s OK.
But if switch to the Offset/Power/Slope formula, Offset tooltip is still the "Correction for Shadows", this is wrong.
Must be something like "Correction for entire tonal range".
Added subscriber: @E_mod
Snap to Symmetry (bpy.ops.mesh.symmetry_snap)
"Distance within which matching vertices are searched."
"Mix factor of the locations of the vertices."
"Snap middle vertices to the axis center."
Symmetrize (bpy.ops.mesh.symmetrize)
"Limit for snap middle vertices to the axis center."
Bisect (bpy.ops.mesh.bisect)
"Preserves the existing geometry along the cut plane."
Grid Fill (bpy.ops.mesh.fill_grid)
"Number of grid columns."
"Specifies the vertex that is the corner of the grid."
"Use simple interpolation of grid vertices."
Checker Deselect
This tool description has been changed from "Select every Nth…" to "Deselect every Nth…", see here . So it would be more correct "Deselect every not Nth…", "Remain selected every Nth…" or something.
Checker Deselect for curves has wrong description.
Rename the "Nth Selection"to"Nth Element", since it used for both select (Shortest Path) and deselect (Checker Deselect).
Options tooltips:
@jenkm committed blender/blender@ecb56eac57
This comment was removed by @jenkm
source/blender/makesrna/intern/rna_object_force.c
Added subscriber: @GabrielGazzan
Currently (as of hash:
blender/blender@0ee75698d0
downloaded today) the tooltips (showing both tool name and description) for the Tools icons in the 3D View are showing untranslated.I remember I have translated strings for the tools names and tooltips, but they are not showing there.
When the tool icons are dragged to the right to let the names show permanently, these names are translated, while the tooltips still remain untranslated.
I've tested the UI in other languages as well, and in all of them it behaves the same.
Thanks for having a look at this one before release. It seems to be an easy one to fix and it really impacts the overall experience, as these tools are widely used.
Edit: Sorry if this is not the best place to comment on this, but I didn't find any other open task that seemed suited either. ?
Added subscriber: @mont29
Changed status from 'Confirmed' to: 'Resolved'
It seems kinda pointless keeping this open. We can adress tooltips as needed.
Added subscriber: @jotheshjolly
Added subscriber: @vulka3
bpy.ops.preferences.keyconfig_activate(filepath='') : "Activate specified keymap preset"