diff options
author | Seth Chaiklin <sdc.blanco@youmail.dk> | 2021-02-15 09:23:12 +0100 |
---|---|---|
committer | Seth Chaiklin <sdc.blanco@youmail.dk> | 2021-02-18 23:29:08 +0100 |
commit | 37157772a1888cd0c227ded2311afd0abe6d02ef (patch) | |
tree | 3d89c03d2273884a6a98fad55d1527650e5f8d56 /officecfg/registry | |
parent | be28e10f6fd758b5f811900468b7d3791025485d (diff) |
tdf#134432 icon label to "Character Highlighting Color" for Shapes
WriterCommands.xcu has .uno:BackColor for character highlighting
in text, while GenericCommands.xcu has .uno:CharBackColor, which
is used for all character highlighting in textboxes and shapes,
in all the modules including Writer, but this .uno appears on
the Text Objects toolbar for Writer and Text Formatting bar for
Calc, Draw, and Impress.
Both .unos produce <style:text-properties fo:background-color>
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#property-fo_background-color
.unoCharBackColor appears only in Calc, Draw, Impress, while
Writer has both .uno:CharBackColor and .uno:BackColor
Adding "Character Highlighting Color" for tooltip and menu labels
to .uno:CharBackColor for Calc, Draw, and Impress, togheter with a
longer label "(in Textbox and Shape)" that appears only in the
"Description" box in the Customize dialog. This longer label should
not create confusion for the other modules,which only have
.uno:CharBackColor but will help to differentiate the function of
.uno:CharBackColor from .uno:BackColor in Customize for Writer.
Change-Id: Ia88b51ee73d0c9ccc82700ed39bc01486ff3a8a7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110865
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin <sdc.blanco@youmail.dk>
Diffstat (limited to 'officecfg/registry')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu index 508238ccbaf4..756bdd288b91 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu @@ -3302,7 +3302,13 @@ bit 3 (0x8): #define UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8 </node> <node oor:name=".uno:CharBackColor" oor:op="replace"> <prop oor:name="Label" oor:type="xs:string"> - <value xml:lang="en-US">Highlight Color</value> + <value xml:lang="en-US">Character Highlighting Color (in Text Box and Shapes)</value> + </prop> + <prop oor:name="ContextLabel" oor:type="xs:string" oor:localized="true"> + <value xml:lang="en-US">Character Highlighting Color</value> + </prop> + <prop oor:name="TooltipLabel" oor:type="xs:string" oor:localized="true"> + <value xml:lang="en-US">Character Highlighting Color</value> </prop> <prop oor:name="Properties" oor:type="xs:int"> <value>1</value> |