diff options
author | Rafael Lima <rafael.palma.lima@gmail.com> | 2023-01-10 14:46:33 +0000 |
---|---|---|
committer | Rafael Lima <rafael.palma.lima@gmail.com> | 2023-01-13 12:17:56 +0000 |
commit | 25d5e2041fb13aee61acb6ced579e884ce9a21b5 (patch) | |
tree | 90d18932c7d44438ea255da23babe6341eac2254 /officecfg | |
parent | c89f9fe8fa0c0985af1997d3b65089a6ed0fd35e (diff) |
tdf#152860 Fix tooltip for .uno:SearchLabel command
This patch makes the following changes:
1) Silence the string "[placeholder for message]" for translation, since it is never actually used in the UI.
2) Add a generic tooltip for the command.
Change-Id: If46d7476638c72d35af2a4c8f242542aae2eafca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145294
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu | 5 |
1 files changed, 4 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 665956439098..9fa3b776f790 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu @@ -1705,7 +1705,10 @@ bit 3 (0x8): #define UICOMMANDDESCRIPTION_PROPERTIES_TOGGLEBUTTON 8 </node> <node oor:name=".uno:SearchLabel" oor:op="replace"> <prop oor:name="Label" oor:type="xs:string"> - <value xml:lang="en-US">[placeholder for message]</value> + <value xml:lang="en-US">Search results message</value> + </prop> + <prop oor:name="TooltipLabel" oor:type="xs:string"> + <value xml:lang="en-US">Search results</value> </prop> </node> <node oor:name="vnd.sun.star.findbar:FocusToFindbar" oor:op="replace"> |