These units are not really localisable

Change-Id: I4eebe11bf4dc1dfc3944ea60b00887d49aad24e4
This commit is contained in:
Andras Timar 2019-12-13 12:23:42 +01:00
parent d249e6a713
commit 05e0fa4446

View file

@ -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;
},