diff options
Diffstat (limited to 'applications/luci-app-ddns/htdocs/luci-static/resources/view')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index c30a3ed083..4a234c269e 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -1020,9 +1020,9 @@ return view.extend({ o.value("hours", _("hours")); o.value("days", _("days")); - o = s.taboption("timer", form.Value, "retry_count", - _("Error Retry Counter"), - _("On Error the script will stop execution after given number of retrys.") + o = s.taboption("timer", form.Value, "retry_max_count", + _("Error Max Retry Counter"), + _("On Error the script will stop execution after the given number of retries.") + "<br />" + _("The default setting of '0' will retry infinitely.")); o.placeholder = "0"; @@ -1032,7 +1032,7 @@ return view.extend({ o = s.taboption("timer", form.Value, "retry_interval", _("Error Retry Interval"), - _("The interval between which each succesive retry will commence.")); + _("The interval between which each successive retry commences.")); o.placeholder = "60"; o.optional = true; o.modalonly = true; |