diff options
Diffstat (limited to 'applications/luci-app-uhttpd')
44 files changed, 5156 insertions, 3000 deletions
diff --git a/applications/luci-app-uhttpd/Makefile b/applications/luci-app-uhttpd/Makefile index a365353cc6..31087676ac 100644 --- a/applications/luci-app-uhttpd/Makefile +++ b/applications/luci-app-uhttpd/Makefile @@ -1,20 +1,15 @@ # # Copyright (C) 2015 OpenWrt.org # -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# +# This is free software, licensed under the Apache License, Version 2.0 . include $(TOPDIR)/rules.mk LUCI_TITLE:=uHTTPd Webserver Configuration -LUCI_DEPENDS:=+luci-compat +uhttpd -LUCI_PKGARCH:=all +LUCI_DEPENDS:=+luci-base +uhttpd PKG_LICENSE:=Apache-2.0 -PKG_MAINTAINER:=Daniel Dickinson <openwrt@daniel.thecshore.com> - -LUA_TARGET:=source +PKG_MAINTAINER:=Daniel F. Dickinson <dfdpublic@wildtechgarden.ca> include ../../luci.mk diff --git a/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js new file mode 100644 index 0000000000..723714a0c6 --- /dev/null +++ b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js @@ -0,0 +1,258 @@ +'use strict'; +'require view'; +'require form'; +'require fs'; +'require uci'; + +return view.extend({ + load: function () { + return Promise.all([uci.load('uhttpd')]); + }, + + render: function () { + let m, s, o; + + var lhttp = null; + var lhttps = null; + var cert_file = null; + var key_file = null; + m = new form.Map('uhttpd', _('uHTTPd'), _('A lightweight single-threaded HTTP(S) server')); + + s = m.section(form.TypedSection, 'uhttpd'); + s.addremove = true; + s.anonymous = false; + + s.tab('general', _('General Settings')); + s.tab('server', _('Full Web Server Settings'), _('For settings primarily geared to serving more than the web UI')); + s.tab('advanced', _('Advanced Settings'), _('Settings which are either rarely needed or which affect serving the WebUI')); + + lhttp = s.taboption('general', form.DynamicList, 'listen_http', _('HTTP listeners (address:port)'), _('Bind to specific interface:port (by specifying interface address)')); + lhttp.datatype = 'list(ipaddrport(1))'; + + lhttp.validate = function (section_id, value) { + var have_https_listener = false; + var have_http_listener = false; + if (lhttp && lhttp.formvalue(section_id) && lhttp.formvalue(section_id).length > 0) { + lhttp.formvalue(section_id).forEach(function (v) { + if (v && v !== '') { + have_http_listener = true; + return false; + } + }); + } + if (lhttps && lhttps.formvalue(section_id) && lhttps.formvalue(section_id).length > 0) { + lhttps.formvalue(section_id).forEach(function (v) { + if (v && v !== '') { + have_https_listener = true; + return false; + } + }); + } + if (!(have_http_listener || have_https_listener)) { + return [null, 'must listen on at least one address:port']; + } + return true; + }; + + lhttps = s.taboption('general', form.DynamicList, 'listen_https', _('HTTPS listener (address:port)'), _('Bind to specific interface:port (by specifying interface address)')); + lhttps.datatype = 'list(ipaddrport(1))'; + + var cert = uci.get('uhttpd', 'main', 'cert'); + var key = uci.get('uhttpd', 'main', 'key'); + + lhttps.validate = function (section_id, value) { + let have_https_listener = false; + let have_http_listener = false; + + if (lhttps && lhttps.formvalue(section_id) && lhttps.formvalue(section_id).length > 0) { + lhttps.formvalue(section_id).forEach(function (v) { + if (v && v !== '') { + have_https_listener = true; + return false; + } + }); + if (have_https_listener && (!cert_file || !cert_file.formvalue(section_id) || cert_file.formvalue(section_id) === '')) { + return [null, 'must have certificate when using https']; + } + if (have_https_listener && (!key_file || !key_file.formvalue(section_id) || key_file.formvalue(section_id) === '')) { + return [null, 'must have key when using https']; + } + } + + if (lhttp && lhttp.formvalue(section_id) && lhttp.formvalue(section_id).length > 0) { + lhttp.formvalue(section_id).forEach(function (v) { + if (v && v !== '') { + have_http_listener = true; + return false; + } + }); + } + + if (!(have_http_listener || have_https_listener)) { + return [null, 'must listen on at least one address:port']; + } + + return true; + }; + + lhttps.depends({ cert, key }); + + o = s.taboption('general', form.Flag, 'redirect_https', _('Redirect all HTTP to HTTPS')); + o.default = o.enabled; + o.rmempty = false; + + o = s.taboption('general', form.Flag, 'rfc1918_filter', _('Ignore private IPs on public interface'), _('Prevent access from private (RFC1918) IPs on an interface if it has an public IP address')); + o.default = o.enabled; + o.rmempty = false; + + cert_file = s.taboption('general', form.FileUpload, 'cert', _('HTTPS Certificate (DER or PEM format)'), _('Files can only be uploaded and saved to the /etc/luci-uploads directory.')); + cert_file.root_directory = '/'; + cert_file.enable_remove = false; + + key_file = s.taboption('general', form.FileUpload, 'key', _('HTTPS Private Key (DER or PEM format)'), _('Files can only be uploaded and saved to the /etc/luci-uploads directory.')); + key_file.root_directory = '/'; + key_file.enable_remove = false; + + o = s.taboption('general', form.Button, 'remove_old', _('Remove old certificate and key'), _('uHTTPd will generate a new self-signed certificate using the configuration shown below.')); + o.inputstyle = 'remove'; + o.onclick = function (section_id) { + fs.remove(`${uci.get('uhttpd', 'main', 'cert')}`) + .then(() => fs.remove(`${uci.get('uhttpd', 'main', 'key')}`)) + .then(() => { + return fs.exec('/etc/init.d/uhttpd', ['restart']); + }) + .finally(() => { + window.location.reload(); + }); + }; + + o = s.taboption('general', form.Button, 'remove_conf', _('Remove configuration for certificate and key'), _('This permanently deletes the cert, key, and configuration to use same.')); + o.inputstyle = 'remove'; + o.onclick = function (section_id) { + fs.remove(`${uci.get('uhttpd', 'main', 'cert')}`) + .then(() => fs.remove(`${uci.get('uhttpd', 'main', 'key')}`)) + .then(() => { + uci.unset('uhttpd', 'main', 'cert'); + uci.unset('uhttpd', 'main', 'key'); + uci.unset('uhttpd', 'main', 'listen_https'); + return uci.save(); + }) + .then(() => { + return fs.exec('/etc/init.d/uhttpd', ['restart']); + }) + .finally(() => { + window.location.reload(); + }); + }; + + o = s.taboption('server', form.DynamicList, 'index_page', _('Index page(s)'), _('E.g specify with index.html and index.php when using PHP')); + o.optional = true; + o.placeholder = 'index.html'; + + o = s.taboption('server', form.DynamicList, 'interpreter', _('CGI filetype handler'), _("Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/usr/bin/php-cgi')")); + o.optional = true; + + o = s.taboption('server', form.Flag, 'no_symlinks', _('Do not follow symlinks outside document root')); + o.optional = true; + + o = s.taboption('server', form.Flag, 'no_dirlists', _('Do not generate directory listings.')); + o.default = o.disabled; + + o = s.taboption('server', form.DynamicList, 'alias', _('Aliases'), _('(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)')); + o.optional = true; + + o = s.taboption('server', form.Value, 'realm', _('Realm for Basic Auth')); + o.optional = true; + o.placeholder = window.location.hostname || 'OpenWrt'; + + o = s.taboption('server', form.Value, 'config', _('Config file (e.g. for credentials for Basic Auth)'), _('Will not use HTTP authentication if not present')); + o.optional = true; + + o = s.taboption('server', form.Value, 'error_page', _('404 Error'), _("Virtual URL or CGI script to display on status '404 Not Found'. Must begin with '/'")); + o.optional = true; + + o = s.taboption('advanced', form.Value, 'home', _('Document root'), _('Base directory for files to be served')); + o.default = '/www'; + o.datatype = 'directory'; + + o = s.taboption('advanced', form.Value, 'cgi_prefix', _('Path prefix for CGI scripts'), _('CGI is disabled if not present.')); + o.optional = true; + + o = s.taboption('advanced', form.Value, 'lua_prefix', _('Virtual path prefix for Lua scripts')); + o.placeholder = '/lua'; + o.optional = true; + + o = s.taboption('advanced', form.Value, 'lua_handler', _('Full real path to handler for Lua scripts'), _('Embedded Lua interpreter is disabled if not present.')); + o.optional = true; + + o = s.taboption('advanced', form.Value, 'ubus_prefix', _('Virtual path prefix for ubus via JSON-RPC integration'), _('ubus integration is disabled if not present')); + o.optional = true; + + o = s.taboption('advanced', form.Value, 'ubus_socket', _('Override path for ubus socket')); + o.optional = true; + + o = s.taboption('advanced', form.Flag, 'ubus_cors', _('Enable JSON-RPC Cross-Origin Resource Support')); + o.default = o.disabled; + o.optional = true; + + o = s.taboption('advanced', form.Flag, 'no_ubusauth', _('Disable JSON-RPC authorization via ubus session API')); + o.optional = true; + o.default = o.disabled; + + o = s.taboption('advanced', form.Value, 'script_timeout', _('Maximum wait time for Lua, CGI, or ubus execution')); + o.placeholder = 60; + o.datatype = 'uinteger'; + o.optional = true; + + o = s.taboption('advanced', form.Value, 'network_timeout', _('Maximum wait time for network activity')); + o.placeholder = 30; + o.datatype = 'uinteger'; + o.optional = true; + + o = s.taboption('advanced', form.Value, 'http_keepalive', _('Connection reuse')); + o.placeholder = 20; + o.datatype = 'uinteger'; + o.optional = true; + + o = s.taboption('advanced', form.Value, 'tcp_keepalive', _('TCP Keepalive')); + o.optional = true; + o.datatype = 'uinteger'; + o.default = 1; + + o = s.taboption('advanced', form.Value, 'max_connections', _('Maximum number of connections')); + o.optional = true; + o.datatype = 'uinteger'; + + o = s.taboption('advanced', form.Value, 'max_requests', _('Maximum number of script requests')); + o.optional = true; + o.datatype = 'uinteger'; + + s = m.section(form.TypedSection, 'cert', _('uHTTPd Self-signed Certificate Parameters')); + s.template = 'cbi/tsection'; + s.anonymous = true; + + o = s.option(form.Value, 'days', _('Valid for # of Days')); + o.default = 730; + o.datatype = 'uinteger'; + + o = s.option(form.Value, 'bits', _('Length of key in bits')); + o.default = 2048; + o.datatype = 'min(1024)'; + + o = s.option(form.Value, 'commonname', _('Server Hostname'), _('a.k.a CommonName')); + o.default = window.location.hostname || 'OpenWrt'; + + o = s.option(form.Value, 'organization', _('Organization'), _('If empty, a random/unique value is used in cert generation')); + + o = s.option(form.Value, 'location', _('Location')); + o.default = 'Unknown'; + + o = s.option(form.Value, 'state', _('State')); + o.default = 'Unknown'; + + o = s.option(form.Value, 'country', _('Country')); + o.default = 'ZZ'; + + return m.render(); + }, +}); diff --git a/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua b/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua deleted file mode 100644 index 20929036d7..0000000000 --- a/applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua +++ /dev/null @@ -1,230 +0,0 @@ --- Copyright 2015 Daniel Dickinson <openwrt@daniel.thecshore.com> --- Licensed to the public under the Apache License 2.0. - -local fs = require("nixio.fs") - -local m = Map("uhttpd", translate("uHTTPd"), - translate("A lightweight single-threaded HTTP(S) server")) - -local ucs = m:section(TypedSection, "uhttpd", "") -ucs.addremove = true -ucs.anonymous = false - -local lhttp = nil -local lhttps = nil -local cert_file = nil -local key_file = nil - -ucs:tab("general", translate("General Settings")) -ucs:tab("server", translate("Full Web Server Settings"), translate("For settings primarily geared to serving more than the web UI")) -ucs:tab("advanced", translate("Advanced Settings"), translate("Settings which are either rarely needed or which affect serving the WebUI")) - -lhttp = ucs:taboption("general", DynamicList, "listen_http", translate("HTTP listeners (address:port)"), translate("Bind to specific interface:port (by specifying interface address")) -lhttp.datatype = "list(ipaddrport(1))" - -function lhttp.validate(self, value, section) - local have_https_listener = false - local have_http_listener = false - if lhttp and lhttp:formvalue(section) and (#(lhttp:formvalue(section)) > 0) then - for k, v in pairs(lhttp:formvalue(section)) do - if v and (v ~= "") then - have_http_listener = true - break - end - end - end - if lhttps and lhttps:formvalue(section) and (#(lhttps:formvalue(section)) > 0) then - for k, v in pairs(lhttps:formvalue(section)) do - if v and (v ~= "") then - have_https_listener = true - break - end - end - end - if not (have_http_listener or have_https_listener) then - return nil, "must listen on at least one address:port" - end - return DynamicList.validate(self, value, section) -end - -lhttps = ucs:taboption("general", DynamicList, "listen_https", translate("HTTPS listener (address:port)"), translate("Bind to specific interface:port (by specifying interface address")) -lhttps.datatype = "list(ipaddrport(1))" -lhttps:depends("cert") -lhttps:depends("key") - -function lhttps.validate(self, value, section) - local have_https_listener = false - local have_http_listener = false - if lhttps and lhttps:formvalue(section) and (#(lhttps:formvalue(section)) > 0) then - for k, v in pairs(lhttps:formvalue(section)) do - if v and (v ~= "") then - have_https_listener = true - break - end - end - if have_https_listener and ((not cert_file) or (not cert_file:formvalue(section)) or (cert_file:formvalue(section) == "")) then - return nil, "must have certificate when using https" - end - if have_https_listener and ((not key_file) or (not key_file:formvalue(section)) or (key_file:formvalue(section) == "")) then - return nil, "must have key when using https" - end - end - if lhttp and (lhttp:formvalue(section)) and (#lhttp:formvalue(section) > 0) then - for k, v in pairs(lhttp:formvalue(section)) do - if v and (v ~= "") then - have_http_listener = true - break - end - end - end - if not (have_http_listener or have_https_listener) then - return nil, "must listen on at least one address:port" - end - return DynamicList.validate(self, value, section) -end - -o = ucs:taboption("general", Flag, "redirect_https", translate("Redirect all HTTP to HTTPS")) -o.default = o.enabled -o.rmempty = false - -o = ucs:taboption("general", Flag, "rfc1918_filter", translate("Ignore private IPs on public interface"), translate("Prevent access from private (RFC1918) IPs on an interface if it has an public IP address")) -o.default = o.enabled -o.rmempty = false - -cert_file = ucs:taboption("general", FileUpload, "cert", translate("HTTPS Certificate (DER or PEM format)")) - -key_file = ucs:taboption("general", FileUpload, "key", translate("HTTPS Private Key (DER or PEM format)")) - -o = ucs:taboption("general", Button, "remove_old", translate("Remove old certificate and key"), - translate("uHTTPd will generate a new self-signed certificate using the configuration shown below.")) -o.inputstyle = "remove" - -function o.write(self, section) - if cert_file:cfgvalue(section) and fs.access(cert_file:cfgvalue(section)) then fs.unlink(cert_file:cfgvalue(section)) end - if key_file:cfgvalue(section) and fs.access(key_file:cfgvalue(section)) then fs.unlink(key_file:cfgvalue(section)) end - luci.sys.call("/etc/init.d/uhttpd restart") - luci.http.redirect(luci.dispatcher.build_url("admin", "services", "uhttpd")) -end - -o = ucs:taboption("general", Button, "remove_conf", translate("Remove configuration for certificate and key"), - translate("This permanently deletes the cert, key, and configuration to use same.")) -o.inputstyle = "remove" - -function o.write(self, section) - if cert_file:cfgvalue(section) and fs.access(cert_file:cfgvalue(section)) then fs.unlink(cert_file:cfgvalue(section)) end - if key_file:cfgvalue(section) and fs.access(key_file:cfgvalue(section)) then fs.unlink(key_file:cfgvalue(section)) end - self.map:del(section, "cert") - self.map:del(section, "key") - self.map:del(section, "listen_https") - luci.http.redirect(luci.dispatcher.build_url("admin", "services", "uhttpd")) -end - -o = ucs:taboption("server", DynamicList, "index_page", translate("Index page(s)"), translate("E.g specify with index.html and index.php when using PHP")) -o.optional = true -o.placeholder = "index.html" - -o = ucs:taboption("server", DynamicList, "interpreter", translate("CGI filetype handler"), translate("Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/usr/bin/php-cgi')")) -o.optional = true - -o = ucs:taboption("server", Flag, "no_symlinks", translate("Do not follow symlinks outside document root")) -o.optional = true - -o = ucs:taboption("server", Flag, "no_dirlists", translate("Do not generate directory listings.")) -o.default = o.disabled - -o = ucs:taboption("server", DynamicList, "alias", translate("Aliases"), translate("(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)")) -o.optional = true - -o = ucs:taboption("server", Value, "realm", translate("Realm for Basic Auth")) -o.optional = true -o.placeholder = luci.sys.hostname() or "OpenWrt" - -local httpconfig = ucs:taboption("server", Value, "config", translate("Config file (e.g. for credentials for Basic Auth)"), translate("Will not use HTTP authentication if not present")) -httpconfig.optional = true - -o = ucs:taboption("server", Value, "error_page", translate("404 Error"), translate("Virtual URL or CGI script to display on status '404 Not Found'. Must begin with '/'")) -o.optional = true - -o = ucs:taboption("advanced", Value, "home", translate("Document root"), - translate("Base directory for files to be served")) -o.default = "/www" -o.datatype = "directory" - -o = ucs:taboption("advanced", Value, "cgi_prefix", translate("Path prefix for CGI scripts"), translate("CGI is disabled if not present.")) -o.optional = true - -o = ucs:taboption("advanced", Value, "lua_prefix", translate("Virtual path prefix for Lua scripts")) -o.placeholder = "/lua" -o.optional = true - -o = ucs:taboption("advanced", Value, "lua_handler", translate("Full real path to handler for Lua scripts"), translate("Embedded Lua interpreter is disabled if not present.")) -o.optional = true - -o = ucs:taboption("advanced", Value, "ubus_prefix", translate("Virtual path prefix for ubus via JSON-RPC integration"), translate("ubus integration is disabled if not present")) -o.optional = true - -o = ucs:taboption("advanced", Value, "ubus_socket", translate("Override path for ubus socket")) -o.optional = true - -o = ucs:taboption("advanced", Flag, "ubus_cors", translate("Enable JSON-RPC Cross-Origin Resource Support")) -o.default = o.disabled -o.optional = true - -o = ucs:taboption("advanced", Flag, "no_ubusauth", translate("Disable JSON-RPC authorization via ubus session API")) -o.optional= true -o.default = o.disabled - -o = ucs:taboption("advanced", Value, "script_timeout", translate("Maximum wait time for Lua, CGI, or ubus execution")) -o.placeholder = 60 -o.datatype = "uinteger" -o.optional = true - -o = ucs:taboption("advanced", Value, "network_timeout", translate("Maximum wait time for network activity")) -o.placeholder = 30 -o.datatype = "uinteger" -o.optional = true - -o = ucs:taboption("advanced", Value, "http_keepalive", translate("Connection reuse")) -o.placeholder = 20 -o.datatype = "uinteger" -o.optional = true - -o = ucs:taboption("advanced", Value, "tcp_keepalive", translate("TCP Keepalive")) -o.optional = true -o.datatype = "uinteger" -o.default = 1 - -o = ucs:taboption("advanced", Value, "max_connections", translate("Maximum number of connections")) -o.optional = true -o.datatype = "uinteger" - -o = ucs:taboption("advanced", Value, "max_requests", translate("Maximum number of script requests")) -o.optional = true -o.datatype = "uinteger" - -local s = m:section(TypedSection, "cert", translate("uHTTPd Self-signed Certificate Parameters")) - -s.template = "cbi/tsection" -s.anonymous = true - -o = s:option(Value, "days", translate("Valid for # of Days")) -o.default = 730 -o.datatype = "uinteger" - -o = s:option(Value, "bits", translate("Length of key in bits")) -o.default = 2048 -o.datatype = "min(1024)" - -o = s:option(Value, "commonname", translate("Server Hostname"), translate("a.k.a CommonName")) -o.default = luci.sys.hostname() - -o = s:option(Value, "country", translate("Country")) -o.default = "ZZ" - -o = s:option(Value, "state", translate("State")) -o.default = "Unknown" - -o = s:option(Value, "location", translate("Location")) -o.default = "Unknown" - -return m diff --git a/applications/luci-app-uhttpd/po/ar/uhttpd.po b/applications/luci-app-uhttpd/po/ar/uhttpd.po index 7fcaa8e9ac..a5ca995aad 100644 --- a/applications/luci-app-uhttpd/po/ar/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ar/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-10-06 20:27+0000\n" -"Last-Translator: Mohamed Bechir Besbes <besbes.bechir22@gmail.com>\n" +"PO-Revision-Date: 2024-07-15 20:49+0000\n" +"Last-Translator: Rex_sa <rex.sa@pm.me>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/ar/>\n" "Language: ar\n" @@ -11,252 +11,266 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "إعدادات متقدمة" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" -msgstr "" +msgstr "بلد" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "الاعدادات العامة" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "حالة" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/bg/uhttpd.po b/applications/luci-app-uhttpd/po/bg/uhttpd.po index 05763ef4cf..b5137ec047 100644 --- a/applications/luci-app-uhttpd/po/bg/uhttpd.po +++ b/applications/luci-app-uhttpd/po/bg/uhttpd.po @@ -1,259 +1,276 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-02-28 14:29+0000\n" +"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" +"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/bg/>\n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/стар/път=/нов/път) или (само /стар/път което става /cgi-префикс/стар/път)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "Грешка 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Лек еднонишков HTTP(S) сървър" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "Разширени настройки" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Псевдоними" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" -msgstr "" +msgstr "Държава" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "Общи настройки" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/bn_BD/uhttpd.po b/applications/luci-app-uhttpd/po/bn_BD/uhttpd.po index f2d724cab2..02225e49ae 100644 --- a/applications/luci-app-uhttpd/po/bn_BD/uhttpd.po +++ b/applications/luci-app-uhttpd/po/bn_BD/uhttpd.po @@ -1,259 +1,275 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-10-08 18:54+0000\n" +"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsuhttpd/bn_BD/>\n" "Language: bn_BD\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "উন্নত সেটিংস" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "সাধারণ সেটিংস" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/ca/uhttpd.po b/applications/luci-app-uhttpd/po/ca/uhttpd.po index f6ed691f72..0510e057df 100644 --- a/applications/luci-app-uhttpd/po/ca/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ca/uhttpd.po @@ -1,259 +1,275 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-20 23:20+0000\n" +"Last-Translator: Toomoch <vallsfustearnau@gmail.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/ca/>\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "Configuració avançada" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "Paràmetres generals" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/cs/uhttpd.po b/applications/luci-app-uhttpd/po/cs/uhttpd.po index f0578d58d1..e9c39d3a1e 100644 --- a/applications/luci-app-uhttpd/po/cs/uhttpd.po +++ b/applications/luci-app-uhttpd/po/cs/uhttpd.po @@ -12,99 +12,105 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.3.2-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/stara/cesta=/nova/cesta) nebo (jen /stara/cesta ktera se stane /cgi-prefix/" "stara/cesta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Chyba 404 (nenalezeno)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Odlehčený jednovláknový HTTP(S) server" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Pokročilá nastavení" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Aliasy" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Země" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Obecná nastavení" @@ -112,152 +118,160 @@ msgstr "Obecná nastavení" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Stav" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/da/uhttpd.po b/applications/luci-app-uhttpd/po/da/uhttpd.po new file mode 100644 index 0000000000..6a01320861 --- /dev/null +++ b/applications/luci-app-uhttpd/po/da/uhttpd.po @@ -0,0 +1,297 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2023-10-05 19:12+0000\n" +"Last-Translator: drax red <drax@outlook.dk>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/da/>\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.1-dev\n" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/gammel/sti=/ny/sti) eller (bare /gammel/sti, som bliver til /cgi-præfiks/" +"gammel/sti)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "404 fejl" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "En let enkelt-trådet HTTP(S)-server" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "Avancerede indstillinger" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "Aliaser" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "Basismappe for filer, der skal vises" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "Bind til specifik interface:port (ved at angive interface adresse" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "CGI-filtypebehandler" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "CGI er deaktiveret, hvis den ikke er til stede." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "Konfigurationsfil (f.eks. for legitimationsoplysninger til Basic Auth)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "Genbrug af forbindelse" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "Land" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "Deaktiver JSON-RPC-godkendelse via ubus session API" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "Følg ikke symbolske links uden for dokumentroden" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "Generer ikke mappefortegnelser." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "Dokumentrod" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "F.eks. specificer med index.html og index.php, når du bruger PHP" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "Indlejret Lua-tolk er deaktiveret, hvis den ikke er til stede." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Aktiver JSON-RPC Cross-Origin Resource Support" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "Filer kan kun uploades og gemmes i mappen /etc/luci-uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "" +"Til indstillinger, der primært er gearet til at betjene mere end web-" +"brugergrænsefladen" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "Fuld webserverindstillinger" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "Fuld reel sti til handler for Lua-scripts" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "Generelle indstillinger" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "Giv UCI-adgang til luci-app-uhttpd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "HTTP-lyttere (adresse:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "HTTPS-certifikat (DER- eller PEM-format)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "HTTPS privat nøgle (DER- eller PEM-format)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "HTTPS-lytter (adresse:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Hvis tom, bruges en tilfældig/unik værdi i certgenerering" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "Ignorer private IP'er på offentlig interface" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "Indeksside(r)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Tolk til at knytte til filendelser ('suffix=handler', f.eks. '.php=/usr/bin/" +"php-cgi')" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "Nøglens længde i bits" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "Lokation" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "Maksimalt antal forbindelser" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "Maksimalt antal scriptanmodninger" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "Maksimal ventetid for udførelse af Lua, CGI eller ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "Maksimal ventetid på netværksaktivitet" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organisation" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "Tilsidesæt sti til ubus socket" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "Stipræfiks for CGI-scripts" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Forhindre adgang fra private (RFC1918) IP'er på et interface, hvis den har " +"en offentlig IP-adresse" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "Realm for Basic Auth" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "Omdiriger al HTTP til HTTPS" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "Fjern konfiguration for certifikat og nøgle" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "Fjern gammelt certifikat og nøgle" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "Serverens værtsnavn" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Indstillinger, som enten sjældent er nødvendige, eller som påvirker " +"betjeningen af WebUI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "State" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "TCP Hold i live" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" +"Dette sletter permanent certifikatet, nøglen og konfigurationen for at bruge " +"de samme." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "Gyldig i # dage" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"Virtuel URL- eller CGI-script til visning på status '404 ikke fundet'. Skal " +"begynde med '/'" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "Virtuel sti-præfiks til Lua-scripts" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "Virtuel sti-præfiks til ubus via JSON-RPC-integration" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "Vil ikke bruge HTTP-godkendelse, hvis den ikke er til stede" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "a.k.a CommonName" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "uHTTPd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "uHTTPd Selvsignerede certifikatparametre" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"uHTTPd vil generere et nyt selvsigneret certifikat ved hjælp af " +"konfigurationen vist nedenfor." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "ubus-integration er deaktiveret, hvis den ikke er til stede" + +#~ msgid "HTTPS Certificate (DER Encoded)" +#~ msgstr "HTTPS Certificate (DER Encoded)" + +#~ msgid "HTTPS Private Key (DER Encoded)" +#~ msgstr "HTTPS Private Key (DER Encoded)" diff --git a/applications/luci-app-uhttpd/po/de/uhttpd.po b/applications/luci-app-uhttpd/po/de/uhttpd.po index 44952e291e..5f191a39fc 100644 --- a/applications/luci-app-uhttpd/po/de/uhttpd.po +++ b/applications/luci-app-uhttpd/po/de/uhttpd.po @@ -1,141 +1,155 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2024-05-24 06:13+0000\n" +"Last-Translator: David <dawin@users.noreply.hosted.weblate.org>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.6-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/alter/pfad=/neuer/pfad) oder (nur /alter/pfad aus dem /cgi-prefix/alter/" "pfad wird)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "404 Fehler" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Leichtgewichtiger single-thread HTTP(s) Server" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Aliase" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "Basisverzeichnis für freizugebende Dateien" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "An spezifisches Interface:Port binden" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "CGI Dateityp handler" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "CGI ist deaktiviert falls nicht vorhanden." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "Konfigurationsdatei (z.B. für Zugangssaten bei Basic Auth)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Verbindung wiederverwenden" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Land" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "Deaktiviere JSON-RPC Authorisitation via ubus session API" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "Folge keine Symlinks außerhalb Basisverzeichnis" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Generiere keine Verzeichnis Auflistung." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Basisverzeichnis" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "z.B. setze index.html und index.php falls PHP genutzt wird" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "Eingebetteter LUA-Interpreter ist deaktiviert falls nichvt verfügbar." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Aktiviere JSON-RPC Cross-Oritin Ressourcen Unterstüttung" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Dateien können nur in das Verzeichnis /etc/luci-uploads hochgeladen und " +"gespeichert werden." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" "Für Einstellung die tiefgreifender sind als über die Web UI einstellbar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Alle web Server Einstellunge" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Vollständiger Pfad für handler von LUA Scripten" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Allgemeine Einstellungen" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "Gewähre UCI Zugriff auf luci-app-uhttpd" +msgstr "UCI-Zugriff für luci-app-uhttpd erlauben" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "HTTP listener (Adresse:Port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS Zertifikat (DER oder PEM Format)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "privater HTTPS Schlüssel (DER oder PEM Format)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "HTTPS Listener (Adresse:Port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Wenn leer, wird bei der Zertifikatserstellung ein zufälliger/einmaliger Wert " +"verwendet" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Ignoriere private IPs auf öffentlichem Interface" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "Index Seite(n)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -143,39 +157,43 @@ msgstr "" "Zu Dateiendungen zugeordnete Interpreter ('suffix=handler', z.B. '.php=/usr/" "bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Länge des Keys in Bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "Ort" +msgstr "Standort" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Maximale Anzahl an Verbindungen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Maximale Anzahl an Skript-Anfragen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Maximale Wartezeit für LUA, CGI oder ubus Aufrufe" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Maximale Wartezeit für Netwerk" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organisation" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Überschreibe Pfade für ubus Socket" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Pfad Prexif für CGI-Skripte" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" @@ -183,50 +201,50 @@ msgstr "" "Verweigere Zugriff von privaten (RFC1918) IPs über ein Interface, das eine " "öffentliche IP Adresse hat" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "Realm für Basic Auth" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "Leite HTTP auf HTTPS um" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Entferne Konfiguration für Zertifikat und Key" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Entferne altes Zertifikat und Key" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Server Hostname" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" "Einstellungen die entweder kaum gebraucht werden, oder auch die WebUI " "beeinflussen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Zustand" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "Dies löscht das Zertifikat, Key und Konfiguration endgültig." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Gültig für # Tage" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -234,32 +252,32 @@ msgstr "" "Virtuelle URL oder CGI-Script um den Status '404 Not Found' anzuzueigen. " "Muss mit '/' beginnen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Virtuelles Pfad Prefix für LUA-Skripte" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Virtuelles Pfad Präfix für ubus per JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "Nutzt keine HTTP Authentifizierung falls nicht vorhanden" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "a.k.a CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "uHTTPd selbst-signierte Zertifikat Parameter" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -267,7 +285,7 @@ msgstr "" "uHTTPd generiert ein neues selbstsigniertes Zertifikat mit der unten " "gezeigten Konfiguration." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "ubus Integration ist deaktiviert falls nicht vorhanden" diff --git a/applications/luci-app-uhttpd/po/el/uhttpd.po b/applications/luci-app-uhttpd/po/el/uhttpd.po index 28097afe72..de93d38e3d 100644 --- a/applications/luci-app-uhttpd/po/el/uhttpd.po +++ b/applications/luci-app-uhttpd/po/el/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-04-25 16:36+0000\n" -"Last-Translator: george k <norhorn@gmail.com>\n" +"PO-Revision-Date: 2021-01-23 03:57+0000\n" +"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/el/>\n" "Language: el\n" @@ -10,252 +10,266 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Ρυθμίσεις για προχωρημένους" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "Γενικές ρυθμίσεις" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/en/uhttpd.po b/applications/luci-app-uhttpd/po/en/uhttpd.po deleted file mode 100644 index a6fed821f1..0000000000 --- a/applications/luci-app-uhttpd/po/en/uhttpd.po +++ /dev/null @@ -1,275 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Daniel F. Dickinson <cshored@theshore.com>\n" -"Language-Team: English\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 -msgid "" -"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" -msgstr "" -"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 -msgid "404 Error" -msgstr "404 Error" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 -msgid "A lightweight single-threaded HTTP(S) server" -msgstr "A lightweight single-threaded HTTP(S) server" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 -msgid "Advanced Settings" -msgstr "Advanced Settings" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 -msgid "Aliases" -msgstr "Aliases" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 -msgid "Base directory for files to be served" -msgstr "Base directory for files to be served" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" -msgstr "Bind to specific interface:port (by specifying interface address" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 -msgid "CGI filetype handler" -msgstr "CGI filetype handler" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 -msgid "CGI is disabled if not present." -msgstr "CGI is disabled if not present." - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 -msgid "Config file (e.g. for credentials for Basic Auth)" -msgstr "Config file (e.g. for credentials for Basic Auth)" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 -msgid "Connection reuse" -msgstr "Connection reuse" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 -msgid "Country" -msgstr "Country" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 -msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "Disable JSON-RPC authorization via ubus session API" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 -msgid "Do not follow symlinks outside document root" -msgstr "Do not follow symlinks outside document root" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 -msgid "Do not generate directory listings." -msgstr "Do not generate directory listings." - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 -msgid "Document root" -msgstr "Document root" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 -msgid "E.g specify with index.html and index.php when using PHP" -msgstr "E.g specify with index.html and index.php when using PHP" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 -msgid "Embedded Lua interpreter is disabled if not present." -msgstr "Embedded Lua interpreter is disabled if not present." - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 -msgid "Enable JSON-RPC Cross-Origin Resource Support" -msgstr "Enable JSON-RPC Cross-Origin Resource Support" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 -msgid "For settings primarily geared to serving more than the web UI" -msgstr "For settings primarily geared to serving more than the web UI" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 -msgid "Full Web Server Settings" -msgstr "Full Web Server Settings" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 -msgid "Full real path to handler for Lua scripts" -msgstr "Full real path to handler for Lua scripts" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 -msgid "General Settings" -msgstr "General Settings" - -#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 -msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -msgid "HTTP listeners (address:port)" -msgstr "HTTP listeners (address:port)" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 -msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 -msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "HTTPS listener (address:port)" -msgstr "HTTPS listener (address:port)" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 -msgid "Ignore private IPs on public interface" -msgstr "Ignore private IPs on public interface" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 -msgid "Index page(s)" -msgstr "Index page(s)" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 -msgid "" -"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" -"usr/bin/php-cgi')" -msgstr "" -"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" -"usr/bin/php-cgi')" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 -msgid "Length of key in bits" -msgstr "Length of key in bits" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 -msgid "Location" -msgstr "Location" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 -msgid "Maximum number of connections" -msgstr "Maximum number of connections" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 -msgid "Maximum number of script requests" -msgstr "Maximum number of script requests" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 -msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "Maximum wait time for Lua, CGI, or ubus execution" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 -msgid "Maximum wait time for network activity" -msgstr "Maximum wait time for network activity" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 -msgid "Override path for ubus socket" -msgstr "Override path for ubus socket" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 -msgid "Path prefix for CGI scripts" -msgstr "Path prefix for CGI scripts" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 -msgid "" -"Prevent access from private (RFC1918) IPs on an interface if it has an " -"public IP address" -msgstr "" -"Prevent access from private (RFC1918) IPs on an interface if it has an " -"public IP address" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 -msgid "Realm for Basic Auth" -msgstr "Realm for Basic Auth" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 -msgid "Redirect all HTTP to HTTPS" -msgstr "Redirect all HTTP to HTTPS" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 -msgid "Remove configuration for certificate and key" -msgstr "Remove configuration for certificate and key" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 -msgid "Remove old certificate and key" -msgstr "Remove old certificate and key" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 -msgid "Server Hostname" -msgstr "Server Hostname" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 -msgid "" -"Settings which are either rarely needed or which affect serving the WebUI" -msgstr "" -"Settings which are either rarely needed or which affect serving the WebUI" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 -msgid "State" -msgstr "State" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 -msgid "TCP Keepalive" -msgstr "TCP Keepalive" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 -msgid "This permanently deletes the cert, key, and configuration to use same." -msgstr "This permanently deletes the cert, key, and configuration to use same." - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 -msgid "Valid for # of Days" -msgstr "Valid for # of Days" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 -msgid "" -"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " -"with '/'" -msgstr "" -"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " -"with '/'" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 -msgid "Virtual path prefix for Lua scripts" -msgstr "Virtual path prefix for Lua scripts" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 -msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "Virtual path prefix for ubus via JSON-RPC integration" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 -msgid "Will not use HTTP authentication if not present" -msgstr "Will not use HTTP authentication if not present" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 -msgid "a.k.a CommonName" -msgstr "a.k.a CommonName" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 -#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 -msgid "uHTTPd" -msgstr "uHTTPd" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 -msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "uHTTPd Self-signed Certificate Parameters" - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 -msgid "" -"uHTTPd will generate a new self-signed certificate using the configuration " -"shown below." -msgstr "" -"uHTTPd will generate a new self-signed certificate using the configuration " -"shown below." - -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 -msgid "ubus integration is disabled if not present" -msgstr "ubus integration is disabled if not present" - -#~ msgid "HTTPS Certificate (DER Encoded)" -#~ msgstr "HTTPS Certificate (DER Encoded)" - -#~ msgid "HTTPS Private Key (DER Encoded)" -#~ msgstr "HTTPS Private Key (DER Encoded)" diff --git a/applications/luci-app-uhttpd/po/es/uhttpd.po b/applications/luci-app-uhttpd/po/es/uhttpd.po index 91b3485182..f651af760d 100644 --- a/applications/luci-app-uhttpd/po/es/uhttpd.po +++ b/applications/luci-app-uhttpd/po/es/uhttpd.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-10-31 10:05+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2024-09-05 13:29+0000\n" +"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/es/>\n" "Language: es\n" @@ -11,138 +11,153 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -"(/old/path=/new/path) o (just /old/path which becomes /cgi-prefix/old/path)" +"(/vieja/ruta=/nueva/ruta) o (solo /vieja/ruta que se convierte en /cgi-" +"prefix/vieja/ruta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Error 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Un servidor HTTP(S) liviano de un solo hilo" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Configuración avanzada" +msgstr "Ajustes avanzados" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Alias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "Directorio base para archivos a ser servidos" +msgstr "Directorio base para los archivos que se van a servir" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -"Enlace a una interfaz específica: puerto (especificando la dirección de la " -"interfaz" +"Vincula a una interfaz específica: puerto (especificando la dirección de la " +"interfaz)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "Controlador de tipo de archivo CGI" +msgstr "Manejador de tipo de archivo CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "CGI está desactivado si no está presente." +msgstr "CGI es desactivado si no está presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -"Archivo de configuración (por ejemplo, para credenciales para autenticación " +"Archivo de configuración (por ejemplo, para credenciales de autenticación " "básica)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "Reutilización de la conexión" +msgstr "Reutilización de conexión" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "País" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "Desactivar la autorización JSON-RPC a través de la API de sesión ubus" +msgstr "Desactivar autorización JSON-RPC a través de la API de sesión ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "No siga los enlaces simbólicos fuera de la raíz del documento" +msgstr "No siga enlaces simbólicos fuera de la raíz del documento" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "No generar listados de directorios." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Raíz del documento" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "Ej. especifique con index.html e index.php cuando use PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "El intérprete incorporado de Lua se desactiva si no está presente." +msgstr "El intérprete Lua integrado es desactivado si no está presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Activar el soporte de recursos de origen cruzado JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Los archivos solo se pueden cargar y guardar en el directorio /etc/luci-" +"uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -"Para configuraciones principalmente orientadas a servir más que la interfaz " -"de usuario web" +"Para ajustes orientados principalmente a servir más que la interfaz de " +"usuario web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "Configuración completa del servidor web" +msgstr "Ajustes completos del servidor web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "Ruta real completa al controlador para scripts Lua" +msgstr "Ruta real completa al manejador de scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Configuración general" +msgstr "Ajustes generales" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "Conceder acceso UCI para luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Escuchas HTTP (direccion:puerto)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "Certificado HTTPS (formato DER o PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "Clave privada HTTPS (formato DER o PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" -msgstr "Oyente HTTPS (dirección:puerto)" +msgstr "Escuchas HTTPS (dirección:puerto)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Si está vacío, se usa un valor aleatorio/único en la generación de " +"certificados" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "Ignorar las direcciones IP privadas en la interfaz pública" +msgstr "Ignorar IPs privadas en la interfaz pública" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "Página(s) de índice" +msgstr "Página(s) índice" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -150,92 +165,96 @@ msgstr "" "Intérprete para asociar con terminaciones de archivos ('sufijo=handler', por " "ejemplo, '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "Longitud de la clave en bits" +msgstr "Longitud de clave en bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "Ubicación" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Número máximo de conexiones" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Número máximo de solicitudes de script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Tiempo máximo de espera para la ejecución de Lua, CGI o ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Tiempo máximo de espera para la actividad de la red" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organización" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Anular ruta para ubus socket" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Prefijo de ruta para scripts CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -"Impedir el acceso desde direcciones IP privadas (RFC1918) en una interfaz si " +"Impide el acceso desde direcciones IP privadas (RFC1918) en una interfaz si " "tiene una dirección IP pública" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "Reino para la Autenticación Básica" +msgstr "Ámbito para la Autenticación Básica" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "Redirigir todos los HTTP a HTTPS" +msgstr "Redirigir todo el tráfico HTTP a HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Eliminar configuración para certificado y clave" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Eliminar certificado y clave antiguos" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Nombre de host del servidor" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -"Configuraciones que rara vez son necesarias o que afectan el servicio de la " -"WebUI" +"Ajustes que rara vez se necesitan o que afectan el funcionamiento de la " +"interfaz de usuario web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Estado" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "Mantener vivo TCP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" "Esto elimina permanentemente el certificado, la clave y la configuración " -"para usar el mismo." +"para su uso." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Válido por # de días" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -243,32 +262,32 @@ msgstr "" "URL virtual o script CGI para mostrar en el estado '404 No encontrado'. Debe " "comenzar con '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Prefijo de ruta virtual para scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Prefijo de ruta virtual para ubus a través de la integración JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "No utilizará la autenticación HTTP si no está presente" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "a.k.a Nombre común" +msgstr "También conocido como CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Parámetros del certificado autofirmado de uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -276,9 +295,9 @@ msgstr "" "uHTTPd generará un nuevo certificado autofirmado utilizando la configuración " "que se muestra a continuación." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "La integración de ubus está desactivada si no está presente" +msgstr "La integración de ubus es desactivada si no está presente" #~ msgid "HTTPS Certificate (DER Encoded)" #~ msgstr "Certificado HTTPS (DER codificado)" diff --git a/applications/luci-app-uhttpd/po/fi/uhttpd.po b/applications/luci-app-uhttpd/po/fi/uhttpd.po index ab0adba8e8..a1c3df1f8f 100644 --- a/applications/luci-app-uhttpd/po/fi/uhttpd.po +++ b/applications/luci-app-uhttpd/po/fi/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-05-21 18:50+0000\n" -"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n" +"PO-Revision-Date: 2023-10-18 05:43+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/fi/>\n" "Language: fi\n" @@ -10,252 +10,267 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.1\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "404-virhe" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Kevyt, yksisäikeinen HTTP(S)-palvelin" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Lisäasetukset" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Aliakset" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" -msgstr "" +msgstr "Asetustiedosto (esim. Basic Authin kirjautumistietoja varten)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Maa" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" +"Älä seuraa symbolisia linkkejä tiedostojen juurihakemiston ulkopuolelle" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Dokumenttien juurihakemisto" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Yleisasetukset" +msgstr "Yleiset asetukset" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Salli UCI-pääsy luci-app-uhttpd:lle" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "HTTP-kuuntelijat (osoite:portti)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS-varmenne (DER- tai PEM-muoto)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS:n yksityinen avain (DER- tai PEM-muoto)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "HTTPS-kuuntelija (osoite:portti)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Sijainti" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Yhteyksien enimmäismäärä" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Uudelleenohjaa kaikki HTTP-liikenne HTTPS:ksi" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Poista vanha varmenne ja avain" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Palvelimen isäntänimi" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "Tila" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/fr/uhttpd.po b/applications/luci-app-uhttpd/po/fr/uhttpd.po index c956d26f69..61c2e08b08 100644 --- a/applications/luci-app-uhttpd/po/fr/uhttpd.po +++ b/applications/luci-app-uhttpd/po/fr/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-06-24 17:41+0000\n" -"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"PO-Revision-Date: 2024-02-01 22:49+0000\n" +"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/fr/>\n" "Language: fr\n" @@ -10,139 +10,152 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/ancien/chemin=/nouveau/chemin) ou (juste /ancien/chemin qui devient/cgi-" "prefix/ancien/chemin)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Erreur 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Un serveur HTTP(S) léger à fil unique" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Paramètres avancés" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Alias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "Répertoire de base pour les fichiers à servir" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" "Lier à une interface:port spécifique (en spécifiant l’adresse d’interface" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "Gestionnaire de type de fichier CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "CGI est désactivé si non présent." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" "Fichier de configuration (par exemple, pour les informations " "d'identification basique)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Réutilisation de connexion" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Pays" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "Désactiver l’autorisation JSON-RPC via l'API de session ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "Ne pas suivre les liens symboliques en dehors de la racine du document" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Ne pas générer de listes de répertoire." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Racine de document" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" "Par ex. spécifiez avec index.html et index.php lors de l’utilisation de PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "L'interprète Lua intégré est désactivé si non présent." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Activer JSON-RPC Cross-Origin Resource Support" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Les fichiers ne peuvent être téléchargés et enregistrés que dans le " +"répertoire /etc/luci-uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" "Pour les paramètres principalement destinés à servir plus qu'une interface " "utilisateur web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Paramètres complets du serveur Web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Chemin réel complet vers le gestionnaire de scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Paramètres généraux" +msgstr "Réglages généraux" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "Accorder l’accès à l’UCI pour luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Écouteurs HTTP (adresse:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "Certificat HTTPS (format DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Clé Privée HTTPS (format DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "Écouteur HTTPS (adresse:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Si vide, une valeur aléatoire/unique est utilisée pour la génération Cert" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Ignorer les IPs privés sur l’interface publique" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "Page(s) d'index" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -150,39 +163,43 @@ msgstr "" "Interpréteur associé aux terminaisons de fichiers ('suffix=handler', p. ex. " "'.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Longueur de la clé en bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "Emplacement" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Nombre maximum de connexions" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Nombre maximum de requêtes de script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Temps d’attente maximal pour l’exécution de Lua, CGI ou ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Temps d’attente maximal pour l’activité du réseau" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organisation" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Chemin de remplacement pour la socket ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Préfixe de chemin pour les scripts CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" @@ -190,52 +207,52 @@ msgstr "" "Empêcher l’accès des IP privés (RFC1918) sur une interface si elle a une " "adresse IP publique" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "Domaine pour l'authentification de base" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "Rediriger HTTP vers HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Supprimer la configuration pour le certificat et la clé" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Supprimer l'ancien certificat et la clé" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Nom d’hôte de serveur" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" "Paramètres qui sont rarement nécessaires ou qui affectent le service de " "l'interface Web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "État" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" "Ceci supprime définitivement le certificat, la clé et la configuration à " "utiliser." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Valable pendant # jours" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -243,32 +260,32 @@ msgstr "" "URL virtuelle ou script CGI à afficher en cas de statut '404 Not Found'. " "Doit commencer par '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Préfixe de chemin virtuel pour les scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Préfixe de chemin virtuel pour ubus via l’intégration JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "N’utilisera pas l’authentification HTTP si elle n’est pas présente" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "alias CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Paramètres de certificat auto-signé uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -276,7 +293,7 @@ msgstr "" "uHTTPd générera un nouveau certificat auto-signé en utilisant la " "configuration indiquée ci-dessous." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "Intégration ubus désactivée si non présente" diff --git a/applications/luci-app-uhttpd/po/ga/uhttpd.po b/applications/luci-app-uhttpd/po/ga/uhttpd.po new file mode 100644 index 0000000000..7e5858bbb9 --- /dev/null +++ b/applications/luci-app-uhttpd/po/ga/uhttpd.po @@ -0,0 +1,300 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-09-06 19:05+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n" +"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/ga/>\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" +"n>6 && n<11) ? 3 : 4;\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/old/path=/new/path) nó (/old/path a thagann chun bheith /cgi-prefix/old/" +"path)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "404 Earráid" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "Freastalaí HTTP(S) éadrom aon-snáithe" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "Socruithe chun cinn" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "Ailiasanna" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "Eolaire bonn le haghaidh comhaid a bheidh le seirbheáil" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "" +"Ceangail le comhéadan sonrach: port (trí sheoladh an chomhéadain a shonrú)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "Láimhseálaí cineál comhaid CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "Tá CGI díchumasaithe mura bhfuil sé i láthair." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "Comhad cumraíochta (m.sh. le haghaidh dintiúir don Údar Bunúsach)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "Athúsáid ceangail" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "Tír" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "Díchumasaigh údarú JSON-RPC trí ubus session API" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "Ná lean naisc shimplí taobh amuigh de fhréamh an doiciméid" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "Ná gin liostaí eolaire." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "Fréamh doiciméad" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "E.g. sonraigh le index.html agus index.php agus PHP á úsáid" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "Díchumasaítear ateangaire leabaithe Lua mura bhfuil sé i láthair." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Cumasaigh Tacaíocht Acmhainne Tras-Thionscnaimh JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Ní féidir comhaid a uaslódáil agus a shábháil ach chuig an eolaire /etc/luci-" +"uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "" +"Do shuíomhanna atá dírithe go príomha ar fhreastal ar níos mó ná an " +"Chomhéadain Gréasáin" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "Socruithe Freastalaí Gréasáin Iomlán" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "Cosán iomlán fíor chuig an láimhseálaí le haghaidh scripteanna Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "Socruithe Ginearálta" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "Deonaigh rochtain UCI do luci-app-uhttpd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "Éisteoirí HTTP (address:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "Teastas HTTPS (formáid DER nó PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "Eochair Phríobháideach HTTPS (formáid DER nó PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "Éisteoir HTTPS(address:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Má tá sé folamh, úsáidtear luach randamach/uathúil i nginiúint teastas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "Déan neamhaird de IPanna príobháideacha ar chomhéadan poiblí" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "Leathanaigh innéacs(anna)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Ateangaire chun ceangal le deirí comhaid ('suffix=handler', e.g. '.php=/usr/" +"bin/php-cgi')" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "Fad an eochair i giotán" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "Suíomh" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "An líon uasta nasc" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "Líon uasta na n-iarratas scripte" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "Uasmhéid ama feithimh do chur i gcrích Lua, CGI, nó ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "Uasmhéid ama feithimh do ghníomhaíocht líonra" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Eagraíocht" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "Sáraigh cosán le haghaidh soicéad ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "Réimír conair do scripteanna CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Cosc a chur ar rochtain ó IPanna príobháideacha (RFC1918) ar chomhéadan má " +"tá seoladh IP poiblí aige" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "Ríocht don Údar Bunúsach" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "Atreorú gach HTTP go HTTPS" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "Bain cumraíocht don teastas agus eochair" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "Bain an seanteastas agus eochair" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "Óstainm Freastalaí" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Socruithe is annamh a bhíonn ag teastáil nó a chuireann isteach ar fhreastal " +"ar an WebUI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "Stáit" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "TCP Coinnigh Beo" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" +"Scriosann sé seo an teastas, an eochair agus an chumraíocht chun é a úsáid." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "Bailí ar feadh # de Lá" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"URL fíorúil nó script CGI le taispeáint ar an stádas '404 Gan Aimsiú'. Ní " +"mór tosú le '/'" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "Réimír cosán fíorúil le haghaidh scripteanna Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "Réimír cosáin fhíorúil le haghaidh ubus trí chomhtháthú JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "Ní úsáidfear fíordheimhniú HTTP mura bhfuil sé i láthair" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "a.k.a Ainm Coitianta" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "uHTTPd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "uHTTPd Paraiméadair Deimhnithe Féin-shínithe" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"Ginfidh uHTTPd teastas nua féin-shínithe ag baint úsáide as an gcumraíocht a " +"thaispeántar thíos." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "tá comhtháthú ubus díchumasaithe mura bhfuil sé i láthair" + +#~ msgid "HTTPS Certificate (DER Encoded)" +#~ msgstr "HTTPS Certificate (DER Encoded)" + +#~ msgid "HTTPS Private Key (DER Encoded)" +#~ msgstr "HTTPS Private Key (DER Encoded)" diff --git a/applications/luci-app-uhttpd/po/he/uhttpd.po b/applications/luci-app-uhttpd/po/he/uhttpd.po index 38d3586c83..196358fd5d 100644 --- a/applications/luci-app-uhttpd/po/he/uhttpd.po +++ b/applications/luci-app-uhttpd/po/he/uhttpd.po @@ -1,260 +1,276 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-09-07 05:53+0000\n" +"Last-Translator: Oren Bahar <shavitbit@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/he/>\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "הגדרות מתקדמות" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "הגדרות כלליות" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/hi/uhttpd.po b/applications/luci-app-uhttpd/po/hi/uhttpd.po index f6539ee098..aad49482d9 100644 --- a/applications/luci-app-uhttpd/po/hi/uhttpd.po +++ b/applications/luci-app-uhttpd/po/hi/uhttpd.po @@ -1,106 +1,114 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2024-07-06 11:32+0000\n" +"Last-Translator: Sathvic <sathvic.p@gmail.com>\n" +"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/hi/>\n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "उन्नत सेटिंग्स" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "" @@ -108,152 +116,160 @@ msgstr "" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/hu/uhttpd.po b/applications/luci-app-uhttpd/po/hu/uhttpd.po index b05e179c9e..a358eb776f 100644 --- a/applications/luci-app-uhttpd/po/hu/uhttpd.po +++ b/applications/luci-app-uhttpd/po/hu/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-03-28 04:46+0000\n" -"Last-Translator: Gergő Szalka <kisszalimo@gmail.com>\n" +"PO-Revision-Date: 2024-08-17 19:21+0000\n" +"Last-Translator: hmzs <hmzs@1szer1.hu>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/hu/>\n" "Language: hu\n" @@ -10,254 +10,292 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 5.7\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/régi/útvonal=/új/útvonal) vagy (csak: /régi/útvonal amiből /cgi-prefix/ré" +"gi/útvonal lesz)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "404 Hiba" +msgstr "404-es Hiba" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Kis erőforrás igényű, egyszálú HTTP(S) szerver" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Speciális beállítások" +msgstr "Haladó beállítások" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "Aliasok" +msgstr "Álnevek" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Fájlok alapkönyvtára a kiszolgálón" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" -msgstr "" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "Használat a megadott csatoló címéhez (cím:port) kötött" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "CGI fájltípus kezelő" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" +"<abbr title=\\\"Közös átjáró felület (Common Gateway Interface)\\\">CGI</" +"abbr> letiltva, ha nincs megadva." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" -msgstr "" +msgstr "Konfigurációs fájl (pl.: alapszintű hitelesítési adatok)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Kapcsolódás elutasítva" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Ország" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" +"\"Tiltsa le a <abbr title=\\\"JavaScript objektum jelölésrendszer - Távoli " +"eljáráshívás (JavaScript Object Notation-Remote Procedure Call)\\\">JSON-" +"RPC</abbr>-t az ubus munkamenet <abbr title=\\\"Alkalmazásprogramozási " +"felület (Application Programming Interface)\\\">API</abbr>-n keresztül\"" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Ne kövesse a szimbolikus hivatkozásokat a gyökérkönyvtáron kívül" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Ne hozzon létre könyvtárlistát." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "Dokumentum forrása" +msgstr "Gyökérkönyvtár" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "" +msgstr "Például: PHP használatakor index.html és/vagy index.php" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "A beágyazott Lua fordító letiltva, ha nincs megadva." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" +"<abbr title=\\\"JavaScript objektum jelölésrendszer - Távoli eljáráshívás (" +"JavaScript Object Notation-Remote Procedure Call)\\\">JSON-RPC</abbr> <abbr " +"title=\\\"Forrásközi erőforrás-megosztás (Cross-Origin Resource Sharing)\\\"" +">CORS</abbr> engedélyezése" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "A fájlok feltöltése és mentése csak /etc/luci-uploads könyvtárba." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" -msgstr "" +msgstr "A webes kezelőfelület alapvető működésén túlmutató beállítások" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "Összes webszerver beállítás" +msgstr "További webszerver beállítások" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Teljes elérési (abszolút) útvonal a Lua szkriptek kezelőjéhez" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Általános beállítások" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" +"<abbr title=\\\"Egységes konfigurációs felület (Unified Configuration " +"Interface)\\\">UCI</abbr> hozzáférés luci-app-uhttpd számára" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "Figyelt HTTP cím és port (IP:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS tanúsítvány (DER vagy PEM formátum)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS privát kulcs (DER vagy PEM formátum)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "Figyelt HTTPS cím és port (IP:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" +"Ha üres, véletlenszerű/egyedi érték kerül felhasználásra a tanúsítvány " +"létrehozásakor" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Privát IP-címek figyelmen kívül hagyása a nyilvános csatolón" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "Nyitóoldal(ak)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Parancsértelmező a különböző fájlvégződésekhez ('kiterjesztés=értelmező', " +"pl. '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Kulcshossz bitekben" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Hely" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Kapcsolatok maximális száma" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Szkript lekérdezések maximális száma" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Maximális várakozási idő a Lua, CGI és ubus végrehajtására" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Maximális hálózati várakozási idő" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Szervezet" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Útvonal felülírása az ubus-hoz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "CGI szkriptek útvonala" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Privát (RFC1918) IP-címekről való hozzáférés megakadályozása egy csatolón, " +"ha annak nyilvános IP-címe van" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Alapszintű hitelesítés tartománya" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "HTTP átirányítása HTTPS-re" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Távolítsa el a tanúsítvány és a kulcs konfigurációját" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Távolítsa el a régi tanúsítványt és kulcsot" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Szerver gépneve" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" +"A webes kezelőfelület ritkán használt, illetve részletes beállítási " +"lehetőségei" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Állapot" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP kapcsolat életben tartása" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -"Ez véglegesen törli a tanúsítványt, a kulcsot és a beállításokat ugyanannak " -"a használatához." +"Véglegesen törli a tanúsítványt, a kulcsot és a beállításokat, hogy " +"egységeset használhasson." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Érvényes # napig" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"„404 - nem található” állapot esetén megjelenítendő látszólagos URL vagy CGI-" +"szkript útvonal ('/' karakterrel kell kezdődnie)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Lua szkriptek látszólagos elérési útvonal előtagja" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "JSON-RPC integrációs ubus látszólagos elérési útvonal előtagja" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Nem használja a HTTP-hitelesítést, ha nincs megadva" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "azaz általános név (CommonName)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "uHTTPd Önaláírt Tanúsítvány Értékei" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." -msgstr "" +msgstr "Az uHTTPd új önaláírt tanúsítványt hoz létre az alábbi beállításokkal." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "ubus integráció le van tiltva, ha nincs megadva" diff --git a/applications/luci-app-uhttpd/po/id/uhttpd.po b/applications/luci-app-uhttpd/po/id/uhttpd.po new file mode 100644 index 0000000000..a18b8b5b6e --- /dev/null +++ b/applications/luci-app-uhttpd/po/id/uhttpd.po @@ -0,0 +1,295 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2023-08-31 08:31+0000\n" +"Last-Translator: Charles03010 <charles03010@gmail.com>\n" +"Language-Team: Indonesian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/id/>\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.0.1-dev\n" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/old/path=/new/path) atau (hanya /old/path yang menjadi /cgi-prefix/old/" +"path)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "404 Kesalahan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "Server HTTP(S) utas tunggal yang ringan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "Setelan Lanjutan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "Alias" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "Direktori dasar untuk file yang akan ditampilkan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "Ikat ke antarmuka tertentu:port (dengan menentukan alamat antarmuka" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "Penangan tipe file CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "CGI dinonaktifkan jika tidak ada." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "File konfigurasi (misalnya untuk kredensial untuk Auth Dasar)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "Penggunaan kembali sambungan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "Negara" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "Nonaktifkan otorisasi JSON-RPC melalui API sesi ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "Jangan ikuti symlink di luar root dokumen" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "Jangan buat daftar direktori." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "Akar dokumen" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "" +"Misalnya, tentukan dengan index.html dan index.php saat menggunakan PHP" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "Penerjemah Lua tertanam dinonaktifkan jika tidak ada." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Aktifkan Dukungan Sumber Daya Lintas Asal JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "File hanya dapat diunggah dan disimpan pada folder /etc/luci-uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "Untuk pengaturan terutama diarahkan untuk melayani lebih dari UI web" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "Pengaturan Server Web Lengkap" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "Jalur nyata penuh ke penangan untuk skrip Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "Setelan Umum" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "Berikan akses UCI untuk luci-app-uhttpd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "Pendengar HTTP (alamat:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "Sertifikat HTTPS (format DER atau PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "Kunci Pribadi HTTPS (format DER atau PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "Pendengar HTTPS (alamat:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Jika kosong, nilai acak/unik digunakan dalam pembuatan sertifikat" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "Abaikan IP pribadi pada antarmuka publik" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "Halaman indeks" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Penerjemah untuk diasosiasikan dengan akhiran file ('suffix=penangan', " +"misalnya '.php=/usr/bin/php-cgi')" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "Panjang kunci dalam bit" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "Lokasi" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "Jumlah koneksi maksimum" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "Jumlah maksimum permintaan skrip" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "Waktu tunggu maksimum untuk eksekusi Lua, CGI, atau ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "Waktu tunggu maksimum untuk aktivitas jaringan" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organisasi" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "Ganti jalur untuk soket ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "Awalan jalur untuk skrip CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Cegah akses dari IP pribadi (RFC1918) pada antarmuka jika memiliki alamat IP " +"publik" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "Ranah untuk Auth Dasar" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "Alihkan semua HTTP ke HTTPS" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "Hapus konfigurasi untuk sertifikat dan kunci" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "Hapus sertifikat dan kunci lama" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "Nama Host Peladen" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Pengaturan yang jarang diperlukan atau yang mempengaruhi penyajian WebUI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "Provinsi" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "TCP Keepalive" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" +"Ini secara permanen menghapus sertifikat, kunci, dan konfigurasi untuk " +"digunakan sama." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "Berlaku untuk # Hari" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"URL virtual atau skrip CGI untuk ditampilkan pada status '404 Tidak " +"Ditemukan'. Harus dimulai dengan '/'" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "Awalan jalur virtual untuk skrip Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "Awalan jalur virtual untuk ubus melalui integrasi JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "Tidak akan menggunakan otentikasi HTTP jika tidak ada" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "alias NamaUmum" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "uHTTPd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "Parameter Sertifikat yang Ditandatangani uHTTPd Sendiri" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"uHTTPd akan membuat sertifikat baru yang ditandatangani sendiri menggunakan " +"konfigurasi yang ditunjukkan di bawah ini." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "integrasi ubus dinonaktifkan jika tidak ada" + +#~ msgid "HTTPS Certificate (DER Encoded)" +#~ msgstr "HTTPS Certificate (DER Encoded)" + +#~ msgid "HTTPS Private Key (DER Encoded)" +#~ msgstr "HTTPS Private Key (DER Encoded)" diff --git a/applications/luci-app-uhttpd/po/it/uhttpd.po b/applications/luci-app-uhttpd/po/it/uhttpd.po index 10a9567995..96941e0367 100644 --- a/applications/luci-app-uhttpd/po/it/uhttpd.po +++ b/applications/luci-app-uhttpd/po/it/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-11-12 02:29+0000\n" -"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n" +"PO-Revision-Date: 2024-04-19 13:18+0000\n" +"Last-Translator: ettore <hettore.giacomini@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/it/>\n" "Language: it\n" @@ -10,252 +10,294 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/vecchio/percorso=/nuovo/percorso) o (solo /vecchio/percorso che diventa /" +"cgi-prefix/vecchio/percorso)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "Errore 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Un server HTTP(S) leggero a thread singolo" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Impostazioni Avanzate" +msgstr "Impostazioni avanzate" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Alias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Cartella di base per i file da servire" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" +"Associa ad una specifica interfaccia:porta (specificando l'indirizzo " +"dell'interfaccia" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "Gestore del tipo di file CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "CGI è disabilitato se non presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" +"File di configurazione (ad es. per le credenziali per l'autenticazione di " +"base)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Riutilizzo della connessione" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Nazione" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "" +msgstr "Disabilitare l'autorizzazione JSON-RPC tramite l'API di sessione ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" +"Non seguire i collegamenti simbolici al di fuori della cartella principale " +"dei documenti" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Non generare elenchi nelle cartelle." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Cartella principale dei documenti" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" +"Per esempio, specificare con index.html e index.php quando si utilizza PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "L'interprete Lua incorporato è disabilitato se non presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Abilita supporto risorse cross-origine JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." msgstr "" +"I file possono essere caricati e salvati solo nella cartella /etc/luci-" +"uploads." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"Per le impostazioni orientate principalmente a servire più dell'interfaccia " +"utente web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Impostazioni complete del server web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Percorso reale completo per il gestore per gli script Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Impostazioni generali" +msgstr "Impostazioni Generali" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Concedere l'accesso UCI per luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "Listener HTTP (indirizzo:porta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "Certificato HTTPS (formato DER o PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Chiave privata HTTPS (formato DER o PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "Listener HTTPS (indirizzo:porta)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" +"Se vuoto, nel generare il certificato viene utilizzato un valore casuale/" +"unico" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Ignorare gli IP privati sull'interfaccia pubblica" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "Pagina(e) di indice" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Interprete da associare ai suffissi dei file ('suffisso=gestore', es. '.php=/" +"usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Lunghezza della chiave in bit" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Posizione" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Numero massimo di connessioni" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Numero massimo di richieste di script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Tempo massimo di attesa per l'esecuzione di Lua, CGI o ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Tempo massimo di attesa per l'attività di rete" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organizzazione" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Sovrascrivere il percorso per il socket ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "Prefisso del percorso per gli script CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Impedire l'accesso da IP privati (RFC1918) su un'interfaccia se dispone di " +"un indirizzo IP pubblico" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Dominio di protezione per l'autenticazione di base" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Reindirizzare tutto HTTP a HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Rimuovere la configurazione per certificato e chiave" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Rimuovere il vecchio certificato e la chiave" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Nome host del server" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" +"Impostazioni che sono necessarie raramente o che influiscono sul servizio " +"dell'interfaccia utente web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Stato" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"In questo modo vengono eliminati in modo permanente il certificato, la " +"chiave e la configurazione." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Valido per # giorni" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"URL virtuale o script CGI da visualizzare sullo stato '404 Non trovato'. " +"Deve iniziare con '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Prefisso del percorso virtuale per gli script Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" +"Prefisso del percorso virtuale per ubus tramite l'integrazione JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Non utilizzerà l'autenticazione HTTP se non presente" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "alias CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "Parametri del certificato autofirmato (self-signed) uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd genererà un nuovo certificato autofirmato (self-signed) utilizzando " +"la configurazione mostrata di seguito." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "L'integrazione ubus è disabilitata se non presente" diff --git a/applications/luci-app-uhttpd/po/ja/uhttpd.po b/applications/luci-app-uhttpd/po/ja/uhttpd.po index 589dea9198..fd802a7af8 100644 --- a/applications/luci-app-uhttpd/po/ja/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ja/uhttpd.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-11-14 12:48+0000\n" -"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" +"PO-Revision-Date: 2024-03-28 23:40+0000\n" +"Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/ja/>\n" "Language: ja\n" @@ -11,132 +11,146 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 5.5-dev\n" "X-Poedit-Basepath: .\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" -msgstr "(/old/path=/new/path)または(/cgi-prefix/old/path になる /old/path のみ)" +msgstr "" +"(/old/path=/new/path)または(/cgi-prefix/old/path になる /old/path のみ)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "404 エラー" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "軽量なシングルスレッド HTTP(S)サーバーです" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "詳細設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "エイリアス" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "サーバーがホストするファイルのベースディレクトリです。" +msgstr "サーバーがホストするファイルのベースディレクトリ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" -msgstr "インターフェースのアドレスを用いて、特定の インターフェース:ポートにバインドします" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "" +"インターフェースのアドレスを用いて、特定の インターフェース:ポートにバインド" +"します" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "CGIファイル形式 ハンドラー" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "指定しない場合、CGIは無効になります。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "設定ファイル(例: 基本認証用の資格情報)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "接続の再使用" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "国" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "ubus セッションAPI経由のJSON-RPC認証を無効にする" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "ドキュメント ルート外へのシンボリックリンクを追随しない" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "ディレクトリの待ち受けを生成しない" +msgstr "ディレクトリのリッスンを生成しない。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "ドキュメント ルート" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "index.html や、PHPを使用しているときは index.php を設定します。" +msgstr "index.html や、PHPを使用しているときは index.php を設定します" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "指定しない場合、組込 Lua インタープリタは無効になります。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" -msgstr "" +msgstr "JSON-RPC クロスオリジンサポートを有効にする" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "ファイルは /etc/luci-uploads " +"ディレクトリにのみアップロードおよび保存できます。" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" -msgstr "主に、Web UI以上のものを提供することを対象とした設定です。" +msgstr "主に、Web UI以上のものを提供することを対象とした設定です" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "完全なWebサーバー設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Lua スクリプト用ハンドラへの絶対パス" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "一般設定" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "luci-app-uhttpd に UCI アクセスを許可" +msgstr "luci-app-uhttpdにUCIアクセスを許可" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "HTTP 待ち受け(アドレス:ポート)" +msgstr "HTTP リッスン(アドレス:ポート)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS 証明書(DER または PEM 形式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS 秘密鍵(DER または PEM 形式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" -msgstr "HTTPS 待ち受け(アドレス:ポート)" +msgstr "HTTPS リッスン(アドレス:ポート)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "空の場合、ランダム/一意の値が証明書の生成に使用されます" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "公開側インターフェースでのプライベートIPを無視する" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "インデックス ページ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -144,129 +158,131 @@ msgstr "" "ファイル拡張子に関連付けるインタープリタです。('suffix=handler'、例: '.php=/" "usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "鍵のビット数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "市区町村" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "最大接続数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "スクリプトの最大リクエスト数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "LuaやCGI、ubus実行の最大待機時間" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "ネットワークアクティビティの最大待機時間" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "組織" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "ubus ソケットのパスを上書きする" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "CGI スクリプトのパスプレフィクス" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" -msgstr "" -"グローバル IPアドレスを持つインターフェースでは、プライベート IP (RFC1918) か" -"らのアクセスをブロックします。" +msgstr "グローバル IPアドレスを持つインターフェースでは、プライベート IP (RFC1918) " +"からのアクセスをブロックします" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "基本認証の領域名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "すべての HTTP を HTTPS にリダイレクトする" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "証明書と鍵の設定を削除する" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "古い証明書と鍵を削除する" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "サーバー ホスト名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" -msgstr "まれに必要とされる設定、または Web UI の提供に影響する設定です。" +msgstr "まれに必要とされる設定、または Web UI の提供に影響する設定です" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "状態" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "TCP キープアライブ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." -msgstr "" +msgstr "証明書、キー、およびそれらを使用する構成が完全に削除されます。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "有効日数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" -msgstr "" -"'404 Not Found' ステータスを表示するための仮想 URL または CGI スクリプトで" -"す。 '/' から始まる必要があります。" +msgstr "'404 Not Found' ステータスを表示するための仮想 URL または CGI " +"スクリプトです。 '/' から始まる必要があります" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Lua スクリプトへの仮想パスプレフィクス" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "JSON-RPC 統合による ubus の仮想パス プレフィックス" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "指定しない場合、HTTP 認証は使用されません。" +msgstr "指定しない場合、HTTP 認証は使用されません" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "共通名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "uHTTPd 自己署名証明書 パラメーター" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "uHTTPd は、下に表示されている設定で新しい自己署名証明書を生成します。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "指定しない場合、ubus 統合は無効になります。" +msgstr "指定しない場合、ubus 統合は無効になります" #~ msgid "HTTPS Certificate (DER Encoded)" #~ msgstr "HTTPS 証明書(DER エンコード)" diff --git a/applications/luci-app-uhttpd/po/ko/uhttpd.po b/applications/luci-app-uhttpd/po/ko/uhttpd.po index 19c50f39a5..e97638dc42 100644 --- a/applications/luci-app-uhttpd/po/ko/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ko/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-04-19 00:53+0000\n" -"Last-Translator: EP45 <monadko98@gmail.com>\n" +"PO-Revision-Date: 2022-08-01 05:54+0000\n" +"Last-Translator: somni <me@somni.one>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/ko/>\n" "Language: ko\n" @@ -10,252 +10,266 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.0.2-dev\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "고급 설정" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "기본 설정" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "상태" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/lt/uhttpd.po b/applications/luci-app-uhttpd/po/lt/uhttpd.po new file mode 100644 index 0000000000..a6eb911638 --- /dev/null +++ b/applications/luci-app-uhttpd/po/lt/uhttpd.po @@ -0,0 +1,310 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-09-26 17:16+0000\n" +"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/lt/>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/senas/kelias=/naujas/kelias) arba (tik /senas/kelias, kuris tampa /cgi-" +"prefix/senas/kelias)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "Klaida – 404" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "Lengvai veikiantis vienos gijos – „HTTP(S)“ serveris" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "Pažangūs nustatymai" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "Pseudonimai" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "Duomenyno katalogas/vietovė, skirtas aptarnauti failus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "" +"Pririšti į savitąją sąsaja ir/arba sietuvą: prievadas/-ą (nurodant sąsajos " +"ir/arba sietuvo adresą)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "Tipinė tinklo tarpuvartės; kompiuterijos sąsajos failo tipo doroklė" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "" +"Tipinė tinklo tarpuvartės; kompiuterijos sąsaja yra išjungta/išgalinta, jei " +"jos nėra." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "Konfigūracijos failas (pvz: autentifikavimui duomenys)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "Pakartotinis ryšio naudojimas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "Šalis" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "" +"Išjungti/Neįgalinti – „JSON-RPC“ prieigos teisių suteikimą, per – „Ubus“ " +"seanso „API“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "Nesekti – „symlinks“ už dokumento šaknies ribų („root“)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "Negeneruoti katalogų/vietovių spaudinius." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "Dokumento šaknis („root“)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "Pvz: nurodyti su „index.html“ ir „index.php“, kai naudojamas „PHP“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "" +"Įterptasis – „Lua“ interpretatorius yra išjungtas/neįgalintas, jei jo nėra." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Įjungti/Įgalinti – „JSON-RPC“, įvairių šaltinių išteklių palaikymą" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Failus galima įkelti ir išsaugoti, tik – „/etc/luci-uploads“ kataloge/" +"vietovėje." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "" +"Nustatymams, pirmiausiai pritaikytiems tarnauti daugiau nei žiniatinklio " +"naudotojo/vartotojo sąsaja" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "Pilno tinklo serverio nustatymai" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "Pilnas, tikras kelias į – „Lua“, skriptų doroklė" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "Bendri nustatymai" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "Suteikti „UCI“ prieigą – „luci-app-uhttpd“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "„HTTP“ laukiantys prisijungimo/jungties ryšio (adresas:prievadas)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "„HTTPS“ sertifikatas („DER“ arba „PEM“ formatas)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "Privatus „HTTPS“ raktas („DER“ arba „PEM“ formatas)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "„HTTP“ laukiantis prisijungimo/jungties ryšio (adresas:prievadas)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Jeigu tuščias, atsitiktinė/išskirtinė reikšmė yra naudojama sertifikato " +"generavime" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "Ignoruoti privačius „IP“ adresus viešuose sąsajose" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "Indeksuoti puslapį/-us" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Interpretatorius, skirtas susieti su failų galūnėmis – („suffix=handler“, " +"pvz.:, „.php=/usr/bin/php-cgi“)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "Rakto ilgis bitais" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "Vietovė" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "Maksimalus prisijungimų skaičius" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "Maksimalus skripto prašymų skaičius" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "" +"Maksimalus „Lua“, tipinės tinklo tarpuvartės; kompiuterijos sąsajos („CGI“) " +"ar „ubus“ vykdymo laukimo laikas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "Maksimalus laukimo laikas tinklo aktyvumui" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organizacija" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "Perrašyti „ubus socket“ kelią" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "" +"Tipinės tinklo tarpuvartės; kompiuterijos sąsajos skriptų kelio prielinksnis/" +"priešdėlis" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Uždrausti prieigą iš privačių („RFC1918“) IP(dgs.) veikiančių sąsajoje, " +"jeigu ji/-s turi viešąjį IP adresą" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "Valda/Sritis, bazinei autenfikacijai" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "Peradresuoti visus „HTTP“ į „HTTPS“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "Pašalinti konfigūracija sertifikatui ir raktui" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "Pašalinti seną sertifikatą ir raktą" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "Serverio įrenginio (t.y skleidėjo/vedėjo) pavadinimas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Nustatymai kurie yra retai reikiama arba paveikia tinklo naudotojo/vartotojo " +"sąsajos („WebUI“) aptarnavimą" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "Būklė" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "„TCP Laikyti gyvą/reaguojantį“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" +"Tai visam laikui pašalins sertifikatą, raktą ir konfigūracija, norint " +"naudoti tokį pat." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "Tinkamas tiek # iš aniek dienų" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"Virtualus „URL – Saitas“ arba tipinės tinklo tarpuvartės; kompiuterijos " +"sąsajos skriptas, kad rodytų būklėje – „404 Nerasta/-s“. Privalo prasidėti " +"su – /" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "Virtualus kelio prielinksnis/priešdėlis „Lua“ skriptams" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "" +"Virtualus kelio prielinksnis/priešdėlis „ubus“ per „JSON-RPC“ integraciją" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "Nenaudos „HTTP“ autentifikavimo, jei nėra pasiekiamas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "t.y Dažnas pavadinimas" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "„uHTTPd“" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "„uHTTPd“ savarankiškai pasirašyto sertifikato parametrai" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"„uHTTPd“ sugeneruos naują savarankiškai pasirašytą sertifikatą, naudojant " +"konfigūracija parodyta žemyn." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "„ubus“ integracija yra išjungta, jeigu jos nėra" diff --git a/applications/luci-app-uhttpd/po/mr/uhttpd.po b/applications/luci-app-uhttpd/po/mr/uhttpd.po index 93362c5e15..bded63db4b 100644 --- a/applications/luci-app-uhttpd/po/mr/uhttpd.po +++ b/applications/luci-app-uhttpd/po/mr/uhttpd.po @@ -12,97 +12,103 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "प्रगत सेटिंग्ज" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "सामान्य सेटिंग्ज" @@ -110,152 +116,160 @@ msgstr "सामान्य सेटिंग्ज" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "स्थिती" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/ms/uhttpd.po b/applications/luci-app-uhttpd/po/ms/uhttpd.po index cb2698fe81..300b31670c 100644 --- a/applications/luci-app-uhttpd/po/ms/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ms/uhttpd.po @@ -1,106 +1,114 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" +"Last-Translator: Faruki Ramly <farukiramly45@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/ms/>\n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "Tetapan Lanjutan" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "" @@ -108,152 +116,160 @@ msgstr "" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/nb_NO/uhttpd.po b/applications/luci-app-uhttpd/po/nb_NO/uhttpd.po index 3803e8e1ea..351cfe761c 100644 --- a/applications/luci-app-uhttpd/po/nb_NO/uhttpd.po +++ b/applications/luci-app-uhttpd/po/nb_NO/uhttpd.po @@ -1,259 +1,275 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-01-09 07:00-0500\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2023-02-28 10:31+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/nb_NO/>\n" "Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.16-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "404-feil" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "" +msgstr "Avanserte innstillinger" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" -msgstr "" +msgstr "Land" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "Generelle innstillinger" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "Tilstand" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/nl/uhttpd.po b/applications/luci-app-uhttpd/po/nl/uhttpd.po new file mode 100644 index 0000000000..6cd38aba3e --- /dev/null +++ b/applications/luci-app-uhttpd/po/nl/uhttpd.po @@ -0,0 +1,272 @@ +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-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "" diff --git a/applications/luci-app-uhttpd/po/pl/uhttpd.po b/applications/luci-app-uhttpd/po/pl/uhttpd.po index 9c6b60bff9..0cd23e9427 100644 --- a/applications/luci-app-uhttpd/po/pl/uhttpd.po +++ b/applications/luci-app-uhttpd/po/pl/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-08-06 15:32+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2024-06-27 14:44+0000\n" +"Last-Translator: Piotr Kołtun <pkoltungm@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/pl/>\n" "Language: pl\n" @@ -11,259 +11,274 @@ msgstr "" "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" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -"(/old/path=/new/path) lub (just /old/path which becomes /cgi-prefix/old/path)" +"(/stara/ścieżka=/nowa/ścieżka) lub (po prostu /stara/ścieżka, która staje " +"się /cgi-prefix/stara/ścieżka)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Błąd 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Lekki, jednowątkowy serwer HTTP(S)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Aliasy" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "Katalog bazowy dla plików, które mają być obsługiwane" +msgstr "Katalog podstawowy plików do udostępnienia" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" -msgstr "" -"Powiązanie z określonym interfejsem:portem (poprzez określenie adresu " -"interfejsu)" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "Powiąż z interfejs:port (poprzez określenie adresu interfejsu)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "Obsługa plików CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "CGI jest wyłączony, jeśli nie jest obecny." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" "Plik konfiguracyjny (np. dla danych uwierzytelniających dla Basic Auth)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Ponowne użycie połączenia" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Kraj" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "Wyłącz autoryzację JSON-RPC poprzez interfejs API dla sesji ubus" +msgstr "Wyłącz autoryzację JSON‑RPC poprzez interfejs API dla sesji ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "Nie należy podążać za symlinkami poza źródłem dokumentu" +msgstr "Nie podążaj za dowiązaniami symbolicznymi poza katalogiem głównym" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Nie generuj listy katalogów." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "Źródło dokumentu" +msgstr "Katalog główny" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "Np. podając z index.html i index.php podczas używania PHP" +msgstr "Np. określ za pomocą index.html i index.php podczas używania PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "Wbudowany tłumacz Lua jest wyłączony, jeśli nie jest obecny." +msgstr "Wbudowany interpreter Lua jest wyłączony, jeśli go nie ma." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" -msgstr "Włącz obsługę zasobów JSON-RPC Cross-Origin Resource Support" +msgstr "Włącz obsługę zasobów między źródłami JSON‑RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "Pliki można przesyłać i zapisywać tylko w katalogu /etc/luci-uploads." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -"W przypadku ustawień nastawionych głównie na obsługę więcej niż interfejsu " -"WWW" +"Ustawienia przeznaczone do obsługi więcej niż tylko interfejsu WWW " +"użytkownika" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Pełne ustawienia serwera WWW" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Pełna ścieżka do obsługi skryptów Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Ustawienia główne" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "Udziel dostępu UCI do luci-app-uhttpd" +msgstr "Przyznaj luci-app-uhttpd dostęp do UCI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Nasłuch HTTP (adres:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "Certyfikat HTTPS (format DER lub PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "Klucz prywatny HTTPS (format DER lub PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "Nasłuch HTTPS (adres:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Jeśli puste, podczas generowania certyfikatu używana jest losowa/unikalna " +"wartość" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Ignoruj prywatne adresy IP na interfejsie publicznym" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "Strona(y) indeksowa(e)" +msgstr "Strona(-y) index.*" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -"Interpreter do kojarzenia z zakończeniami plików ('suffix=handler', e.g. '." -"php=/usr/bin/php-cgi')" +"Interpreter rozszerzeń plików ('suffix=handler', np. '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Długość klucza w bitach" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "Lokalizacja" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Maksymalna liczba połączeń" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Maksymalna liczba żądań skryptu" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Maksymalny czas oczekiwania na wykonanie Lua, CGI lub ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "Maksymalny czas oczekiwania na aktywność w sieci" +msgstr "Maksymalny czas oczekiwania na aktywność sieci" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organizacja" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Ścieżka obejścia dla gniazda ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Prefiks ścieżki dla skryptów CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -"Zapobiegaj dostępowi z prywatnych (RFC1918) adresów IP w interfejsie, jeśli " -"ma on publiczny adres IP" +"Zapobiegaj dostępowi z prywatnych (RFC1918) adresów IP do interfejsu z " +"publicznym adresem IP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "Strefa dla podstawowej autoryzacji" +msgstr "Domena do uwierzytelniania podstawowego" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "Przekieruj wszystkie HTTP do HTTPS" +msgstr "Przekieruj HTTP na HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Usuń konfigurację dla certyfikatu i klucza" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Usuń stary certyfikat i klucz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Nazwa hosta serwera" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" -msgstr "Ustawienia, które są rzadko potrzebne lub mają wpływ na obsługę WebUI" +msgstr "" +"Ustawienia, które są rzadko potrzebne lub wpływają na obsługę interfejsu WWW" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Stan" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "Trzymaj przy życiu protokół TCP" +msgstr "Utrzymywanie otwartego połączenia TCP (keepalive)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "To trwale usuwa certyfikat, klucz i konfigurację, by użyć tego samego." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Ważne przez # dni" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -"Wirtualny adres URL lub skrypt CGI do wyświetlania w statusie '404 Nie " -"znaleziono'. Musi zaczynać się od '/'" +"Wirtualny adres URL lub skrypt CGI do wyświetlenia przy statusie '404 Not " +"Found'. Musi zaczynać się od '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Prefiks ścieżki wirtualnej dla skryptów Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "Prefiks ścieżki wirtualnej dla ubus via JSON-RPC" +msgstr "Prefiks ścieżki wirtualnej dla ubus poprzez integrację JSON‑RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "Nie użyje uwierzytelniania HTTP, jeśli nie ma go w systemie" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "a.k.a Nazwa zwyczajowa" +msgstr "tzw. CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Parametry certyfikatu z podpisem własnym uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -271,9 +286,9 @@ msgstr "" "uHTTPd wygeneruje nowy certyfikat z podpisem własnym przy użyciu " "konfiguracji przedstawionej poniżej." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "integracja ubus jest nieaktywna, jeśli nie występuje" +msgstr "Integracja ubus jest nieaktywna, jeśli nie występuje" #~ msgid "HTTPS Certificate (DER Encoded)" #~ msgstr "Certyfikat HTTPS (zakodowany DER)" diff --git a/applications/luci-app-uhttpd/po/pt/uhttpd.po b/applications/luci-app-uhttpd/po/pt/uhttpd.po index e467d0c83a..182de28db2 100644 --- a/applications/luci-app-uhttpd/po/pt/uhttpd.po +++ b/applications/luci-app-uhttpd/po/pt/uhttpd.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-11-01 08:19+0000\n" +"PO-Revision-Date: 2024-07-20 20:09+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/pt/>\n" @@ -10,134 +10,146 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/old/path=/new/path) ou (just /old/path que se torna /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Erro 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Um servidor HTTP(S) leve de thread única" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Definições Avançadas" +msgstr "Configurações avançadas" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Pseudônimos (Aliases)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "Diretório Base para publicar ficheiros" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" "Escute em uma interface:porta específica (especificando o endereço da " "interface" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "Interpretador de tipo de ficheiro CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "O CGI estará desativado se não presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "Ficheiro de configuração (ex: credenciais para autenticação básica)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Reutilizar conexão" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "País" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "Desabilita a autorização JSON-RPC através da API de sessão ubus" +msgstr "Desativa a autorização JSON-RPC através da API de sessão ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "Não siga ligações simbólicas (symlinks) para fora do documento raiz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Não gere listagens de diretórios." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Documento Raiz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "Ex: use index.html e index.php quando usar PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "O interpretador Lua embutido será desativado se não presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Ative o suporte para recursos JSON-RPC de origem cruzada" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Os ficheiros só podem ser carregados e gravados no diretório /etc/luci-" +"uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "Para ajustes envolvidos com mais do que prover a interface web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Configurações Completas do Servidor Web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Caminho completo para o interpretador de scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Configurações gerais" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "Conceder acesso UCI ao luci-app-uhttpd" +msgstr "Conceder UCI acesso ao luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Escutas do HTTP (endereço:porta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "Certificado HTTPS (formato DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "Chave privada de HTTPS (formato DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "Escuta do HTTPS (endereço:porta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Se estiver vazio, um valor aleatório/único é usado na geração do cert" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Ignore endereços IP privados na interface pública" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "Página(s) Índice(s)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -145,39 +157,43 @@ msgstr "" "Interpretador para associar com extensões de ficheiros " "('extensão=interpretador', ex: '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Comprimento da chave em bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "Localização" +msgstr "Locallidade" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Número máximo de requisições para script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Número máximo de requisições para script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Tempo máximo de espera para execuções de Lua, CGI ou ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Tempo máximo de espera para atividade na rede" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organização" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Sobrescrever o caminho do socket ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Prefixo do caminho para scripts CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" @@ -185,48 +201,48 @@ msgstr "" "Evite acesso de endereços privados (RFC1918) na interface que tem um " "endereço IP público" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "Reino para Autenticação Simples" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "Redirecionar todo tráfego HTTP para HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Remove a configuração para o certificado e chave" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Remove os certificados e chaves antigas" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Nome do Servidor" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "Ajustes que são raramente usadas ou que afetam a interface web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Estado" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "Manter conexões TCP abertas (Keepalive)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "Isto apaga permanentemente o certificado, a chave e a configuração." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Valido por # dias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -234,32 +250,32 @@ msgstr "" "URL virtual ou script CGI para mostrar quando ocorrer erro '404 Não " "Encontrado'. Deve começar com '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Prefixo do caminho virtual para scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Prefixo do caminho virtual para o ubus através da integração JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "Não usar autenticação HTTP se não presente" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "também conhecido como Nome Comum" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Parâmetros do Certificado Auto-assinado do uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -267,7 +283,7 @@ msgstr "" "o uHTTPd gerará um certificado auto-assinado usando a configuração mostrada " "abaixo." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "A integração com o ubus será desativada se não presente" diff --git a/applications/luci-app-uhttpd/po/pt_BR/uhttpd.po b/applications/luci-app-uhttpd/po/pt_BR/uhttpd.po index 4aab735a18..ff27be1422 100644 --- a/applications/luci-app-uhttpd/po/pt_BR/uhttpd.po +++ b/applications/luci-app-uhttpd/po/pt_BR/uhttpd.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"PO-Revision-Date: 2024-07-01 12:20+0000\n" +"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsuhttpd/pt_BR/>\n" "Language: pt_BR\n" @@ -11,134 +11,145 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/old/path=/new/path) ou (just /old/path que se torna /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Erro 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Um servidor HTTP(S) leve de única thread" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Configurações Avançadas" +msgstr "Configurações avançadas" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Pseudônimos (Aliases)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "Diretório Base para publicar arquivos" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" "Escute em uma interface:porta específica (especificando o endereço da " "interface" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "Interpretador de tipo de arquivo CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "O CGI estará desabilitado se não presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "Arquivo de configuração (ex: credenciais para autenticação básica)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Reutilizar conexão" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "País" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "Desabilita a autorização JSON-RPC através da API de sessão ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "Não siga ligações simbólicas (symlinks) para fora do documento raiz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Não gera listagens de diretórios." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Documento Raiz" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "Ex: use index.html e index.php quando usar PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "O interpretador Lua embutido será desabilitado se não presente." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Habilite o suporte para recursos JSON-RPC de origem cruzada" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Os arquivos só podem ser carregados e salvos no diretório /etc/luci-uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "Para ajustes envolvidos com mais do que prover a interface web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Configurações Completas do Servidor Web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Caminho completo para o interpretador de scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Configurações Gerais" +msgstr "Configurações gerais" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" msgstr "Conceda acesso UCI ao luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Escutas do HTTP (endereço:porta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "Certificado HTTPS (em formato DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "Chave Privada do HTTPS (em formato DER ou PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "Escuta do HTTPS (endereço:porta)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Se vazio, um valor aleatório/único é usado na geração do certificado" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Ignore endereços IP privados na interface pública" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "Página(s) Índice(s)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -146,39 +157,43 @@ msgstr "" "Interpretador para associar com extensões de arquivos " "('extensão=interpretador', ex: '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Comprimento da chave em bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "Localização" +msgstr "Local" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Número máximo de requisições para script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Número máximo de requisições para script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Tempo máximo de espera para execuções de Lua, CGI ou ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Tempo máximo de espera para atividade na rede" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organização" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Sobrescrever o caminho do socket ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Prefixo do caminho para scripts CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" @@ -186,50 +201,50 @@ msgstr "" "Evite acesso de endereços privados (RFC1918) na interface que tem um " "endereço IP público" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "Reino para Autenticação Simples" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "Redirecionar todo tráfego HTTP para HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Remove a configuração para o certificado e chave" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Remove os certificados e chaves antigas" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Nome do Servidor" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "Ajustes que são raramente usadas ou que afetam a interface web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "Estado" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "Manter conexões TCP abertas (Keepalive)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" "Isto apaga permanentemente o certificado, a chave e a configuração para usar " "o mesmo." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Valido por # dias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -237,32 +252,32 @@ msgstr "" "URL virtual ou script CGI para mostrar quando ocorrer erro '404 Não " "Encontrado'. Deve começar com '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Prefixo do caminho virtual para scripts Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Prefixo do caminho virtual para o ubus através da integração JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "Não usar autenticação HTTP se não presente" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "também conhecido como Nome Comum" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Parâmetros do Certificado Auto-assinado do uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -270,7 +285,7 @@ msgstr "" "o uHTTPd gerará um certificado auto-assinado usando a configuração mostrada " "abaixo." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "A integração com o ubus será desativada se não presente" diff --git a/applications/luci-app-uhttpd/po/ro/uhttpd.po b/applications/luci-app-uhttpd/po/ro/uhttpd.po index 85f6cdd43a..25c7b9ed75 100644 --- a/applications/luci-app-uhttpd/po/ro/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ro/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-03-29 12:19+0000\n" -"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n" +"PO-Revision-Date: 2023-06-29 20:41+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/ro/>\n" "Language: ro\n" @@ -11,252 +11,283 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/old/path=/new/path) ori (just /old/path which becomes /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "Eroare 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Un server HTTP(S) ușor cu un singur fir de execuție" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Setări avansate" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Aliasuri" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Directorul de bază pentru fișierele care urmează să fie servite" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" +"Legătura cu o anumită interfață:port (prin specificarea adresei interfeței)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "Manipulator de tip de fișier CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "CGI este dezactivat dacă nu este prezent." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" +"Fișier de configurare (de exemplu, pentru credențiale pentru Basic Auth)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Reutilizarea conexiunii" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Țară" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "" +msgstr "Dezactivați autorizarea JSON-RPC prin intermediul sesiunii ubus API" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Nu urmați legături simbolice în afara rădăcinii documentului" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Nu generați listări în directoare." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Rădăcina documentului" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" +"De exemplu, specificați cu index.html și index.php atunci când folosiți PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "Interpretul Lua încorporat este dezactivat dacă nu este prezent." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Activați suportul pentru resurse JSON-RPC Cross-Origin" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." msgstr "" +"Fișierele pot fi încărcate și salvate numai în directorul /etc/luci-uploads." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"Pentru setările orientate în primul rând spre a servi mai mult decât " +"interfața web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Setări complete ale serverului web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Calea reală completă către gestionarul pentru scripturile Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Setări generale" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Acordarea accesului UCI pentru luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "Ascultători HTTP (adresă:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "Certificat HTTPS (format DER sau PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Cheia privată HTTPS (format DER sau PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" -msgstr "" +msgstr "Ascultător HTTPS (adresă:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Glisați pentru a marca ca citit" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Ignoră IP-urile private pe interfața publică" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "Pagina (paginile) de index" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Interpretor care se asociază cu terminațiile fișierelor (\"suffix=handler\", " +"de exemplu \".php=/usr/bin/php-cgi\")" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Lungimea cheii în biți" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Locație" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Numărul maxim de conexiuni" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Numărul maxim de cereri de script" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Timpul maxim de așteptare pentru execuția Lua, CGI sau ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Timp maxim de așteptare pentru activitatea de rețea" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organizație" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Suprascrieți calea pentru socket-ul ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "Prefix de cale pentru scripturile CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Împiedicați accesul de la IP-uri private (RFC1918) pe o interfață dacă " +"aceasta are o adresă IP publică" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Domeniul pentru autentificarea de bază" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Redirecționați toate HTTP către HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Eliminarea configurației pentru certificat și cheie" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Eliminați certificatul și cheia veche" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Numele de gazdă al serverului" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" -msgstr "" +msgstr "Setări care fie sunt rareori necesare, fie afectează deservirea WebUI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "Stat" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP Ținețiactiv" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"Acest lucru șterge definitiv certificatul, cheia și configurația pentru " +"utilizarea acestora." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Valabil pentru # de zile" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"URL-ul virtual sau scriptul CGI care trebuie afișat la starea \"404 Not Found" +"\". Trebuie să înceapă cu \"/\"" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Prefix de cale virtuală pentru scripturile Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "Prefix de cale virtuală pentru ubus prin integrarea JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Nu va utiliza autentificarea HTTP dacă nu este prezentă" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "alias CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "Parametrii certificatului auto-semnat uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd va genera un nou certificat auto-semnat folosind configurația " +"prezentată mai jos." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "integrarea ubus este dezactivată dacă nu este prezentă" diff --git a/applications/luci-app-uhttpd/po/ru/uhttpd.po b/applications/luci-app-uhttpd/po/ru/uhttpd.po index d3022bff98..1da5e99637 100644 --- a/applications/luci-app-uhttpd/po/ru/uhttpd.po +++ b/applications/luci-app-uhttpd/po/ru/uhttpd.po @@ -2,118 +2,124 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: uhttpd\n" "POT-Creation-Date: 2017-12-06 22:30+0300\n" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: sergio <sergio+it@outerface.net>\n" +"PO-Revision-Date: 2024-01-19 12:37+0000\n" +"Last-Translator: st7105 <st7105@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/ru/>\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" -"X-Generator: Weblate 4.2-dev\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" +"X-Generator: Weblate 5.4-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/старый/путь=/новый/путь) или (просто /старый/путь становится /cgi-prefix/" "старый/путь)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Ошибка 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "Легкий однопоточный HTTP(S) сервер" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Псевдонимы (Aliases)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "Основная папка для файлов, которые будут обслуживаться сервером" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" "Привязка к конкретному интерфейсу:порту (путем указания адреса интерфейса)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "Обработчик<br />типа файла CGI" +msgstr "Обработчик файлов CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "CGI отключается, если он отсутствует." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "Config файл" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "Повторное использование соединения" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Страна" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "Отключение авторизации<br />JSON-RPC через API<br />в систему ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" "Не следовать по символическим ссылкам<br />вне корневого каталога документов" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "Не создавать списки папок." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "Основная папка" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "Например, укажите index.html и index.php если используется PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" "Встроенный обработчик скриптов Lua отключается, если скрипт отсутствует." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "Включение поддержки JSON-RPC разных источников" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "Файлы можно загружать и сохранять только в каталог /etc/luci-uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" "Страница в основном предназначена для настройки параметров обслуживания " "сервера, а не веб-интерфейса" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "Полные настройки web сервера" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Полный путь<br />к обработчику<br />скриптов Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Основные настройки" @@ -121,31 +127,37 @@ msgstr "Основные настройки" msgid "Grant UCI access for luci-app-uhttpd" msgstr "Предоставить UCI доступ для luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "Входящие HTTP<br />(адрес:порт)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "Сертификат HTTPS (в DER или PEM формате)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "Приватный ключ HTTPS (в DER или PEM формате)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "Входящие HTTPS<br />(адрес:порт)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Если пусто, то при генерации сертификата будет использовано случайное/" +"уникальное значение" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "Игнорировать приватные<br />IP-адреса на<br />публичном интерфейсе" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "Страница(ы) индекса" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" @@ -153,39 +165,43 @@ msgstr "" "Обработчик для сопоставления расширений файлов ('суффикс=обработчик', " "например: '.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "Длина ключа в битах" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "Расположение" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "Максимальное количество соединений" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "Максимальное количество запросов скрипта" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Максимальное время ожидания для Lua, CGI,<br />или выполнение ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "Максимальное время ожидания сетевой активности" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Организация" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "Переопределить<br />путь для сокета ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "Префикс пути<br />для CGI скриптов" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" @@ -193,50 +209,50 @@ msgstr "" "Запретить доступ к приватному интерфейсу IPS (RFC1918), если он имеет " "публичный IP-адрес" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "Хост для аутентификации" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "Перенаправление всех<br />HTTP на HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "Удалить настройки для сертификата и ключа" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "Удалить старый сертификат и ключ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "Имя хоста" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" "Страница содержит параметры, которые редко используются или влияют на " "обслуживание веб-интерфейса" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "Указывать" +msgstr "Состояние" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "TCP активность" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "Полное удаление сертификата, ключа и настроек вкладки меню cнизу." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "Действителен в течение указанного кол-ва дней" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" @@ -244,34 +260,34 @@ msgstr "" "Виртуальный URL-адрес или CGI скрипт для отображения статуса '404 не " "найдено'. Надо начинать с '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Виртуальный путь<br />префикса<br />для скриптов Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "Виртуальный префикс<br />пути для ubus через<br />интеграцию JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" "Например, учетные данные для основной авторизации.<br />Не будет " "использоваться проверка подлинности HTTP, если она отсутствует" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "Имя хоста сервера, так называемое - 'CommonName'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "Параметры самозаверяющего сертификата uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." @@ -279,7 +295,7 @@ msgstr "" "uHTTPd создаст самозаверяющий сертификат используя вкладку расположенную " "ниже." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "Интеграция с ubus будет отключена, если она отсутствует" diff --git a/applications/luci-app-uhttpd/po/sk/uhttpd.po b/applications/luci-app-uhttpd/po/sk/uhttpd.po index 9dea711fcb..c78f7d97b6 100644 --- a/applications/luci-app-uhttpd/po/sk/uhttpd.po +++ b/applications/luci-app-uhttpd/po/sk/uhttpd.po @@ -12,97 +12,103 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Pokročilé nastavenia" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Krajina" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -110,152 +116,160 @@ msgstr "Všeobecné nastavenia" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/sv/uhttpd.po b/applications/luci-app-uhttpd/po/sv/uhttpd.po index 16675438a3..7dca3a2e85 100644 --- a/applications/luci-app-uhttpd/po/sv/uhttpd.po +++ b/applications/luci-app-uhttpd/po/sv/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-10-17 20:20+0000\n" -"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"PO-Revision-Date: 2024-05-12 16:49+0000\n" +"Last-Translator: Daniel Nilsson <daniel.nilsson94@outlook.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/sv/>\n" "Language: sv\n" @@ -10,252 +10,284 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1-dev\n" +"X-Generator: Weblate 5.5.4\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/gammal/genväg=/ny/genväg) eller (bara /gammal/genväg som blir /cgi-prefix/" +"gammal/genväg)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "404-fel" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "En resurssnål enkeltrådad HTTP(S)-server" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Alias" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Basmapp för filer som ska publiceras" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" +"Bind till ett specifikt gränssnitt:port (genom att ange gränssnittets " +"address)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "Hanterare för filtypen CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "CGI är avstängt om ej närvarande." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" -msgstr "" +msgstr "Konfig-fil (t.ex för uppgifter till standardautentisering)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Återanvändning av anslutningen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Land" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "" +msgstr "Stäng av JSON-RPC-autentisering via ubus-sessionens API" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Följ inte symboliska länkar om utanför dokumentroten" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Generera inte mapp-listningar." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Dokumentrot" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "" +msgstr "T.ex ange med index.html och index.php när PHP används" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "Inbyggd Lua-interpreterare är avstängd om ej närvarande." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" -msgstr "" +msgstr "Aktivera JSON-RPC Cross-Origin Resource Support" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "Filer kan bara laddas upp och sparas i /etc/luci-uploads-katalogen." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"För inställningar som primärt är avsedda för mer än bara webbgränssnittet" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Utökade inställningar för webbservern" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Hela sökvägen till hanteraren för Lua-skript" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Generella inställningar" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Ger UCI-åtkomst till luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "HTTP-lyssnare (adress:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS-certifikat (DER eller PEM-format)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Privat nyckel för HTTPS (DER eller PEM-format)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "HTTPS-lyssnare (adress:port)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" +"Om tomt så kommer ett slumpmässigt värde användas i genereringen av " +"certifikatet" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Ignorera privata IP-adresser på publikt gränssnitt" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "Index-sida(orna)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Interpreterare att associera med filändelser ('suffix=handler', t.ex. '.php=/" +"usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Nyckelns längd i bits" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Plats" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Maximalt antal anslutningar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Högst antal skriptförfrågningar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Högsta väntetid för Lua, CGI eller ubusexekvering" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Maximal väntetid för nätverksaktivitet" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organisation" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Skriv över sökväg för ubus-socket" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "Sökvägsprefix för CGI-skript" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Förhindra åtkomst från privata (RFC1918) IP-adresser på ett gränssnitt ifall " +"det har en publik IP-adress" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Realm för Basic Auth" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Dirigera om HTTP till HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Ta bort konfiguration för certifikat och nyckel" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Ta bort gammalt certifikat och nyckel" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Värdnamn för server" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" +"Inställningar som antingen sällan behövs eller påverkar webbgränssnittet" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "Skick" +msgstr "Status" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"Det här tar permanent bort cert, nyckeln och konfigurationen för att använda " +"samma." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Giltigt i X antal dagar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"Virtuell URL eller CGI-skript att visa vid status '404 Not Found'. Måste " +"börja med '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Virtuell sökvägsprefix för Lua-skript" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "Virtuell sökvägsprefix för ubus via JSON-RPC-integrationen" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Kommer inte att använda HTTP-autentisering om det inte är tillgängligt" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "också känt som CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "Parametrar för självsignerat uHTTPd-certifikat" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd kommer generera ett nytt självsignerat certifikat baserat på " +"konfigurationen nedan." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "ubus-integrationen är avstängd om ej närvarande" diff --git a/applications/luci-app-uhttpd/po/templates/uhttpd.pot b/applications/luci-app-uhttpd/po/templates/uhttpd.pot index ac8e7c4b5f..7daa3d5a51 100644 --- a/applications/luci-app-uhttpd/po/templates/uhttpd.pot +++ b/applications/luci-app-uhttpd/po/templates/uhttpd.pot @@ -1,97 +1,103 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "" @@ -99,152 +105,160 @@ msgstr "" msgid "Grant UCI access for luci-app-uhttpd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "" diff --git a/applications/luci-app-uhttpd/po/tr/uhttpd.po b/applications/luci-app-uhttpd/po/tr/uhttpd.po index 7d208d6b68..06d87fab54 100644 --- a/applications/luci-app-uhttpd/po/tr/uhttpd.po +++ b/applications/luci-app-uhttpd/po/tr/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-09-25 07:41+0000\n" -"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" +"PO-Revision-Date: 2023-10-29 19:41+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/tr/>\n" "Language: tr\n" @@ -10,252 +10,283 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 5.2-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/old/path=/new/path) veya (just /old/path haline gelir /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "404 Hatası" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Hafif bir tek iş parçacıklı HTTP(S) sunucusu" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Diğer isimler" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Sunulacak dosyalar için temel dizin" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" +"Belirli bir arabirime bağlan: bağlantı noktası (arabirim adresini belirterek)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "CGI dosya türü işleyicisi" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "Mevcut değilse CGI devre dışı bırakılır." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" +"Yapılandırma dosyası (ör. Temel Kimlik Doğrulama için kimlik bilgileri için)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Bağlantının yeniden kullanımı" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" -msgstr "" +msgstr "Ülke" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "" +"Ubus oturum API'si aracılığıyla JSON-RPC yetkilendirmesini devre dışı bırakın" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Belge kökü dışındaki sembolik bağları izleme" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Dizin listeleri oluşturmayın." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Belgenin tutulduğu yer" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "" +msgstr "Örneğin PHP kullanırken index.html ve index.php ile belirtin" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "Gömülü Lua yorumlayıcı program mevcut değilse devre dışı bırakılır." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "JSON-RPC Cross-Origin Kaynak Desteğini Etkinleştir" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." msgstr "" +"Dosyalar yalnızca /etc/luci-uploads dizinine yüklenebilir ve kaydedilebilir." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"Öncelikle web kullanıcı arayüzünden daha fazlasını sunmaya yönelik ayarlar " +"için" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Tam Web Sunucusu Ayarları" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Lua betikleri için işleyiciye tam gerçek yol" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "Genel Ayarlar" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "luci-app-uhttpd için UCI erişimi verin" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "HTTP dinleyicileri (address:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS Sertifikası (DER ya da PEM formatı)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS Özel Anahtar (DER ya da PEM formatı)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" -msgstr "" +msgstr "HTTPS dinleyicisi (address:port)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "Boş ise, sertifika oluşturmada rastgele/benzersiz bir değer kullanılır" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Ortak arayüzde gizli IP'leri yok say" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "İndeks Sayfası / Sayfaları" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Dosya sonlarıyla ilişkilendirilecek yorumlayıcı ('suffix=handler', ör. '." +"php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Bit cinsinden anahtar uzunluğu" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Konum" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Maksimum bağlantı sayısı" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Maksimum betik sayısı" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Lua, CGI veya ubus yürütmesi için maksimum bekleme süresi" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Ağ etkinliği için maksimum bekleme süresi" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organizasyon" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Ubus soketi için yolu geçersiz kıl" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "CGI betikleri için yol öneki" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Genel bir IP adresine sahipse, bir arabirimdeki özel (RFC1918) IP'lerden " +"erişimi engelleyin" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Temel Kimlik Doğrulama için Bölge" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Tüm HTTP'leri HTTPS'ye yönlendir" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Sertifika ve anahtar konfigürasyonunu kaldır" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Eski sertifika ve anahtarı kaldır" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Sunucu Ana Makina Adı" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" -msgstr "" +msgstr "Nadiren ihtiyaç duyulan veya WebUI sunmayı etkileyen ayarlar" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "Durum" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"Bu, aynı kullanmak için sertifika, anahtar ve yapılandırmayı kalıcı olarak " +"siler." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "# gün geçerlilik süresi" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"'404 Bulunamadı' durumunda görüntülenecek sanal URL veya CGI betiği. \"/\" " +"İle başlamalıdır" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Lua betikleri için sanal yol öneki" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "JSON-RPC entegrasyonu aracılığıyla ubus için sanal yol öneki" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Mevcut değilse HTTP kimlik doğrulamasını kullanmayacak" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "diğer adıyla Ortak Ad" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "uHTTPd kendinden imzalı sertifika değişkenleri" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd, aşağıda gösterilen yapılandırmayı kullanarak yeni bir kendinden " +"imzalı sertifika oluşturacaktır." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "yoksa ubus entegrasyonu devre dışı bırakılır" diff --git a/applications/luci-app-uhttpd/po/uk/uhttpd.po b/applications/luci-app-uhttpd/po/uk/uhttpd.po index 8a5e3f2ad6..53e1fe8fef 100644 --- a/applications/luci-app-uhttpd/po/uk/uhttpd.po +++ b/applications/luci-app-uhttpd/po/uk/uhttpd.po @@ -1,262 +1,294 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-10-27 21:26+0000\n" -"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n" +"PO-Revision-Date: 2024-02-25 06:41+0000\n" +"Last-Translator: Костянтин Серьогін <seryoginki@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/uk/>\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" -"X-Generator: Weblate 4.3.2-dev\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" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/старий/шлях=/новий/шлях) або (просто /старий/шлях, який стає /cgi-префікс/" +"старий/шлях" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "Помилка 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "Легкий одно-поточний HTTP(S) сервер" +msgstr "Легкий однопотоковий сервер HTTP(S)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "Розширені налаштування" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "Псевдоніми (Aliases)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Базовий каталог для файлів, які будуть обслуговуватися" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" -msgstr "" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "Прив'язати до певного інтерфейсу:порту (зазначенням адреси інтерфейсу)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "Обробник типів файлів CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "CGI вимкнено, якщо його немає." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "" +"Файл конфігурації (наприклад, для облікових даних базової автентифікації)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Повторне використання з'єднання" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "Країна" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "" +msgstr "Вимкнути авторизацію JSON-RPC через API сеансу ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Не наслідувати символьні посилання поза кореневим каталогом документа" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Не створювати списки каталогів." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Кореневий каталог документа" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "" +msgstr "Наприклад, вкажіть index.html та index.php за використання PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "Вбудований інтерпретатор Lua вимкнено, якщо сценарій відсутній." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Увімкнути підтримку ресурсів JSON-RPC перехресного походження" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." msgstr "" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"Для налаштувань, в основному призначених для обслуговування сервера, а не " +"веб-інтерфейсу" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Повні налаштування веб-сервера" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Повний реальний шлях до обробника сценаріїв Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "Головні налаштування" +msgstr "Загальні налаштування" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Надати доступ до UCI для luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "Прослуховувачі HTTP (адреса:порт)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "Сертифікат HTTPS (формат DER або PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Приватний ключ HTTPS (формат DER або PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "Прослуховувач HTTPS (адреса:порт)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" +"Якщо порожній, випадкове/унікальне значення використовується при генерації " +"сертифіката" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Ігнорувати приватні IP-адреси на загальнодоступному інтерфейсі" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "Сторінки індексу" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Інтерпретатор для асоціювання з розширеннями файлів ('суфікс=обробник', " +"наприклад '.php =/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Довжина ключа в бітах" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Розташування" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Максимальна кількість з'єднань" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Максимальна кількість запитів сценарію" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Максимальний час очікування виконання Lua, CGI або ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Максимальний час очікування на мережеву активність" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Організація" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Перевизначити шлях для сокета ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "Префікс шляху для сценаріїв CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Заборонити доступ до приватних IP-адрес (RFC1918) y інтерфейсі, якщо він має " +"загальнодоступну IP-адресу" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Зона для базової авторизації" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Переспрямувати всі HTTP на HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Видалити конфігурацію сертифіката та ключа" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Видалити старий сертифікат і ключ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Ім'я хоста сервера" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "" +"Параметри, які або рідко потрібні, або які впливають на обслуговування веб-" +"інтерфейсу" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "Стан" +msgstr "Штат" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "Підтримувати TSP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"Сертифікат, ключ і конфігурацію буде остаточно видалено для використання." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Дійсний на протязі # днів" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"Віртуальна URL-адреса або сценарій CGI для відображення статусу '404 Не " +"знайдено'. Має починатися з '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Префікс віртуального шляху для сценаріїв Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "Префікс віртуального шляху для ubus через інтеграцію JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Не використовуватиметься автентифікація HTTP, якщо її немає" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "Також відоме як CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "Параметри самопідписаного сертифіката uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd створить новий самопідписаний сертифікат, використовуючи " +"конфігурацію, показану нижче." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "Інтеграцію з ubus вимкнено, якщо її немає" diff --git a/applications/luci-app-uhttpd/po/vi/uhttpd.po b/applications/luci-app-uhttpd/po/vi/uhttpd.po index 392b85f0da..8497d9ca99 100644 --- a/applications/luci-app-uhttpd/po/vi/uhttpd.po +++ b/applications/luci-app-uhttpd/po/vi/uhttpd.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-10-26 20:34+0000\n" -"Last-Translator: 0x2f0713 <namhaiha0308@gmail.com>\n" +"PO-Revision-Date: 2024-01-26 16:51+0000\n" +"Last-Translator: Hứa Đức Quân <huaducquan14@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsuhttpd/vi/>\n" "Language: vi\n" @@ -10,252 +10,281 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" +"(/old/path = /new/path) hoặc (just /old/path trở thành /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" -msgstr "" +msgstr "Lỗi 404" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" -msgstr "" +msgstr "Máy chủ HTTP(S) đơn luồng nhẹ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" -msgstr "Cài đặt nâng cao" +msgstr "Cài đặt Nâng cao" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" -msgstr "" +msgstr "Bí danh" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" -msgstr "" +msgstr "Thư mục cơ sở cho các tập tin được lưu trữ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "" +"Liên kết với giao diện cụ thể: cổng (bằng cách chỉ định địa chỉ giao diện" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" -msgstr "" +msgstr "Trình xử lý loại tệp CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "" +msgstr "CGI bị tắt nếu không có." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" -msgstr "" +msgstr "Tệp cấu hình (ví dụ: thông tin đăng nhập cho Basic Auth)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" -msgstr "" +msgstr "Tái sử dụng kết nối" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" -msgstr "" +msgstr "Quốc gia" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "" +msgstr "Vô hiệu hóa ủy quyền JSON-RPC qua API phiên ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" -msgstr "" +msgstr "Không theo các liên kết tượng trưng bên ngoài tài liệu gốc" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "" +msgstr "Không tạo danh sách thư mục." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" -msgstr "" +msgstr "Document root" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" -msgstr "" +msgstr "Ví dụ: chỉ định với index.html và index.php khi sử dụng PHP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "" +msgstr "Trình thông dịch Lua nhúng bị tắt nếu không có." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" -msgstr "" +msgstr "Bật hỗ trợ tài nguyên nguồn gốc JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "Các tệp chỉ có thể được tải lên và lưu vào thư mục /etc/luci-uploads." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "" +"Đối với cài đặt chủ yếu hướng đến phục vụ nhiều hơn giao diện người dùng web" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" -msgstr "" +msgstr "Cài đặt máy chủ web đầy đủ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" -msgstr "" +msgstr "Đường dẫn thực đầy đủ tới trình xử lý cho tập lệnh Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" -msgstr "" +msgstr "Các cài đặt chung" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "Cấp quyền truy cập UCI cho luci-app-uhttpd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" -msgstr "" +msgstr "HTTP listeners (địa chỉ: cổng)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "Chứng chỉ HTTPS (định dạng DER hoặc PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "Khóa riêng HTTPS (định dạng DER hoặc PEM)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" +msgstr "HTTPS listener (địa chỉ:cổng)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" msgstr "" +"Nếu trống, một giá trị ngẫu nhiên/duy nhất được sử dụng trong quá trình tạo " +"chứng chỉ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" -msgstr "" +msgstr "Bỏ qua IP riêng trên giao diện công cộng" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" -msgstr "" +msgstr "(Các) trang chỉ mục" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "" +"Trình thông dịch để liên kết với phần cuối của tệp ('suffix=handler', ví dụ: " +"'.php=/usr/bin/php-cgi')" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" -msgstr "" +msgstr "Độ dài của khóa tính bằng bit" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" -msgstr "" +msgstr "Vị trí" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" -msgstr "" +msgstr "Số lượng kết nối tối đa" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" -msgstr "" +msgstr "Số lượng yêu cầu tập lệnh tối đa" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" -msgstr "" +msgstr "Thời gian chờ tối đa để thực thi Lua, CGI hoặc ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" -msgstr "" +msgstr "Thời gian chờ tối đa cho hoạt động mạng" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Tổ chức" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" -msgstr "" +msgstr "Ghi đè đường dẫn cho ổ cắm ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" -msgstr "" +msgstr "Tiền tố đường dẫn cho tập lệnh CGI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "" +"Ngăn truy cập từ các IP riêng tư (RFC1918) trên giao diện nếu giao diện đó " +"có địa chỉ IP công khai" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" -msgstr "" +msgstr "Xác thực cơ bản" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" -msgstr "" +msgstr "Chuyển hướng tất cả HTTP sang HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" -msgstr "" +msgstr "Xóa cấu hình cho chứng chỉ và khóa" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" -msgstr "" +msgstr "Xóa chứng chỉ và khóa cũ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "" +msgstr "Tên máy chủ" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" -msgstr "" +msgstr "Cài đặt hiếm khi cần thiết hoặc ảnh hưởng đến việc cung cấp WebUI" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" -msgstr "" +msgstr "Trạng thái" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "" +msgstr "TCP Keepalive" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" +"Thao tác này sẽ xóa vĩnh viễn chứng chỉ, khóa và cấu hình để sử dụng giống " +"nhau." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" -msgstr "" +msgstr "Có giá trị trong # ngày" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "" +"URL ảo hoặc tập lệnh CGI để hiển thị trên trạng thái 'Không tìm thấy 404'. " +"Phải bắt đầu bằng '/'" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" -msgstr "" +msgstr "Tiền tố đường dẫn ảo cho tập lệnh Lua" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "" +msgstr "Tiền tố đường dẫn ảo cho ubus thông qua tích hợp JSON-RPC" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" -msgstr "" +msgstr "Sẽ không sử dụng xác thực HTTP nếu không có" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" -msgstr "" +msgstr "a.k.a CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "" +msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" -msgstr "" +msgstr "uHTTPd Tham số chứng chỉ tự ký" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "" +"uHTTPd sẽ tạo chứng chỉ tự ký mới bằng cách sử dụng cấu hình hiển thị bên " +"dưới." -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "" +msgstr "tích hợp ubus bị vô hiệu hóa nếu không có" diff --git a/applications/luci-app-uhttpd/po/yua/uhttpd.po b/applications/luci-app-uhttpd/po/yua/uhttpd.po new file mode 100644 index 0000000000..c62d5be05f --- /dev/null +++ b/applications/luci-app-uhttpd/po/yua/uhttpd.po @@ -0,0 +1,305 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-09-07 04:34+0000\n" +"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n" +"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsuhttpd/yua/>\n" +"Language: yua\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/vieja/ruta=/nueva/ruta) o (solo /vieja/ruta que se convierte en /cgi-" +"prefix/vieja/ruta)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "404 Error" +msgstr "Error 404" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "Un servidor HTTP(S) liviano de un solo hilo" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "Advanced Settings" +msgstr "Ajustes avanzados" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 +msgid "Aliases" +msgstr "Alias" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Base directory for files to be served" +msgstr "Directorio base para los archivos que se van a servir" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" +msgstr "" +"Vincula a una interfaz específica: puerto (especificando la dirección de la " +"interfaz)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "CGI filetype handler" +msgstr "Manejador de tipo de archivo CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "CGI is disabled if not present." +msgstr "CGI es desactivado si no está presente." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "" +"Archivo de configuración (por ejemplo, para credenciales de autenticación " +"básica)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 +msgid "Connection reuse" +msgstr "Reutilización de conexión" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 +msgid "Country" +msgstr "País" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "Desactivar autorización JSON-RPC a través de la API de sesión ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 +msgid "Do not follow symlinks outside document root" +msgstr "No siga enlaces simbólicos fuera de la raíz del documento" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 +msgid "Do not generate directory listings." +msgstr "No generar listados de directorios." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 +msgid "Document root" +msgstr "Raíz del documento" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "Ej. especifique con index.html e index.php cuando use PHP" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "El intérprete Lua integrado es desactivado si no está presente." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Activar el soporte de recursos de origen cruzado JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "" +"Los archivos solo se pueden cargar y guardar en el directorio /etc/luci-" +"uploads." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "" +"Para ajustes orientados principalmente a servir más que la interfaz de " +"usuario web" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 +msgid "Full Web Server Settings" +msgstr "Ajustes completos del servidor web" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 +msgid "Full real path to handler for Lua scripts" +msgstr "Ruta real completa al manejador de scripts Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 +msgid "General Settings" +msgstr "Ajustes generales" + +#: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 +msgid "Grant UCI access for luci-app-uhttpd" +msgstr "Conceder acceso UCI para luci-app-uhttpd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +msgid "HTTP listeners (address:port)" +msgstr "Escuchas HTTP (direccion:puerto)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +msgid "HTTPS Certificate (DER or PEM format)" +msgstr "Certificado HTTPS (formato DER o PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "HTTPS Private Key (DER or PEM format)" +msgstr "Clave privada HTTPS (formato DER o PEM)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "HTTPS listener (address:port)" +msgstr "Escuchas HTTPS (dirección:puerto)" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "" +"Si está vacío, se usa un valor aleatorio/único en la generación de " +"certificados" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "Ignore private IPs on public interface" +msgstr "Ignorar IPs privadas en la interfaz pública" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 +msgid "Index page(s)" +msgstr "Página(s) índice" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Intérprete para asociar con terminaciones de archivos ('sufijo=handler', por " +"ejemplo, '.php=/usr/bin/php-cgi')" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 +msgid "Length of key in bits" +msgstr "Longitud de clave en bits" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 +msgid "Location" +msgstr "Ubicación" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 +msgid "Maximum number of connections" +msgstr "Número máximo de conexiones" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 +msgid "Maximum number of script requests" +msgstr "Número máximo de solicitudes de script" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "Tiempo máximo de espera para la ejecución de Lua, CGI o ubus" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 +msgid "Maximum wait time for network activity" +msgstr "Tiempo máximo de espera para la actividad de la red" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "Organización" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 +msgid "Override path for ubus socket" +msgstr "Anular ruta para ubus socket" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 +msgid "Path prefix for CGI scripts" +msgstr "Prefijo de ruta para scripts CGI" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Impide el acceso desde direcciones IP privadas (RFC1918) en una interfaz si " +"tiene una dirección IP pública" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 +msgid "Realm for Basic Auth" +msgstr "Ámbito para la Autenticación Básica" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 +msgid "Redirect all HTTP to HTTPS" +msgstr "Redirigir todo el tráfico HTTP a HTTPS" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "Remove configuration for certificate and key" +msgstr "Eliminar configuración para certificado y clave" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "Remove old certificate and key" +msgstr "Eliminar certificado y clave antiguos" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "Server Hostname" +msgstr "Nombre de host del servidor" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Ajustes que rara vez se necesitan o que afectan el funcionamiento de la " +"interfaz de usuario web" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 +msgid "State" +msgstr "Estado" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 +msgid "TCP Keepalive" +msgstr "Mantener vivo TCP" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" +"Esto elimina permanentemente el certificado, la clave y la configuración " +"para su uso." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 +msgid "Valid for # of Days" +msgstr "Válido por # de días" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"URL virtual o script CGI para mostrar en el estado '404 No encontrado'. Debe " +"comenzar con '/'" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 +msgid "Virtual path prefix for Lua scripts" +msgstr "Prefijo de ruta virtual para scripts Lua" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "Prefijo de ruta virtual para ubus a través de la integración JSON-RPC" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 +msgid "Will not use HTTP authentication if not present" +msgstr "No utilizará la autenticación HTTP si no está presente" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 +msgid "a.k.a CommonName" +msgstr "También conocido como CommonName" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 +#: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 +msgid "uHTTPd" +msgstr "uHTTPd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "Parámetros del certificado autofirmado de uHTTPd" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"uHTTPd generará un nuevo certificado autofirmado utilizando la configuración " +"que se muestra a continuación." + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 +msgid "ubus integration is disabled if not present" +msgstr "La integración de ubus es desactivada si no está presente" + +#~ msgid "HTTPS Certificate (DER Encoded)" +#~ msgstr "HTTPS Certificate (DER Encoded)" + +#~ msgid "HTTPS Private Key (DER Encoded)" +#~ msgstr "HTTPS Private Key (DER Encoded)" diff --git a/applications/luci-app-uhttpd/po/zh_Hans/uhttpd.po b/applications/luci-app-uhttpd/po/zh_Hans/uhttpd.po index 5828212d85..a49d0fd080 100644 --- a/applications/luci-app-uhttpd/po/zh_Hans/uhttpd.po +++ b/applications/luci-app-uhttpd/po/zh_Hans/uhttpd.po @@ -3,262 +3,276 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2020-05-10 12:47+0000\n" -"Last-Translator: gw826943555 <gw826943555@qq.com>\n" +"PO-Revision-Date: 2023-06-29 14:15+0000\n" +"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsuhttpd/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/old/path=/new/path)或(只写 /old/path,将变成 /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "404 错误" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "轻量级单线程 HTTP(S) 服务器" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "高级设置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "别名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "基本文件提供目录" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "绑定到特定接口:端口(通过指定接口地址" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "CGI 文件类型处理程序" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." msgstr "如果不存在,CGI 将被禁用。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "配置文件(例如,基本身份验证的凭据)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "连接重用" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "国家" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" msgstr "通过 ubus 会话 API 禁用 JSON-RPC 授权" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "不要跟随符号链接到文档根目录之外" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." msgstr "不要生成目录列表。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "文档根" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "例如,使用 PHP 时可指定为 index.html 和 index.php" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." msgstr "如果不存在,嵌入式 Lua 解释器将被禁用。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "启用 JSON-RPC 跨域资源支持" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "文件只能上传并保存到 etc/luci-uploads 目录。" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "适用于主要服务于 Web UI 的设置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "完整的 Web 服务器设置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Lua 脚本处理程序的完整真实路径" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "常规设置" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "授予UCI访问luci-app-uhttpd的权限" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "HTTP 监听(地址:端口)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS 证书 (DER 或 PEM 格式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS 私钥 (DER 或 PEM 格式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "HTTPS 监听(地址:端口)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "如果为空,则在生成证书时使用一个随机/唯一的值" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "忽略公共接口上的私有 IP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "索引页面" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "文件结尾关联的解释器(“后缀=处理程序”,例如“.php=/usr/bin/php-cgi”)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "密钥长度" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "位置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "最大连接数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "最大脚本请求数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Lua、CGI 或 ubus 执行的最长等待时间" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "网络活动的最长等待时间" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "机构" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "覆盖 ubus 套接字路径" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "CGI 脚本的路径前缀" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "如果接口上具有公有 IP 地址,则阻止从接口上的私有(RFC1918)IP 地址访问" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "基本身份验证领域" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "将所有 HTTP 重定向到 HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "删除证书和密钥的配置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "删除旧证书和密钥" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" msgstr "服务器主机名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "很少需要或影响 WebUI 服务的设置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "状态" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" msgstr "TCP 保活" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "这将永久删除证书、密钥及使用它的配置。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "有效天数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "要在状态“404 Not Found”上显示的虚拟 URL 或 CGI 脚本。必须以“/”开头" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Lua 脚本的虚拟路径前缀" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" msgstr "ubus 通过 JSON-RPC 集成的虚拟路径前缀" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "如果不存在,将不使用 HTTP 身份验证" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "又名 CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" msgstr "uHTTPd" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "uHTTPd 自签名证书参数" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "uHTTPd 将使用下面显示的配置生成新的自签名证书。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" msgstr "如果不存在,则禁用 ubus 集成" diff --git a/applications/luci-app-uhttpd/po/zh_Hant/uhttpd.po b/applications/luci-app-uhttpd/po/zh_Hant/uhttpd.po index 6d3f27ce84..0dbc3c5168 100644 --- a/applications/luci-app-uhttpd/po/zh_Hant/uhttpd.po +++ b/applications/luci-app-uhttpd/po/zh_Hant/uhttpd.po @@ -3,264 +3,278 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2020-06-28 19:19+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" +"PO-Revision-Date: 2024-01-05 04:02+0000\n" +"Last-Translator: Yuan Law <traverslombard@outlook.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsuhttpd/zh_Hant/>\n" "Language: zh_Hant\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "" "(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" msgstr "" "(/old/path=/new/path)或(只寫 /old/path,將變成 /cgi-prefix/old/path)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "404 Error" msgstr "404 錯誤" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 msgid "A lightweight single-threaded HTTP(S) server" msgstr "輕量級單執行緒 HTTP(S) 伺服器" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "Advanced Settings" msgstr "進階設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:160 msgid "Aliases" msgstr "別名" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Base directory for files to be served" msgstr "基本檔案提供目錄" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 -msgid "Bind to specific interface:port (by specifying interface address" +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 +msgid "Bind to specific interface:port (by specifying interface address)" msgstr "繫結到特定介面:埠(通過指定介面位址" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "CGI filetype handler" msgstr "CGI 檔案型別處理程式" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "CGI is disabled if not present." -msgstr "如果不存在,CGI 將被禁用。" +msgstr "如果留空,則 CGI 將被停用。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Config file (e.g. for credentials for Basic Auth)" msgstr "配置檔案(例如,基本身份驗證的憑據)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:211 msgid "Connection reuse" msgstr "連線重用" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:253 msgid "Country" msgstr "國家" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:197 msgid "Disable JSON-RPC authorization via ubus session API" -msgstr "通過 ubus 會話 API 禁用 JSON-RPC 授權" +msgstr "透過 ubus 工作階段 API 來停用 JSON-RPC 授權" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:154 msgid "Do not follow symlinks outside document root" msgstr "不要跟隨符號連結到文件根目錄之外" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:157 msgid "Do not generate directory listings." -msgstr "不要生成目錄列表。" +msgstr "不要產生目錄列表。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:173 msgid "Document root" msgstr "文件根" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "E.g specify with index.html and index.php when using PHP" msgstr "例如,使用 PHP 時可指定為 index.html 和 index.php" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Embedded Lua interpreter is disabled if not present." -msgstr "如果不存在,嵌入式 Lua 直譯器將被禁用。" +msgstr "如果留空,嵌入式 Lua 直譯器將被停用。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:193 msgid "Enable JSON-RPC Cross-Origin Resource Support" msgstr "啟用 JSON-RPC 跨域資源支援" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 +msgid "" +"Files can only be uploaded and saved to the /etc/luci-uploads directory." +msgstr "檔案僅可被上傳並儲存至 /etc/luci-uploads 資料夾。" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "For settings primarily geared to serving more than the web UI" msgstr "適用於主要服務於 Web UI 的設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:24 msgid "Full Web Server Settings" msgstr "完整的 Web 伺服器設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:184 msgid "Full real path to handler for Lua scripts" msgstr "Lua 指令碼處理程式的完整真實路徑" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:23 msgid "General Settings" msgstr "一般設定" #: applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json:3 msgid "Grant UCI access for luci-app-uhttpd" -msgstr "" +msgstr "授予 luci-app-uhttpd 擁有 UCI 存取的權限" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:27 msgid "HTTP listeners (address:port)" msgstr "HTTP 監聽(位址:埠)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:106 msgid "HTTPS Certificate (DER or PEM format)" -msgstr "" +msgstr "HTTPS 數位簽證 (DER 或 PEM 格式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:110 msgid "HTTPS Private Key (DER or PEM format)" -msgstr "" +msgstr "HTTPS 私人金鑰(DER或PEM格式)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:55 msgid "HTTPS listener (address:port)" msgstr "HTTPS 監聽(位址:埠)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "If empty, a random/unique value is used in cert generation" +msgstr "如果為空,則在產生證書時使用一個隨機/唯一的值" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "Ignore private IPs on public interface" msgstr "忽略公共介面上的私有 IP" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:147 msgid "Index page(s)" msgstr "索引頁面" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:151 msgid "" "Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" "usr/bin/php-cgi')" msgstr "檔案結尾關聯的直譯器(“字尾=處理程式”,例如“.php=/usr/bin/php-cgi”)" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:238 msgid "Length of key in bits" msgstr "金鑰長度" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:247 msgid "Location" msgstr "位置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:221 msgid "Maximum number of connections" msgstr "最大連線數" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:225 msgid "Maximum number of script requests" msgstr "最大指令碼請求數" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:201 msgid "Maximum wait time for Lua, CGI, or ubus execution" msgstr "Lua、CGI 或 ubus 執行的最長等待時間" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:206 msgid "Maximum wait time for network activity" msgstr "網路活動的最長等待時間" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:245 +msgid "Organization" +msgstr "組織" + +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:190 msgid "Override path for ubus socket" msgstr "覆蓋 ubus 套接字路徑" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:177 msgid "Path prefix for CGI scripts" msgstr "CGI 指令碼的路徑字首" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:102 msgid "" "Prevent access from private (RFC1918) IPs on an interface if it has an " "public IP address" msgstr "如果介面上具有公有 IP 位址,則阻止從介面上的私有(RFC1918)IP 位址訪問" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:163 msgid "Realm for Basic Auth" msgstr "基本身份驗證領域" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:98 msgid "Redirect all HTTP to HTTPS" msgstr "將所有 HTTP 重定向到 HTTPS" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "Remove configuration for certificate and key" msgstr "刪除證書和金鑰的配置" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "Remove old certificate and key" msgstr "刪除舊證書和金鑰" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "Server Hostname" -msgstr "伺服器主機名" +msgstr "伺服器主機名稱" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:25 msgid "" "Settings which are either rarely needed or which affect serving the WebUI" msgstr "很少需要或影響 WebUI 服務的設定" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:250 msgid "State" msgstr "狀態" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:216 msgid "TCP Keepalive" -msgstr "TCP Keepalive" +msgstr "TCP 存活者" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:128 msgid "This permanently deletes the cert, key, and configuration to use same." -msgstr "這將永久刪除證書、金鑰及使用它的配置。" +msgstr "這將永久刪除證書、金鑰及相同使用的配置。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:234 msgid "Valid for # of Days" msgstr "有效天數" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:170 msgid "" "Virtual URL or CGI script to display on status '404 Not Found'. Must begin " "with '/'" msgstr "要在狀態“404 Not Found”上顯示的虛擬 URL 或 CGI 指令碼。必須以“/”開頭" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:180 msgid "Virtual path prefix for Lua scripts" msgstr "Lua 指令碼的虛擬路徑字首" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "Virtual path prefix for ubus via JSON-RPC integration" -msgstr "ubus 通過 JSON-RPC 整合的虛擬路徑字首" +msgstr "虛擬路徑字首,其用於透過 JSON-RPC 整合的 ubus" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:167 msgid "Will not use HTTP authentication if not present" msgstr "如果不存在,將不使用 HTTP 身份驗證" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:242 msgid "a.k.a CommonName" msgstr "又名 CommonName" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:17 #: applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json:3 msgid "uHTTPd" -msgstr "uHTTPd" +msgstr "uHTTPd精簡http伺服器" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:229 msgid "uHTTPd Self-signed Certificate Parameters" msgstr "uHTTPd 自簽名證書引數" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:114 msgid "" "uHTTPd will generate a new self-signed certificate using the configuration " "shown below." msgstr "uHTTPd 將使用下面顯示的配置生成新的自簽名證書。" -#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +#: applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js:187 msgid "ubus integration is disabled if not present" -msgstr "如果不存在,則禁用 ubus 整合" +msgstr "如果留空,則 ubus 整合將被停用" #~ msgid "HTTPS Certificate (DER Encoded)" #~ msgstr "HTTPS 證書(DER 編碼)" diff --git a/applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json b/applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json index db3be65088..e372a37d0f 100644 --- a/applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json +++ b/applications/luci-app-uhttpd/root/usr/share/luci/menu.d/luci-app-uhttpd.json @@ -1,14 +1,13 @@ { - "admin/services/uhttpd/*": { + "admin/services/uhttpd": { "title": "uHTTPd", "action": { - "type": "cbi", - "path": "uhttpd/uhttpd", - "post": { "cbi.submit": true } + "type": "view", + "path": "uhttpd/uhttpd" }, "depends": { "acl": [ "luci-app-uhttpd" ], "uci": { "uhttpd": true } } } -} +}
\ No newline at end of file diff --git a/applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json b/applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json index d3b93523cc..f03d0d1a45 100644 --- a/applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json +++ b/applications/luci-app-uhttpd/root/usr/share/rpcd/acl.d/luci-app-uhttpd.json @@ -2,10 +2,19 @@ "luci-app-uhttpd": { "description": "Grant UCI access for luci-app-uhttpd", "read": { - "uci": [ "uhttpd" ] + "uci": ["uhttpd"], + "file": { + "/*": ["read"], + "/etc/init.d/uhttpd restart": ["exec"] + } }, "write": { - "uci": [ "uhttpd" ] + "uci": ["uhttpd"], + "file": { + "/etc/luci-uploads/*": ["write"], + "/etc/uhttpd.key": ["write"], + "/etc/uhttpd.crt": ["write"] + } } } } |