diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2019-07-13 15:41:23 +0900 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-07-13 19:23:18 +0800 |
commit | 48b61ca2c4f032f0629cb8b8c7248353643a6ae8 (patch) | |
tree | 746b2b6d19577f3fd890c6faf0a609ef734fc1e8 /modules/luci-base | |
parent | 7c9d845d9b8009fd00a3b2bc628ac8978ab6a202 (diff) |
luci-base: fix translatable text in ui.js
Removed unnecessary symbols ("%>") at the end of the text.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'modules/luci-base')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 6c3f29183..9e43c2d12 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -1978,7 +1978,7 @@ return L.Class.extend({ } else { L.ui.changes.displayStatus('warning', - E('p', _('Apply request failed with status <code>%h</code>%>') + E('p', _('Apply request failed with status <code>%h</code>') .format(r.responseText || r.statusText || r.status))); window.setTimeout(function() { |