From: David Han Date: Sun, 7 Jun 2026 21:14:23 +0000 (+0900) Subject: luci-app-cloudflared: i18n string context X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0ee94564976b13e7bb6ee5316ebd31665c31f063;p=openwrt-luci.git luci-app-cloudflared: i18n string context Add "Log direction" context to "Up" and "Down" strings to improve clarity. Signed-off-by: David Han --- diff --git a/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js b/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js index bc2c9e96fc..cec38f2603 100644 --- a/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js +++ b/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js @@ -93,8 +93,8 @@ return view.extend({ ]), E('label', { 'for': 'log-direction', 'style': 'margin-right: 8px;' }, _('Log Direction:')), E('select', { 'id': 'log-direction', 'style': 'margin-right: 8px;' }, [ - E('option', { 'value': 'down', 'selected': 'selected' }, _('Down')), - E('option', { 'value': 'up' }, _('Up')), + E('option', { 'value': 'down', 'selected': 'selected' }, _('Down', 'Log direction')), + E('option', { 'value': 'up' }, _('Up', 'Log direction')), ]), E('button', { 'id': 'download-log',