These units are not really localisable
Change-Id: I4eebe11bf4dc1dfc3944ea60b00887d49aad24e4
This commit is contained in:
parent
d249e6a713
commit
05e0fa4446
1 changed files with 3 additions and 3 deletions
|
@ -538,11 +538,11 @@ L.Control.JSDialogBuilder = L.Control.extend({
|
|||
|
||||
_unitToVisibleString: function(unit) {
|
||||
if (unit == 'inch') {
|
||||
return _('\"');
|
||||
return '\"';
|
||||
} else if (unit == 'percent') {
|
||||
return _('%');
|
||||
return '%';
|
||||
} else if (unit == 'degree') {
|
||||
return _('°');
|
||||
return '°';
|
||||
}
|
||||
return unit;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue