From: Hilman Maulana Date: Sun, 14 Jan 2024 09:33:37 +0000 (+0700) Subject: luci-app-cloudflared: configure Cloudflare Zero Trust Tunnel X-Git-Url: http://git.openwrt.org/project/luci.git/?a=commitdiff_plain;h=31c0e9c5e5f56175faa3f8a4ee4648969a23ec9b;p=project%2Fluci.git luci-app-cloudflared: configure Cloudflare Zero Trust Tunnel Configure a tunnel and see logs of the daemon. Signed-off-by: Hilman Maulana Signed-off-by: Sergey Ponomarev (cherry picked from commit faf6c4f0283f14f2fdc95f298d65f11566c1aefa) --- diff --git a/applications/luci-app-cloudflared/Makefile b/applications/luci-app-cloudflared/Makefile new file mode 100644 index 0000000000..486391bec8 --- /dev/null +++ b/applications/luci-app-cloudflared/Makefile @@ -0,0 +1,17 @@ +# This is free software, licensed under the Apache License, Version 2.0 +# +# Copyright (C) 2024 Hilman Maulana + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI for Cloudflared +LUCI_DEPENDS:=+cloudflared +LUCI_DESCRIPTION:=LuCI support for Cloudflare Zero Trust Tunnels + +PKG_MAINTAINER:=Hilman Maulana , Sergey Ponomarev +PKG_VERSION:=1.0 +PKG_LICENSE:=Apache-2.0 + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature \ No newline at end of file diff --git a/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js b/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js new file mode 100644 index 0000000000..d473a2536d --- /dev/null +++ b/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js @@ -0,0 +1,118 @@ +/* This is free software, licensed under the Apache License, Version 2.0 + * + * Copyright (C) 2024 Hilman Maulana + */ + +'use strict'; +'require form'; +'require poll'; +'require rpc'; +'require uci'; +'require view'; + +var callServiceList = rpc.declare({ + object: 'service', + method: 'list', + params: ['name'], + expect: { '': {} } +}); + +function getServiceStatus() { + return L.resolveDefault(callServiceList('cloudflared'), {}).then(function (res) { + var isRunning = false; + try { + isRunning = res['cloudflared']['instances']['cloudflared']['running']; + } catch (ignored) {} + return isRunning; + }); +} + +function renderStatus(isRunning) { + var spanTemp = '
%s
'; + var renderHTML; + if (isRunning) { + renderHTML = String.format(spanTemp, 'green', _('Running')); + } else { + renderHTML = String.format(spanTemp, 'red', _('Not Running')); + } + + return renderHTML; +} + +return view.extend({ + load: function () { + return Promise.all([ + uci.load('cloudflared') + ]); + }, + + render: function (data) { + var m, s, o; + + m = new form.Map('cloudflared', _('Cloudflare Zero Trust Tunnel'), + _('Cloudflare Zero Trust Security services help you get maximum security both from outside and within the network.') + '
' + + _('Create and manage your network on the Cloudflare Zero Trust dashboard.') + .format('href="https://one.dash.cloudflare.com" target="_blank"') + '
' + + _('See documentation.') + .format('href="https://openwrt.org/docs/guide-user/services/vpn/cloudfare_tunnel" target="_blank"') + ); + + s = m.section(form.NamedSection, 'config', 'cloudflared'); + + o = s.option(form.DummyValue, 'service_status', _('Status')); + o.load = function () { + poll.add(function () { + return L.resolveDefault(getServiceStatus()).then(function (res) { + var view = document.getElementById('cbi-cloudflared-config-service_status'); + if (view) { + view.innerHTML = renderStatus(res); + } + }); + }); + }; + o.value = _('Collecting data...'); + + o = s.option(form.Flag, 'enabled', _('Enable')); + o.rmempty = false; + + o = s.option(form.TextValue, 'token', _('Token'), + _('The tunnel token is shown in the dashboard once you create a tunnel.') + ); + o.optional = true; + o.rmempty = false; + o.monospace = true; + + o = s.option(form.FileUpload, 'config', _('Config file path'), + _('See documentation.') + .format('href="https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/configure-tunnels/local-management/configuration-file/" target="_blank"') + ); + o.default = '/etc/cloudflared/config.yml'; + o.root_directory = '/etc/cloudflared/'; + o.optional = true; + + o = s.option(form.FileUpload, 'origincert', _('Certificate of Origin'), + _('The account certificate for your zones authorizing the client to serve as an Origin for that zone') + '
' + + _('Obtain a certificate here.') + .format('href="https://dash.cloudflare.com/argotunnel" target="_blank"') + ); + o.default = '/etc/cloudflared/cert.pem'; + o.root_directory = '/etc/cloudflared/'; + o.optional = true; + + o = s.option(form.ListValue, 'region', _('Region'), + _('The region to which connections are established.') + ); + o.value('us', _('United States')); + o.optional = true; + + o = s.option(form.ListValue, 'loglevel', _('Debug level')); + o.value('fatal', _('Fatal')); + o.value('error', _('Error')); + o.value('warn', _('Warning')); + o.value('info', _('Info')); + o.value('debug', _('Debug')); + o.default = 'info'; + + return m.render(); + } +}); \ No newline at end of file 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 new file mode 100644 index 0000000000..bc2c9e96fc --- /dev/null +++ b/applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js @@ -0,0 +1,125 @@ +/* This is free software, licensed under the Apache License, Version 2.0 + * + * Copyright (C) 2024 Hilman Maulana + */ + +'use strict'; +'require fs'; +'require ui'; +'require view'; +'require poll'; + +function formatLogEntry(logObj) { + var formattedTime = new Date(logObj.time).toISOString().replace('T', ' ').split('.')[0]; + var tunnelIDMessage = logObj.tunnelID ? ', ID: ' + logObj.tunnelID : ''; + var errorMessage = logObj.error ? ', Error: ' + logObj.error : ''; + var ipMessage = logObj.ip ? ', IP: ' + logObj.ip : ''; + var configMessage = logObj.config ? ', Config: ' + JSON.stringify(logObj.config) : ''; + var connectionMessage = logObj.connection ? ', Connection: ' + JSON.stringify(logObj.connection) : ''; + var locationMessage = logObj.location ? ', Location: ' + logObj.location : ''; + var protocolMessage = logObj.protocol ? ', Protocol: ' + logObj.protocol : ''; + + return '[' + formattedTime + '] [' + logObj.level + '] : ' + logObj.message + ipMessage + tunnelIDMessage + errorMessage + configMessage + connectionMessage + locationMessage + protocolMessage; +} + +return view.extend({ + handleSaveApply: null, + handleSave: null, + handleReset: null, + load: function() { + poll.add(function () { + return fs.read('/var/log/cloudflared.log').then(function(res) { + if (!res || res.trim() === '') { + ui.addNotification(null, E('p', {}, _('Unable to read the interface info from /var/log/cloudflared.log.'))); + return ''; + } + + var logs = res.trim().split('\n').map(function(entry) { + try { + var logObj = JSON.parse(entry); + return logObj.time && logObj.message && logObj.level + ? formatLogEntry(logObj) + : ''; + } catch (error) { + console.error('Error parsing log entry:', error); + return ''; + } + }); + + logs = logs.filter(function(entry) { + return entry.trim() !== ''; + }); + + var info = logs.join('\n'); + var view = document.getElementById('syslog'); + var filterLevel = document.getElementById('filter-level').value; + var logDirection = document.getElementById('log-direction').value; + + if (view) { + var filteredLogs; + if (filterLevel !== 'all') { + filteredLogs = logs.filter(function(entry) { + var logLevel = entry.match(/\[.*\] \[(.*)\]/)[1].toLowerCase(); + return logLevel.includes(filterLevel.toLowerCase()); + }); + } else { + filteredLogs = logs; + } + + if (logDirection === 'up') { + filteredLogs = filteredLogs.reverse(); + } + + info = filteredLogs.join('\n'); + view.innerHTML = info; + } + + return info; + }); + }); + + return Promise.resolve(''); + }, + render: function(info) { + return E([], [ + E('h2', { 'class': 'section-title' }, _('Log')), + E('div', { 'id': 'logs' }, [ + E('label', { 'for': 'filter-level', 'style': 'margin-right: 8px;' }, _('Filter Level:')), + E('select', { 'id': 'filter-level', 'style': 'margin-right: 8px;' }, [ + E('option', { 'value': 'all', 'selected': 'selected' }, _('All')), + E('option', { 'value': 'info' }, _('Info')), + E('option', { 'value': 'warn' }, _('Warn')), + E('option', { 'value': 'error' }, _('Error')), + ]), + 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('button', { + 'id': 'download-log', + 'class': 'cbi-button cbi-button-save', + 'click': L.bind(this.handleDownloadLog, this), + 'style': 'margin-bottom: 8px;' + }, _('Download Log')), + E('textarea', { + 'id': 'syslog', + 'class': 'cbi-input-textarea', + 'style': 'height: 500px; overflow-y: scroll;', + 'readonly': 'readonly', + 'wrap': 'off', + 'rows': 1 + }, [ info ]) + ]) + ]); + }, + + handleDownloadLog: function() { + var logs = document.getElementById('syslog').value; + var blob = new Blob([logs], { type: 'text/plain' }); + var link = document.createElement('a'); + link.href = window.URL.createObjectURL(blob); + link.download = 'cloudflared.log'; + link.click(); + } +}); diff --git a/applications/luci-app-cloudflared/po/ar/cloudflared.po b/applications/luci-app-cloudflared/po/ar/cloudflared.po new file mode 100644 index 0000000000..e5d5529501 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ar/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/bg/cloudflared.po b/applications/luci-app-cloudflared/po/bg/cloudflared.po new file mode 100644 index 0000000000..c6d66adea5 --- /dev/null +++ b/applications/luci-app-cloudflared/po/bg/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/bn_BD/cloudflared.po b/applications/luci-app-cloudflared/po/bn_BD/cloudflared.po new file mode 100644 index 0000000000..66a0c57757 --- /dev/null +++ b/applications/luci-app-cloudflared/po/bn_BD/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn_BD\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ca/cloudflared.po b/applications/luci-app-cloudflared/po/ca/cloudflared.po new file mode 100644 index 0000000000..726472b682 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ca/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/cs/cloudflared.po b/applications/luci-app-cloudflared/po/cs/cloudflared.po new file mode 100644 index 0000000000..a7e4bd50ee --- /dev/null +++ b/applications/luci-app-cloudflared/po/cs/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/da/cloudflared.po b/applications/luci-app-cloudflared/po/da/cloudflared.po new file mode 100644 index 0000000000..bb91642b70 --- /dev/null +++ b/applications/luci-app-cloudflared/po/da/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/de/cloudflared.po b/applications/luci-app-cloudflared/po/de/cloudflared.po new file mode 100644 index 0000000000..b11c3506d5 --- /dev/null +++ b/applications/luci-app-cloudflared/po/de/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/el/cloudflared.po b/applications/luci-app-cloudflared/po/el/cloudflared.po new file mode 100644 index 0000000000..32bc7daaf7 --- /dev/null +++ b/applications/luci-app-cloudflared/po/el/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/es/cloudflared.po b/applications/luci-app-cloudflared/po/es/cloudflared.po new file mode 100644 index 0000000000..d9d17179dd --- /dev/null +++ b/applications/luci-app-cloudflared/po/es/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/fi/cloudflared.po b/applications/luci-app-cloudflared/po/fi/cloudflared.po new file mode 100644 index 0000000000..35cf1d3cb4 --- /dev/null +++ b/applications/luci-app-cloudflared/po/fi/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/fr/cloudflared.po b/applications/luci-app-cloudflared/po/fr/cloudflared.po new file mode 100644 index 0000000000..591f49ce0a --- /dev/null +++ b/applications/luci-app-cloudflared/po/fr/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/he/cloudflared.po b/applications/luci-app-cloudflared/po/he/cloudflared.po new file mode 100644 index 0000000000..9eeb5dfca7 --- /dev/null +++ b/applications/luci-app-cloudflared/po/he/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/hi/cloudflared.po b/applications/luci-app-cloudflared/po/hi/cloudflared.po new file mode 100644 index 0000000000..2b0e062eca --- /dev/null +++ b/applications/luci-app-cloudflared/po/hi/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/hu/cloudflared.po b/applications/luci-app-cloudflared/po/hu/cloudflared.po new file mode 100644 index 0000000000..c30db97bb5 --- /dev/null +++ b/applications/luci-app-cloudflared/po/hu/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/it/cloudflared.po b/applications/luci-app-cloudflared/po/it/cloudflared.po new file mode 100644 index 0000000000..8caf2f4bbd --- /dev/null +++ b/applications/luci-app-cloudflared/po/it/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ja/cloudflared.po b/applications/luci-app-cloudflared/po/ja/cloudflared.po new file mode 100644 index 0000000000..affca60f30 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ja/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ko/cloudflared.po b/applications/luci-app-cloudflared/po/ko/cloudflared.po new file mode 100644 index 0000000000..29b49f4619 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ko/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/lt/cloudflared.po b/applications/luci-app-cloudflared/po/lt/cloudflared.po new file mode 100644 index 0000000000..575015e195 --- /dev/null +++ b/applications/luci-app-cloudflared/po/lt/cloudflared.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/mr/cloudflared.po b/applications/luci-app-cloudflared/po/mr/cloudflared.po new file mode 100644 index 0000000000..4857152faf --- /dev/null +++ b/applications/luci-app-cloudflared/po/mr/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ms/cloudflared.po b/applications/luci-app-cloudflared/po/ms/cloudflared.po new file mode 100644 index 0000000000..c8f9a933ec --- /dev/null +++ b/applications/luci-app-cloudflared/po/ms/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/nb_NO/cloudflared.po b/applications/luci-app-cloudflared/po/nb_NO/cloudflared.po new file mode 100644 index 0000000000..64c92db278 --- /dev/null +++ b/applications/luci-app-cloudflared/po/nb_NO/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/nl/cloudflared.po b/applications/luci-app-cloudflared/po/nl/cloudflared.po new file mode 100644 index 0000000000..1cd0bdeafb --- /dev/null +++ b/applications/luci-app-cloudflared/po/nl/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/pl/cloudflared.po b/applications/luci-app-cloudflared/po/pl/cloudflared.po new file mode 100644 index 0000000000..591253632a --- /dev/null +++ b/applications/luci-app-cloudflared/po/pl/cloudflared.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/pt/cloudflared.po b/applications/luci-app-cloudflared/po/pt/cloudflared.po new file mode 100644 index 0000000000..adedc253e4 --- /dev/null +++ b/applications/luci-app-cloudflared/po/pt/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/pt_BR/cloudflared.po b/applications/luci-app-cloudflared/po/pt_BR/cloudflared.po new file mode 100644 index 0000000000..8db07cd50a --- /dev/null +++ b/applications/luci-app-cloudflared/po/pt_BR/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ro/cloudflared.po b/applications/luci-app-cloudflared/po/ro/cloudflared.po new file mode 100644 index 0000000000..92b6358593 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ro/cloudflared.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/ru/cloudflared.po b/applications/luci-app-cloudflared/po/ru/cloudflared.po new file mode 100644 index 0000000000..595898a7c3 --- /dev/null +++ b/applications/luci-app-cloudflared/po/ru/cloudflared.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/sk/cloudflared.po b/applications/luci-app-cloudflared/po/sk/cloudflared.po new file mode 100644 index 0000000000..a06d21a008 --- /dev/null +++ b/applications/luci-app-cloudflared/po/sk/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/sv/cloudflared.po b/applications/luci-app-cloudflared/po/sv/cloudflared.po new file mode 100644 index 0000000000..1c3cfdc8a0 --- /dev/null +++ b/applications/luci-app-cloudflared/po/sv/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/templates/cloudflared.pot b/applications/luci-app-cloudflared/po/templates/cloudflared.pot new file mode 100644 index 0000000000..ce4f3c6f96 --- /dev/null +++ b/applications/luci-app-cloudflared/po/templates/cloudflared.pot @@ -0,0 +1,159 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/tr/cloudflared.po b/applications/luci-app-cloudflared/po/tr/cloudflared.po new file mode 100644 index 0000000000..3e11514aec --- /dev/null +++ b/applications/luci-app-cloudflared/po/tr/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/uk/cloudflared.po b/applications/luci-app-cloudflared/po/uk/cloudflared.po new file mode 100644 index 0000000000..1afecf9ec3 --- /dev/null +++ b/applications/luci-app-cloudflared/po/uk/cloudflared.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/vi/cloudflared.po b/applications/luci-app-cloudflared/po/vi/cloudflared.po new file mode 100644 index 0000000000..d2e7fa7688 --- /dev/null +++ b/applications/luci-app-cloudflared/po/vi/cloudflared.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/zh_Hans/cloudflared.po b/applications/luci-app-cloudflared/po/zh_Hans/cloudflared.po new file mode 100644 index 0000000000..25d8ecf17d --- /dev/null +++ b/applications/luci-app-cloudflared/po/zh_Hans/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hans\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/po/zh_Hant/cloudflared.po b/applications/luci-app-cloudflared/po/zh_Hant/cloudflared.po new file mode 100644 index 0000000000..1bfbe61321 --- /dev/null +++ b/applications/luci-app-cloudflared/po/zh_Hant/cloudflared.po @@ -0,0 +1,166 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hant\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:89 +msgid "All" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:93 +msgid "Certificate of Origin" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:53 +msgid "" +"Cloudflare Zero Trust Security services help you get maximum security both " +"from outside and within the network." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:52 +msgid "Cloudflare Zero Trust Tunnel" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:3 +msgid "Cloudflared" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:73 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:85 +msgid "Config file path" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:14 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:54 +msgid "" +"Create and manage your network on the Cloudflare Zero Trust " +"dashboard." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:113 +msgid "Debug" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:108 +msgid "Debug level" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:96 +msgid "Down" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:104 +msgid "Download Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:75 +msgid "Enable" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:110 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:92 +msgid "Error" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:109 +msgid "Fatal" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:87 +msgid "Filter Level:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json:3 +msgid "Grant access to Cloudflared configuration" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:112 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:90 +msgid "Info" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:85 +msgid "Log" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:94 +msgid "Log Direction:" +msgstr "" + +#: applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json:22 +msgid "Logs" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:36 +msgid "Not Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:95 +msgid "Obtain a certificate here." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:102 +msgid "Region" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:34 +msgid "Running" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:56 +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:86 +msgid "See documentation." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:62 +msgid "Status" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:94 +msgid "" +"The account certificate for your zones authorizing the client to serve as an " +"Origin for that zone" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:103 +msgid "The region to which connections are established." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:79 +msgid "The tunnel token is shown in the dashboard once you create a tunnel." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:78 +msgid "Token" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:33 +msgid "Unable to read the interface info from /var/log/cloudflared.log." +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:105 +msgid "United States" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:97 +msgid "Up" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/log.js:91 +msgid "Warn" +msgstr "" + +#: applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js:111 +msgid "Warning" +msgstr "" diff --git a/applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json b/applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json new file mode 100644 index 0000000000..08c9a2d3b0 --- /dev/null +++ b/applications/luci-app-cloudflared/root/usr/share/luci/menu.d/luci-app-cloudflared.json @@ -0,0 +1,29 @@ +{ + "admin/vpn/cloudflared": { + "title": "Cloudflared", + "order": 80, + "action": { + "type": "firstchild" + }, + "depends": { + "acl": [ "luci-app-cloudflared" ], + "uci": { "cloudflared": true } + } + }, + "admin/vpn/cloudflared/config": { + "title": "Configuration", + "order": 10, + "action": { + "type": "view", + "path": "cloudflared/config" + } + }, + "admin/vpn/cloudflared/log": { + "title": "Logs", + "order": 20, + "action": { + "type": "view", + "path": "cloudflared/log" + } + } +} \ No newline at end of file diff --git a/applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json b/applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json new file mode 100644 index 0000000000..82a9a89a21 --- /dev/null +++ b/applications/luci-app-cloudflared/root/usr/share/rpcd/acl.d/luci-app-cloudflared.json @@ -0,0 +1,16 @@ +{ + "luci-app-cloudflared": { + "description": "Grant access to Cloudflared configuration", + "read": { + "uci": [ "cloudflared" ], + "ubus": { + "service": [ "list" ] + }, + "file": [ "/var/log/cloudflared.log" ] + }, + "write": { + "uci": [ "cloudflared" ], + "file": [ "/etc/cloudflared/" ] + } + } +} \ No newline at end of file