forked from extern/egroupware
allow statustext to contain multiple translated sub-strings eg: {Firstname}.{Lastname}
as we do for options already. This allows to preserve existing translations, while adding further stuff
This commit is contained in:
parent
b9470e8594
commit
aad4db1617
@ -267,6 +267,16 @@ var et2_baseWidget = (function(){ "use strict"; return et2_DOMWidget.extend(et2_
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// allow statustext to contain multiple translated sub-strings eg: {Firstname}.{Lastname}
|
||||||
|
if (_value.indexOf('{') !== -1)
|
||||||
|
{
|
||||||
|
var egw = this.egw();
|
||||||
|
_value = _value.replace(/{([^}]+)}/g, function(str,p1)
|
||||||
|
{
|
||||||
|
return egw.lang(p1);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
this.statustext = _value;
|
this.statustext = _value;
|
||||||
|
|
||||||
//Get the domnode the tooltip should be attached to
|
//Get the domnode the tooltip should be attached to
|
||||||
|
Loading…
Reference in New Issue
Block a user