Fix missing translation reported by Stefan Unverricht

This commit is contained in:
nathangray 2020-04-15 11:21:53 -06:00
parent aba5f61a42
commit dbb3b2688e
5 changed files with 23 additions and 23 deletions

View File

@ -455,7 +455,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
}
$filters['owner'] = array(
'name' => 'owner',
'label' => 'addressbook',
'label' => lang('addressbook'),
'type' => 'select',
'rows' => 5,
'tags' => true,

View File

@ -154,13 +154,13 @@ var et2_customfields_list = /** @class */ (function (_super) {
if (!field.type)
field.type = 'text";';
var setup_function = '_setup_' + (apps[field.type] ? 'link_entry' : field.type.replace("-", "_"));
var attrs = {
var attrs = jQuery.extend({}, this.options[field_name] ? this.options[field_name] : {}, {
'id': id,
'statustext': field.help,
'needed': field.needed,
'readonly': this.getArrayMgr("readonlys").isReadOnly(id, null, this.options.readonly),
'value': this.options.value[et2_customfields_list.PREFIX + field_name]
};
});
// Can't have a required readonly, it will warn & be removed later, so avoid the warning
if (attrs.readonly === true)
delete attrs.needed;

View File

@ -225,13 +225,13 @@ export class et2_customfields_list extends et2_valueWidget implements et2_IDetac
if(!field.type) field.type = 'text";';
const setup_function = '_setup_' + (apps[field.type] ? 'link_entry' : field.type.replace("-", "_"));
const attrs: any = {
const attrs: any = jQuery.extend({},this.options[field_name] ? this.options[field_name] : {}, {
'id': id,
'statustext': field.help,
'needed': field.needed,
'readonly': this.getArrayMgr("readonlys").isReadOnly(id, null, this.options.readonly),
'value': this.options.value[et2_customfields_list.PREFIX + field_name]
};
});
// Can't have a required readonly, it will warn & be removed later, so avoid the warning
if(attrs.readonly === true) delete attrs.needed;

View File

@ -1268,12 +1268,12 @@ var et2_date_range = /** @class */ (function (_super) {
// or Date objects
{
value: 'Today',
label: 'Today',
label: egw.lang('Today'),
from: function (date) { return date; },
to: function (date) { return date; }
},
{
label: 'Yesterday',
label: egw.lang('Yesterday'),
value: 'Yesterday',
from: function (date) {
date.setUTCDate(date.getUTCDate() - 1);
@ -1282,7 +1282,7 @@ var et2_date_range = /** @class */ (function (_super) {
to: ''
},
{
label: 'This week',
label: egw.lang('This week'),
value: 'This week',
from: function (date) { return egw.week_start(date); },
to: function (date) {
@ -1291,7 +1291,7 @@ var et2_date_range = /** @class */ (function (_super) {
}
},
{
label: 'Last week',
label: egw.lang('Last week'),
value: 'Last week',
from: function (date) {
var d = egw.week_start(date);
@ -1304,7 +1304,7 @@ var et2_date_range = /** @class */ (function (_super) {
}
},
{
label: 'This month',
label: egw.lang('This month'),
value: 'This month',
from: function (date) {
date.setUTCDate(1);
@ -1317,7 +1317,7 @@ var et2_date_range = /** @class */ (function (_super) {
}
},
{
label: 'Last month',
label: egw.lang('Last month'),
value: 'Last month',
from: function (date) {
date.setUTCMonth(date.getUTCMonth() - 1);
@ -1331,7 +1331,7 @@ var et2_date_range = /** @class */ (function (_super) {
}
},
{
label: 'Last 3 months',
label: egw.lang('Last 3 months'),
value: 'Last 3 months',
from: function (date) {
date.setUTCMonth(date.getUTCMonth() - 2);
@ -1349,7 +1349,7 @@ var et2_date_range = /** @class */ (function (_super) {
'Last quarter'=> array(0,-4,0,0, 0,-4,0,0), // Just a marker
*/
{
label: 'This year',
label: egw.lang('This year'),
value: 'This year',
from: function (d) {
d.setUTCMonth(0);
@ -1363,7 +1363,7 @@ var et2_date_range = /** @class */ (function (_super) {
}
},
{
label: 'Last year',
label: egw.lang('Last year'),
value: 'Last year',
from: function (d) {
d.setUTCMonth(0);

View File

@ -1503,12 +1503,12 @@ export class et2_date_range extends et2_inputWidget
// or Date objects
{
value: 'Today',
label: 'Today',
label: egw.lang('Today'),
from(date) {return date;},
to(date) {return date;}
},
{
label: 'Yesterday',
label: egw.lang('Yesterday'),
value: 'Yesterday',
from(date) {
date.setUTCDate(date.getUTCDate() - 1);
@ -1517,7 +1517,7 @@ export class et2_date_range extends et2_inputWidget
to: ''
},
{
label: 'This week',
label: egw.lang('This week'),
value: 'This week',
from(date) {return egw.week_start(date);},
to(date) {
@ -1526,7 +1526,7 @@ export class et2_date_range extends et2_inputWidget
}
},
{
label: 'Last week',
label: egw.lang('Last week'),
value: 'Last week',
from(date) {
var d = egw.week_start(date);
@ -1539,7 +1539,7 @@ export class et2_date_range extends et2_inputWidget
}
},
{
label: 'This month',
label: egw.lang('This month'),
value: 'This month',
from(date)
{
@ -1554,7 +1554,7 @@ export class et2_date_range extends et2_inputWidget
}
},
{
label: 'Last month',
label: egw.lang('Last month'),
value: 'Last month',
from(date)
{
@ -1570,7 +1570,7 @@ export class et2_date_range extends et2_inputWidget
}
},
{
label: 'Last 3 months',
label: egw.lang('Last 3 months'),
value: 'Last 3 months',
from(date)
{
@ -1590,7 +1590,7 @@ export class et2_date_range extends et2_inputWidget
'Last quarter'=> array(0,-4,0,0, 0,-4,0,0), // Just a marker
*/
{
label: 'This year',
label: egw.lang('This year'),
value: 'This year',
from(d) {
d.setUTCMonth(0);
@ -1604,7 +1604,7 @@ export class et2_date_range extends et2_inputWidget
}
},
{
label: 'Last year',
label: egw.lang('Last year'),
value: 'Last year',
from(d) {
d.setUTCMonth(0);