import { t } from '../util/locale'; export function uiTooltipHtml(text, key, heading) { var s = ''; if (heading) { s += '
' + heading + '
'; } if (text) { s += '
' + text + '
'; } if (key) { s += '
' + t('tooltip_keyhint') + '' + '' + key + '
'; } return s; }