summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-advanced-reboot/htdocs/luci-static
diff options
context:
space:
mode:
authorStan Grishin <stangri@melmac.net>2021-04-07 18:22:35 -0700
committerGitHub <noreply@github.com>2021-04-07 18:22:35 -0700
commit511405078b0d22d772614c0353a42e10c57ca9b6 (patch)
tree0ee66cf6d6fe692e39415c58b96a3990823a7c32 /applications/luci-app-advanced-reboot/htdocs/luci-static
parentfebb0d82c67ac91c9f0a5424c53549752c358369 (diff)
parent6555a47cd08263ef56243784b9178ca587bc1506 (diff)
Merge pull request #4967 from stangri/master-luci-app-advanced-reboot
luci-app-advanced-reboot: support 5.10 kernel on Zyxel
Diffstat (limited to 'applications/luci-app-advanced-reboot/htdocs/luci-static')
-rw-r--r--applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js b/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js
index c9cc20bec0..f4acb8285d 100644
--- a/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js
+++ b/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js
@@ -8,7 +8,8 @@
return view.extend({
translateTable: {
NO_BOARD_NAME : function(args) { return _('Unable to find Device Board Name.')},
- NO_DUAL_FLAG : function(args) {return _('Unable to find Dual Boot Flag Partition.')},
+ NO_DUAL_FLAG: function (args) { return _('Unable to find Dual Boot Flag Partition.') },
+ NO_DUAL_FLAG_BLOCK: function (args) { return _('The Dual Boot Flag Partition: %s is not a block device.').format(args[0])},
ERR_SET_DUAL_FLAG : function(args) { return _('Unable to set Dual Boot Flag Partition entry for partition: %s.').format(args[0])},
NO_FIRM_ENV : function(args) { return _('Unable to obtain firmware environment variable: %s.').format(args[0])},
ERR_SET_ENV : function(args) { return _('Unable to set firmware environment variable: %s to %s.').format(args[0],args[1])}