summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-ipv6/htdocs
diff options
context:
space:
mode:
authortry496 <66765024+try496@users.noreply.github.com>2023-12-07 12:32:31 +0800
committerGitHub <noreply@github.com>2023-12-07 05:32:31 +0100
commit2065ead4e86d2da8868dd88160af5b2fdcf3adde (patch)
treeabfa2bda5e84b01df4cc5731904a5af3e0939376 /protocols/luci-proto-ipv6/htdocs
parente05ee9389735683bf277d962d2bb9ba1908bdf13 (diff)
luci-proto-ipv6: dhcpv6.js fix translation (#6751)
Signed-off-by: he ping <pinghejk@gmail.com>
Diffstat (limited to 'protocols/luci-proto-ipv6/htdocs')
-rw-r--r--protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js b/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js
index 2e75cb8632..1ed8bc7f26 100644
--- a/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js
+++ b/protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js
@@ -15,9 +15,9 @@ return network.registerProtocol('dhcpv6', {
var o;
o = s.taboption('general', form.ListValue, 'reqaddress', _('Request IPv6-address'));
- o.value('try');
- o.value('force');
- o.value('none', 'disabled');
+ o.value('try, _('try'));
+ o.value('force, _('force'));
+ o.value('none', _('disabled'));
o.default = 'try';
o = s.taboption('general', form.Value, 'reqprefix', _('Request IPv6-prefix of length'));