import { t } from '../util/locale';
export function uiTooltipHtml(text, keys, heading) {
var s = '';
if (heading) {
s += '
' + heading + '
';
}
if (text) {
s += '' + text + '
';
}
if (keys) {
if (!Array.isArray(keys)) keys = [keys];
s += '' + t('tooltip_keyhint') + '';
keys.forEach(function(key) {
s += '' + key + '';
});
s += '
';
}
return s;
}