Revert "luci-proto-ipv6: dhcpv6.js fix translation (#6751)"

This reverts commit 2065ead4e8.

The commit contains syntax errors despite two reviews and was apparently
not runtime tested at all.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich
2023-12-07 11:34:51 +01:00
parent 2065ead4e8
commit 8065a67410
2 changed files with 3 additions and 12 deletions

View File

@@ -15,9 +15,9 @@ return network.registerProtocol('dhcpv6', {
var o;
o = s.taboption('general', form.ListValue, 'reqaddress', _('Request IPv6-address'));
o.value('try, _('try'));
o.value('force, _('force'));
o.value('none', _('disabled'));
o.value('try');
o.value('force');
o.value('none', 'disabled');
o.default = 'try';
o = s.taboption('general', form.Value, 'reqprefix', _('Request IPv6-prefix of length'));