summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-advanced-reboot/htdocs/luci-static
diff options
context:
space:
mode:
authorStan Grishin <stangri@melmac.net>2021-04-07 03:59:42 +0000
committerStan Grishin <stangri@melmac.net>2021-04-07 03:59:42 +0000
commit6555a47cd08263ef56243784b9178ca587bc1506 (patch)
tree34924ab930996b768351c169bb2f5b917e75ef77 /applications/luci-app-advanced-reboot/htdocs/luci-static
parent80a1a9a555fd47f1fd3311cd75be3923839edc1d (diff)
luci-app-advanced-reboot: support 5.10 kernel on Zyxel
Signed-off-by: Stan Grishin <stangri@melmac.net>
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])}