This commit is contained in:
Yuri Kuznetsov
2022-11-15 10:15:34 +02:00
parent 11d6ea3271
commit c293bef232
@@ -178,15 +178,15 @@ define('crm:views/meeting/fields/reminders', ['views/fields/base'], function (De
let parts = [];
if (days) {
parts.push(days + ' ' + this.getLanguage().translate('d', 'durationUnits'));
parts.push(days + '' + this.getLanguage().translate('d', 'durationUnits'));
}
if (hours) {
parts.push(hours + ' ' + this.getLanguage().translate('h', 'durationUnits'));
parts.push(hours + '' + this.getLanguage().translate('h', 'durationUnits'));
}
if (minutes) {
parts.push(minutes + ' ' + this.getLanguage().translate('m', 'durationUnits'));
parts.push(minutes + '' + this.getLanguage().translate('m', 'durationUnits'));
}
return parts.join(' ') + ' ' + this.translate('before', 'labels', 'Meeting');