diff options
author | Thomas Schröder <tschroeder_github@outlook.com> | 2024-02-18 14:24:35 +0100 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2024-02-18 18:53:10 +0200 |
commit | 6b0953af64eba7fd70830178dd7f0f51a7c34fed (patch) | |
tree | 9db2a5238678a19b731a93d3e4028c56c85a0c23 /modules | |
parent | 72cb359bc502578c0ef2d1aa2ff0cca28782cb13 (diff) |
luci-mod-status: BUGFIX: routes: help strings to clarify column titles
Adds a missing closing bracket.
Signed-off-by: Thomas Schröder <tschroeder_github@outlook.com>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js index 0e91ea6736..8d7e36f701 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js @@ -173,7 +173,7 @@ return view.extend({ ip6route = data[5].stdout || '', ip6rule = data[6].stdout || ''; - var device_title = _('Which is used to access this %s').format(_('Target'); + var device_title = _('Which is used to access this %s').format(_('Target')); var target_title = _('Network and its mask that define the size of the destination'); var gateway_title = _('The address through which this %s is reachable').format(_('Target')); var metric_title = _('Quantifies the cost or distance to a destination in a way that allows routers to make informed decisions about the optimal path to forward data packets'); |