luci-proto-modemmanager: add translation for values
Signed-off-by: Anton Kikin <a.kikin@tano-systems.com>
This commit is contained in:
parent
11e4377a0f
commit
afc120a6c6
1 changed files with 5 additions and 5 deletions
|
@ -68,10 +68,10 @@ return network.registerProtocol('modemmanager', {
|
||||||
s.taboption('general', form.Value, 'pincode', _('PIN'));
|
s.taboption('general', form.Value, 'pincode', _('PIN'));
|
||||||
|
|
||||||
o = s.taboption('general', form.ListValue, 'auth', _('Authentication Type'));
|
o = s.taboption('general', form.ListValue, 'auth', _('Authentication Type'));
|
||||||
o.value('both', 'PAP/CHAP (both)');
|
o.value('both', _('PAP/CHAP (both)'));
|
||||||
o.value('pap', 'PAP');
|
o.value('pap', 'PAP');
|
||||||
o.value('chap', 'CHAP');
|
o.value('chap', 'CHAP');
|
||||||
o.value('none', 'NONE');
|
o.value('none', _('None'));
|
||||||
o.default = 'none';
|
o.default = 'none';
|
||||||
|
|
||||||
o = s.taboption('general', form.Value, 'username', _('PAP/CHAP username'));
|
o = s.taboption('general', form.Value, 'username', _('PAP/CHAP username'));
|
||||||
|
@ -86,9 +86,9 @@ return network.registerProtocol('modemmanager', {
|
||||||
o.password = true;
|
o.password = true;
|
||||||
|
|
||||||
o = s.taboption('general', form.ListValue, 'iptype', _('IP Type'));
|
o = s.taboption('general', form.ListValue, 'iptype', _('IP Type'));
|
||||||
o.value('ipv4v6', 'IPv4 IPv6 (both - defaults to IPv4)')
|
o.value('ipv4v6', _('IPv4/IPv6 (both - defaults to IPv4)'))
|
||||||
o.value('ipv4', 'IPv4 only');
|
o.value('ipv4', _('IPv4 only'));
|
||||||
o.value('ipv6', 'IPv6 only');
|
o.value('ipv6', _('IPv6 only'));
|
||||||
o.default = 'ipv4v6';
|
o.default = 'ipv4v6';
|
||||||
|
|
||||||
o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
|
o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
|
||||||
|
|
Loading…
Reference in a new issue