diff --git a/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js b/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js
index 835536a300..5763f89fe3 100644
--- a/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js
+++ b/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js
@@ -20,8 +20,8 @@ return view.extend({
o = s.taboption('general', form.ListValue, 'mode',
_('Mode'),
- _("Ping Reboot: Reboot this device if a ping to a specified host fails for a specified duration of time.
\
- Periodic Reboot: Reboot this device after a specified interval of time.
\
+ _("Ping Reboot: Reboot this device if a ping to a specified host fails for a specified duration of time.
\
+ Periodic Reboot: Reboot this device after a specified interval of time.
\
Restart Interface: Restart a network interface if a ping to a specified host fails for a specified duration of time."));
o.value('ping_reboot', _('Ping Reboot'));
o.value('periodic_reboot', _('Periodic Reboot'));
@@ -29,14 +29,14 @@ return view.extend({
o = s.taboption('general', form.Value, 'period',
_('Period'),
- _("In Periodic Reboot mode, it defines how often to reboot.
\
+ _("In Periodic Reboot mode, it defines how often to reboot.
\
In Ping Reboot mode, it defines the longest period of \
- time without a reply from the Host To Check before a reboot is engaged.
\
+ time without a reply from the Host To Check before a reboot is engaged.
\
In Network Restart mode, it defines the longest period of \
time without a reply from the Host to Check before the interface is restarted. \
-
The default unit is seconds, without a suffix, but you can use the \
+
The default unit is seconds, without a suffix, but you can use the \
suffix m for minutes, h for hours or d \
- for days.
Examples:
- 10 seconds would be: 10 or 10s
- 5 minutes would be: 5m
- \
+ for days.
Examples:- 10 seconds would be: 10 or 10s
- 5 minutes would be: 5m
- \
1 hour would be: 1h
- 1 week would be: 7d
"));
o.default = '6h';
@@ -49,7 +49,7 @@ return view.extend({
o = s.taboption('general', form.Value, 'pingperiod',
_('Check Interval'),
_("How often to ping the host specified above. \
-
The default unit is seconds, without a suffix, but you can use the suffix m for minutes, h for hours or d for days.
\
+
The default unit is seconds, without a suffix, but you can use the suffix m for minutes, h for hours or d for days.
\
Examples:- 10 seconds would be: 10 or 10s
- 5 minutes would be: 5m
- 1 hour would be: 1h
- 1 week would be: 7d
"));
o.default = '30s';
o.depends({ mode: "ping_reboot" });
@@ -69,7 +69,7 @@ return view.extend({
o = s.taboption('general', form.Value, 'forcedelay',
_('Force Reboot Delay'),
- _("Applies to Ping Reboot and Periodic Reboot modes
When rebooting the router, the service will trigger a soft reboot. \
+ _("Applies to Ping Reboot and Periodic Reboot modes
When rebooting the router, the service will trigger a soft reboot. \
Entering a non-zero value here will trigger a delayed hard reboot if the soft reboot were to fail. \
Enter the number of seconds to wait for the soft reboot to fail or use 0 to disable the forced reboot delay."));
o.default = '1m';
@@ -79,13 +79,13 @@ return view.extend({
o = s.taboption('general', widgets.NetworkSelect, 'interface',
_('Interface'),
_('Interface to monitor and/or restart'),
- _('Applies to Ping Reboot and Restart Interface modes
Specify the interface to monitor and restart if a ping over it fails.'));
+ _('Applies to Ping Reboot and Restart Interface modes
Specify the interface to monitor and restart if a ping over it fails.'));
o.depends({ mode: 'ping_reboot' });
o.depends({ mode: 'restart_iface' });
o = s.taboption('general', widgets.NetworkSelect, 'mmifacename',
_('Name of ModemManager Interface'),
- _("Applies to Ping Reboot and Restart Interface modes
If using ModemManager, \
+ _("Applies to Ping Reboot and Restart Interface modes
If using ModemManager, \
you can have Watchcat restart your ModemManger interface by specifying its name."));
o.depends({ mode: 'restart_iface' });
o.optional = true;