in src/app/period-statistics.js [51:65]
workItemText(workItem) {
const type = this.workType(workItem);
const workPeriod = this.workPeriod(workItem.duration.minutes);
return (
<Tooltip title={workItem.text}>
<span>
{i18n('{{type}} for {{workPeriod}}', {type, workPeriod: ''})}
<strong>{workPeriod}</strong>
{
i18n('{{working}} on {{issueName}}', {working: '', issueName: ''}) // To make translators some context what are these labels about
}
</span>
</Tooltip>
);
}