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 | 12 |
1 files changed, 5 insertions, 7 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 d395f411a3..5baac07d1a 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 @@ -1014,7 +1014,7 @@ return view.extend({ o = s.taboption("timer", form.ListValue, "force_unit", _('Force Unit'), - _("Interval unit to force updates send to DDNS Provider")); + _("Interval unit to force updates sent to DDNS Provider.")); o.modalonly = true; o.optional = true; o.default = "minutes" @@ -1024,9 +1024,9 @@ return view.extend({ o = s.taboption("timer", form.Value, "retry_count", _("Error Retry Counter"), - _("On Error the script will stop execution after given number of retrys") + _("On Error the script will stop execution after given number of retrys.") + "<br />" + - _("The default setting of '0' will retry infinite.")); + _("The default setting of '0' will retry infinitely.")); o.placeholder = "0"; o.optional = true; o.modalonly = true; @@ -1034,9 +1034,7 @@ return view.extend({ o = s.taboption("timer", form.Value, "retry_interval", _("Error Retry Interval"), - _("On Error the script will stop execution after given number of retrys") - + "<br />" + - _("The default setting of '0' will retry infinite.")); + _("The interval between which each succesive retry will commence.")); o.placeholder = "60"; o.optional = true; o.modalonly = true; @@ -1044,7 +1042,7 @@ return view.extend({ o = s.taboption("timer", form.ListValue, "retry_unit", _('Retry Unit'), - _("On Error the script will retry the failed action after given time")); + _("Which time units to use for retry counters.")); o.modalonly = true; o.optional = true; o.default = "seconds" |