diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-07-12 15:43:34 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-07-12 15:43:34 +0200 |
commit | 57b88211c14dd71da44b537ac9062f99e1efbe80 (patch) | |
tree | 0c6766c072f4d6a1cf0948dd2fb8fc96e8614149 /applications/luci-app-ddns/htdocs/luci-static/resources | |
parent | 233b83d6e56bb7b01717be186aa6a7acd896d90b (diff) |
luci-app-ddns: fix broken translation call
Fixes: #5874
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-ddns/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js | 2 |
1 files changed, 1 insertions, 1 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 4592c47c4c..4b786e83c5 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 @@ -1067,7 +1067,7 @@ return view.extend({ log_box.render = L.bind(function() { return E([ - E('p', {}, _('This is the current content of the log file in ') + logdir + ' for this service.'), + E('p', {}, _('This is the current content of the log file in %h for this service.').format(logdir)), E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 20, 'readonly' : 'readonly', 'id' : 'log_area' }, _('Please press [Read] button') )) ]); }, o, this); |