Bug 158080 - Rename Flowchart commands
Summary: Rename Flowchart commands
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Draw (show other bugs)
Version:
(earliest affected)
unspecified
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords: difficultyBeginner, easyHack, skillDesign, topicDesign
Depends on:
Blocks: UNO-Command-Label
  Show dependency treegraph
 
Reported: 2023-11-06 08:02 UTC by Heiko Tietze
Modified: 2023-11-06 08:02 UTC (History)
1 user (show)

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Heiko Tietze 2023-11-06 08:02:46 UTC
We have a large number of flowchart shapes, see Insert > Shape > Flowchart. As the shapes itself are always placed underneath this menu item (besides on some toolbars) we better not start every single item with "Flowchart:". However, to more easily identify the commands in the customization kit would be necessary to add a contextual label.

Add it to officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu like

 <node oor:name=".uno:FlowChartShapes.flowchart-process" oor:op="replace">
    <prop oor:name="Label" oor:type="xs:string">
      <value xml:lang="en-US">Flowchart: Process</value>
    </prop>
+   <prop oor:name="ContextLabel" oor:type="xs:string">
+     <value xml:lang="en-US">Process</value>
+   </prop>
...