Bug 114926 - Allow OS specific tooltips
Summary: Allow OS specific tooltips
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: framework (show other bugs)
Version:
(earliest affected)
unspecified
Hardware: All All
: medium enhancement
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: Tooltip
  Show dependency treegraph
 
Reported: 2018-01-09 10:35 UTC by Heiko Tietze
Modified: 2019-05-15 03:47 UTC (History)
3 users (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 2018-01-09 10:35:00 UTC
Likewise accelerators it should be possible to have tooltips depending on the actual operating system.

<node oor:name=".uno:Foo" oor:op="replace">
  <prop oor:name="Foo" oor:type="xs:string">
    <value xml:lang="en-US">~Foo</value>
  </prop>
  <prop oor:name="TooltipLabel" oor:type="xs:string">
    <value xml:lang="en-US">Foo with bar</value>
    <value xml:lang="en-US" install:module="macosx">Foo with cmd</value>
    <value xml:lang="en-US" install:module="unxwnd">Foo with ctrl</value>
  </prop>
</node>
Comment 1 Yousuf Philips (jay) (retired) 2018-01-10 22:55:43 UTC
Doubt we need OS specific bugs, as it would mean additional translation for the exact same string, and instead we should have coding done that automatically replaces 'Ctrl' with 'Cmd' in tooltips for Mac.