+++ /dev/null
-#
-#
-# This is free software, licensed under the Apache License, Version 2.0 .
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=luci-app-radicale
-
-PKG_VERSION:=1.1.0
-
-PKG_RELEASE:=3
-
-PKG_LICENSE:=Apache-2.0
-
-LUCI_TITLE:=LuCI Support for Radicale CardDAV/CalDAV
-LUCI_DEPENDS:=+luci-compat +luci-lib-ipkg +luci-base +radicale
-
-define Package/$(PKG_NAME)/config
-# shown in make menuconfig <Help>
-help
- $(LUCI_TITLE)
- .
- Version: $(PKG_VERSION)-$(PKG_RELEASE)
- $(PKG_MAINTAINER)
-endef
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
+++ /dev/null
--- Copyright 2014-2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
--- Licensed under the Apache License, Version 2.0
-
-module("luci.controller.radicale", package.seeall)
-
-local NX = require("nixio")
-local NXFS = require("nixio.fs")
-local DISP = require("luci.dispatcher")
-local HTTP = require("luci.http")
-local I18N = require("luci.i18n") -- not globally avalible here
-local IPKG = require("luci.model.ipkg")
-local UTIL = require("luci.util")
-local SYS = require("luci.sys")
-
-local srv_name = "radicale"
-local srv_ver_min = "1.1" -- minimum version of service required
-local srv_ver_cmd = [[/usr/bin/radicale --version]]
-local app_name = "luci-app-radicale"
-local app_title = I18N.translate("Radicale CalDAV/CardDAV Server")
-local app_version = "1.1.0-1"
-
-function index()
- entry( {"admin", "services", "radicale"}, alias("admin", "services", "radicale", "edit"), _("CalDAV/CardDAV"), 58).acl_depends = { "luci-app-radicale" }
- entry( {"admin", "services", "radicale", "edit"}, cbi("radicale") ).leaf = true
- entry( {"admin", "services", "radicale", "logview"}, call("_logread") ).leaf = true
- entry( {"admin", "services", "radicale", "startstop"}, post("_startstop") ).leaf = true
- entry( {"admin", "services", "radicale", "status"}, call("_status") ).leaf = true
-end
-
--- Application / Service specific information functions
-function app_description()
- return I18N.translate("The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) server solution.") .. [[<br />]]
- .. I18N.translate("Calendars and address books are available for both local and remote access, possibly limited through authentication policies.") .. [[<br />]]
- .. I18N.translate("They can be viewed and edited by calendar and contact clients on mobile phones or computers.")
-end
-function app_title_main()
- return [[<a href="javascript:alert(']]
- .. I18N.translate("Version Information")
- .. [[\n\n]] .. app_name
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]] .. app_version
- .. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("required") .. [[:]]
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
- .. srv_ver_min .. [[ ]] .. I18N.translate("or higher")
- .. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("installed") .. [[:]]
- .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
- .. (service_version() or I18N.translate("NOT installed"))
- .. [[\n\n]]
- .. [[')">]]
- .. I18N.translate(app_title)
- .. [[</a>]]
-end
-function app_title_back()
- return [[<a href="]]
- .. DISP.build_url("admin", "services", "radicale")
- .. [[">]]
- .. I18N.translate(app_title)
- .. [[</a>]]
-end
-function app_err_value()
- if not service_version() then
- return [[<h3><strong><br /><font color="red">    ]]
- .. I18N.translate("Software package '%s' is not installed." % srv_name)
- .. [[</font><br /><br />      ]]
- .. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min
- .. [[<br /><br />    ]]
- .. [[<a href="]] .. DISP.build_url("admin", "system", "packages") ..[[">]]
- .. I18N.translate("Please install current version !")
- .. [[</a><br /> </strong></h3>]]
- else
- return [[<h3><strong><br /><font color="red">    ]]
- .. I18N.translate("Software package '%s' is outdated." % srv_name)
- .. [[</font><br /><br />      ]]
- .. I18N.translate("installed") .. [[: ]] .. srv_name .. [[ ]] .. service_version()
- .. [[<br />      ]]
- .. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min
- .. [[<br /><br />    ]]
- .. [[<a href="]] .. DISP.build_url("admin", "system", "packages") ..[[">]]
- .. I18N.translate("Please update to current version !")
- .. [[</a><br /> </strong></h3>]]
- end
-end
-
-function service_version()
- local ver = nil
- IPKG.list_installed(srv_name, function(n, v, d)
- if v and (#v > 0) then ver = v end
- end
- )
- if not ver or (#ver == 0) then
- ver = UTIL.exec(srv_ver_cmd)
- if #ver == 0 then ver = nil end
- end
- return ver
-end
-function service_ok()
- return IPKG.compare_versions((service_version() or "0"), ">=", srv_ver_min)
-end
-
--- called by XHR.get from detail_logview.htm
-function _logread()
- -- read application settings
- local uci = UCI.cursor()
- local logfile = uci:get("radicale", "radicale", "logfile") or "/var/log/radicale"
- uci:unload("radicale")
-
- local ldata=NXFS.readfile(logfile)
- if not ldata or #ldata == 0 then
- ldata="_nodata_"
- end
- HTTP.write(ldata)
-end
-
--- called by XHR.get from detail_startstop.htm
-function _startstop()
- local pid = get_pid()
- if pid > 0 then
- SYS.call("/etc/init.d/radicale stop")
- NX.nanosleep(1) -- sleep a second
- if NX.kill(pid, 0) then -- still running
- NX.kill(pid, 9) -- send SIGKILL
- end
- pid = 0
- else
- SYS.call("/etc/init.d/radicale start")
- NX.nanosleep(1) -- sleep a second
- pid = get_pid()
- if pid > 0 and not NX.kill(pid, 0) then
- pid = 0 -- process did not start
- end
- end
- HTTP.write(tostring(pid)) -- HTTP needs string not number
-end
-
--- called by XHR.poll from detail_startstop.htm
-function _status()
- local pid = get_pid()
- HTTP.write(tostring(pid)) -- HTTP needs string not number
-end
-
---return pid of running process
-function get_pid()
- return tonumber(SYS.exec([[ps | grep "[p]ython.*[r]adicale" 2>/dev/null | awk '{print $1}']])) or 0
-end
-
--- replacement of build-in parse of "Value"
--- modified AbstractValue.parse(self, section, novld) from cbi.lua
--- validate is called if rmempty/optional true or false
--- before write check if forcewrite, value eq default, and more
-function value_parse(self, section, novld)
- local fvalue = self:formvalue(section)
- local fexist = ( fvalue and (#fvalue > 0) ) -- not "nil" and "not empty"
- local cvalue = self:cfgvalue(section)
- local rm_opt = ( self.rmempty or self.optional )
- local eq_cfg -- flag: equal cfgvalue
-
- -- If favlue and cvalue are both tables and have the same content
- -- make them identical
- if type(fvalue) == "table" and type(cvalue) == "table" then
- eq_cfg = (#fvalue == #cvalue)
- if eq_cfg then
- for i=1, #fvalue do
- if cvalue[i] ~= fvalue[i] then
- eq_cfg = false
- end
- end
- end
- if eq_cfg then
- fvalue = cvalue
- end
- end
-
- -- removed parameter "section" from function call because used/accepted nowhere
- -- also removed call to function "transfer"
- local vvalue, errtxt = self:validate(fvalue)
-
- -- error handling; validate return "nil"
- if not vvalue then
- if novld then -- and "novld" set
- return -- then exit without raising an error
- end
-
- if fexist then -- and there is a formvalue
- self:add_error(section, "invalid", errtxt)
- return -- so data are invalid
- elseif not rm_opt then -- and empty formvalue but NOT (rmempty or optional) set
- self:add_error(section, "missing", errtxt)
- return -- so data is missing
- elseif errtxt then
- self:add_error(section, "invalid", errtxt)
- return
- end
--- error ("\n option: " .. self.option ..
--- "\n fvalue: " .. tostring(fvalue) ..
--- "\n fexist: " .. tostring(fexist) ..
--- "\n cvalue: " .. tostring(cvalue) ..
--- "\n vvalue: " .. tostring(vvalue) ..
--- "\n vexist: " .. tostring(vexist) ..
--- "\n rm_opt: " .. tostring(rm_opt) ..
--- "\n eq_cfg: " .. tostring(eq_cfg) ..
--- "\n eq_def: " .. tostring(eq_def) ..
--- "\n novld : " .. tostring(novld) ..
--- "\n errtxt: " .. tostring(errtxt) )
- end
-
- -- lets continue with value returned from validate
- eq_cfg = ( vvalue == cvalue ) -- update equal_config flag
- local vexist = ( vvalue and (#vvalue > 0) ) and true or false -- not "nil" and "not empty"
- local eq_def = ( vvalue == self.default ) -- equal_default flag
-
- -- (rmempty or optional) and (no data or equal_default)
- if rm_opt and (not vexist or eq_def) then
- if self:remove(section) then -- remove data from UCI
- self.section.changed = true -- and push events
- end
- return
- end
-
- -- not forcewrite and no changes, so nothing to write
- if not self.forcewrite and eq_cfg then
- return
- end
-
- -- we should have a valid value here
- assert (vvalue, "\n option: " .. self.option ..
- "\n fvalue: " .. tostring(fvalue) ..
- "\n fexist: " .. tostring(fexist) ..
- "\n cvalue: " .. tostring(cvalue) ..
- "\n vvalue: " .. tostring(vvalue) ..
- "\n vexist: " .. tostring(vexist) ..
- "\n rm_opt: " .. tostring(rm_opt) ..
- "\n eq_cfg: " .. tostring(eq_cfg) ..
- "\n eq_def: " .. tostring(eq_def) ..
- "\n errtxt: " .. tostring(errtxt) )
-
- -- write data to UCI; raise event only on changes
- if self:write(section, vvalue) and not eq_cfg then
- self.section.changed = true
- end
-end
+++ /dev/null
--- Copyright 2015-2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
--- Licensed under the Apache License, Version 2.0
-
-local NXFS = require("nixio.fs")
-local DISP = require("luci.dispatcher")
-local DTYP = require("luci.cbi.datatypes")
-local HTTP = require("luci.http")
-local UTIL = require("luci.util")
-local UCI = require("luci.model.uci")
-local SYS = require("luci.sys")
-local WADM = require("luci.tools.webadmin")
-local CTRL = require("luci.controller.radicale") -- this application's controller and multiused functions
-
--- #################################################################################################
--- Error handling if not installed or wrong version -- #########################
-if not CTRL.service_ok() then
- local f = SimpleForm("__sf")
- f.title = CTRL.app_title_main()
- f.description = CTRL.app_description()
- f.embedded = true
- f.submit = false
- f.reset = false
-
- local s = f:section(SimpleSection)
- s.title = [[<font color="red">]] .. [[<strong>]]
- .. translate("Software update required")
- .. [[</strong>]] .. [[</font>]]
-
- local v = s:option(DummyValue, "_dv")
- v.rawhtml = true
- v.value = CTRL.app_err_value
-
- return f
-end
-
--- #################################################################################################
--- Error handling if no config, create an empty one -- #########################
-if not NXFS.access("/etc/config/radicale") then
- NXFS.writefile("/etc/config/radicale", "")
-end
-
--- #################################################################################################
--- takeover arguments if any -- ################################################
--- then show/edit selected file
-if arg[1] then
- local argument = arg[1]
- local filename = ""
-
- -- SimpleForm ------------------------------------------------
- local ft = SimpleForm("_text")
- ft.title = CTRL.app_title_back()
- ft.description = CTRL.app_description()
- ft.redirect = DISP.build_url("admin", "services", "radicale") .. "#cbi-radicale-" .. argument
- if argument == "logger" then
- ft.reset = false
- ft.submit = translate("Reload")
- local uci = UCI.cursor()
- filename = uci:get("radicale", "logger", "file_path") or "/var/log/radicale"
- uci:unload("radicale")
- filename = filename .. "/radicale"
- elseif argument == "auth" then
- ft.submit = translate("Save")
- filename = "/etc/radicale/users"
- elseif argument == "rights" then
- ft.submit = translate("Save")
- filename = "/etc/radicale/rights"
- else
- error("Invalid argument given as section")
- end
- if argument ~= "logger" and not NXFS.access(filename) then
- NXFS.writefile(filename, "")
- end
-
- -- SimpleSection ---------------------------------------------
- local fs = ft:section(SimpleSection)
- if argument == "logger" then
- fs.title = translate("Log-file Viewer")
- fs.description = translate("Please press [Reload] button below to reread the file.")
- elseif argument == "auth" then
- fs.title = translate("Authentication")
- fs.description = translate("Place here the 'user:password' pairs for your users which should have access to Radicale.")
- .. [[<br /><strong>]]
- .. translate("Keep in mind to use the correct hashing algorithm !")
- .. [[</strong>]]
- else -- rights
- fs.title = translate("Rights")
- fs.description = translate("Authentication login is matched against the 'user' key, "
- .. "and collection's path is matched against the 'collection' key.") .. " "
- .. translate("You can use Python's ConfigParser interpolation values %(login)s and %(path)s.") .. " "
- .. translate("You can also get groups from the user regex in the collection with {0}, {1}, etc.")
- .. [[<br />]]
- .. translate("For example, for the 'user' key, '.+' means 'authenticated user'" .. " "
- .. "and '.*' means 'anybody' (including anonymous users).")
- .. [[<br />]]
- .. translate("Section names are only used for naming the rule.")
- .. [[<br />]]
- .. translate("Leading or ending slashes are trimmed from collection's path.")
- end
-
- -- TextValue -------------------------------------------------
- local tt = fs:option(TextValue, "_textvalue")
- tt.rmempty = true
- if argument == "logger" then
- tt.readonly = true
- tt.rows = 30
- function tt.write()
- HTTP.redirect(DISP.build_url("admin", "services", "radicale", "edit", argument))
- end
- else
- tt.rows = 15
- function tt.write(self, section, value)
- if not value then value = "" end
- NXFS.writefile(filename, value:gsub("\r\n", "\n"))
- return true --HTTP.redirect(DISP.build_url("admin", "services", "radicale", "edit") .. "#cbi-radicale-" .. argument)
- end
- end
-
- function tt.cfgvalue()
- return NXFS.readfile(filename) or
- string.format(translate("File '%s' not found !"), filename)
- end
-
- return ft
-
-end
-
--- cbi-map -- ##################################################################
-local m = Map("radicale")
-m.title = CTRL.app_title_main()
-m.description = CTRL.app_description()
-m.template = "radicale/tabmap_nsections"
-m.tabbed = true
-function m.commit_handler(self)
- if self.changed then -- changes ?
- os.execute("/etc/init.d/radicale reload &") -- reload configuration
- end
-end
-
--- cbi-section "System" -- #####################################################
-local sys = m:section( NamedSection, "system", "system" )
-sys.title = translate("System")
-sys.description = nil
-function sys.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- start/stop button -----------------------------------------------------------
-local btn = sys:option(DummyValue, "_startstop")
-btn.template = "radicale/btn_startstop"
-btn.inputstyle = nil
-btn.rmempty = true
-btn.title = translate("Start / Stop")
-btn.description = translate("Start/Stop Radicale server")
-function btn.cfgvalue(self, section)
- local pid = CTRL.get_pid(true)
- if pid > 0 then
- btn.inputtitle = "PID: " .. pid
- btn.inputstyle = "reset"
- btn.disabled = false
- else
- btn.inputtitle = translate("Start")
- btn.inputstyle = "apply"
- btn.disabled = false
- end
- return true
-end
-
--- enabled ---------------------------------------------------------------------
-local ena = sys:option(Flag, "_enabled")
-ena.title = translate("Auto-start")
-ena.description = translate("Enable/Disable auto-start of Radicale on system start-up and interface events")
-ena.orientation = "horizontal" -- put description under the checkbox
-ena.rmempty = false -- force write() function
-function ena.cfgvalue(self, section)
- return (SYS.init.enabled("radicale")) and self.enabled or self.disabled
-end
-function ena.write(self, section, value)
- if value == self.enabled then
- return SYS.init.enable("radicale")
- else
- return SYS.init.disable("radicale")
- end
-end
-
--- boot_delay ------------------------------------------------------------------
-local bd = sys:option(Value, "boot_delay")
-bd.title = translate("Boot delay")
-bd.description = translate("Delay (in seconds) during system boot before Radicale start")
- .. [[<br />]]
- .. translate("During delay ifup-events are not monitored !")
-bd.default = "10"
-function bd.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function bd.validate(self, value)
- local val = tonumber(value)
- if not val then
- return nil, self.title .. ": " .. translate("Value is not a number")
- elseif val < 0 or val > 300 then
- return nil, self.title .. ": " .. translate("Value not between 0 and 300")
- end
- return value
-end
-
-
--- cbi-section "Server" -- #####################################################
-local srv = m:section( NamedSection, "server", "setting" )
-srv.title = translate("Server")
-srv.description = nil
-function srv.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- hosts -----------------------------------------------------------------------
-local sh = srv:option( DynamicList, "hosts" )
-sh.title = translate("Address:Port")
-sh.description = translate("'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on")
- .. [[<br /><strong>]]
- .. translate("Port numbers below 1024 (Privileged ports) are not supported")
- .. [[</strong>]]
-sh.placeholder = "0.0.0.0:5232"
-sh.rmempty = true
-function sh.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- realm -----------------------------------------------------------------------
-local alm = srv:option( Value, "realm" )
-alm.title = translate("Logon message")
-alm.description = translate("Message displayed in the client when a password is needed.")
-alm.default = "Radicale - Password Required"
-function alm.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function alm.validate(self, value)
- if value then
- return value
- else
- return self.default
- end
-end
-
--- ssl -------------------------------------------------------------------------
-local ssl = srv:option( Flag, "ssl" )
-ssl.title = translate("Enable HTTPS")
-ssl.description = nil
-function ssl.write(self, section, value)
- if value == "0" then -- delete all if not https enabled
- self.map:del(section, "protocol") -- protocol
- self.map:del(section, "certificate") -- certificate
- self.map:del(section, "key") -- private key
- self.map:del(section, "ciphers") -- ciphers
- return self.map:del(section, self.option)
- else
- return self.map:set(section, self.option, value)
- end
-end
-
--- protocol --------------------------------------------------------------------
-local prt = srv:option( ListValue, "protocol" )
-prt.title = translate("SSL Protocol")
-prt.description = translate("'AUTO' selects the highest protocol version that client and server support.")
-prt.widget = "select"
-prt.default = "PROTOCOL_SSLv23"
-prt:depends ("ssl", "1")
-prt:value ("PROTOCOL_SSLv23", translate("AUTO"))
-prt:value ("PROTOCOL_SSLv2", "SSL v2")
-prt:value ("PROTOCOL_SSLv3", "SSL v3")
-prt:value ("PROTOCOL_TLSv1", "TLS v1")
-prt:value ("PROTOCOL_TLSv1_1", "TLS v1.1")
-prt:value ("PROTOCOL_TLSv1_2", "TLS v1.2")
-function prt.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- certificate -----------------------------------------------------------------
-local crt = srv:option( Value, "certificate" )
-crt.title = translate("Certificate file")
-crt.description = translate("Full path and file name of certificate")
-crt.placeholder = "/etc/radicale/ssl/server.crt"
-crt:depends ("ssl", "1")
-function crt.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function crt.validate(self, value)
- local _ssl = ssl:formvalue(srv.section) or "0"
- if _ssl == "0" then
- return "" -- ignore if not https enabled
- end
- if value then -- otherwise errors in datatype check
- if DTYP.file(value) then
- return value
- else
- return nil, self.title .. ": " .. translate("File not found !")
- end
- else
- return nil, self.title .. ": " .. translate("Path/File required !")
- end
-end
-
--- key -------------------------------------------------------------------------
-local key = srv:option( Value, "key" )
-key.title = translate("Private key file")
-key.description = translate("Full path and file name of private key")
-key.placeholder = "/etc/radicale/ssl/server.key"
-key:depends ("ssl", "1")
-function key.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function key.validate(self, value)
- local _ssl = ssl:formvalue(srv.section) or "0"
- if _ssl == "0" then
- return "" -- ignore if not https enabled
- end
- if value then -- otherwise errors in datatype check
- if DTYP.file(value) then
- return value
- else
- return nil, self.title .. ": " .. translate("File not found !")
- end
- else
- return nil, self.title .. ": " .. translate("Path/File required !")
- end
-end
-
--- ciphers ---------------------------------------------------------------------
---local cip = srv:option( Value, "ciphers" )
---cip.title = translate("Ciphers")
---cip.description = translate("OPTIONAL: See python's ssl module for available ciphers")
---cip.rmempty = true
---cip:depends ("ssl", "1")
-
--- cbi-section "Authentication" -- #############################################
-local aut = m:section( NamedSection, "auth", "setting" )
-aut.title = translate("Authentication")
-aut.description = translate("Authentication method to allow access to Radicale server.")
-function aut.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- type -----------------------------------------------------------------------
-local aty = aut:option( ListValue, "type" )
-aty.title = translate("Authentication method")
-aty.description = nil
-aty.widget = "select"
-aty.default = "None"
-aty:value ("None", translate("None"))
-aty:value ("htpasswd", translate("htpasswd file"))
---aty:value ("IMAP", "IMAP") -- The IMAP authentication module relies on the imaplib module.
---aty:value ("LDAP", "LDAP") -- The LDAP authentication module relies on the python-ldap module.
---aty:value ("PAM", "PAM") -- The PAM authentication module relies on the python-pam module.
---aty:value ("courier", "courier")
---aty:value ("HTTP", "HTTP") -- The HTTP authentication module relies on the requests module
---aty:value ("remote_user", "remote_user")
---aty:value ("custom", translate("custom"))
-function aty.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function aty.write(self, section, value)
- if value ~= "htpasswd" then
- self.map:del(section, "htpasswd_encryption")
- elseif value ~= "IMAP" then
- self.map:del(section, "imap_hostname")
- self.map:del(section, "imap_port")
- self.map:del(section, "imap_ssl")
- end
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
--- htpasswd_encryption ---------------------------------------------------------
-local hte = aut:option( ListValue, "htpasswd_encryption" )
-hte.title = translate("Encryption method")
-hte.description = nil
-hte.widget = "select"
-hte.default = "crypt"
-hte:depends ("type", "htpasswd")
-hte:value ("crypt", translate("crypt"))
-hte:value ("plain", translate("plain"))
-hte:value ("sha1", translate("SHA-1"))
-hte:value ("ssha", translate("salted SHA-1"))
-function hte.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- htpasswd_file (dummy) -------------------------------------------------------
-local htf = aut:option( Value, "_htf" )
-htf.title = translate("htpasswd file")
-htf.description = [[<strong>]]
- .. translate("Read only!")
- .. [[</strong> ]]
- .. translate("Radicale uses '/etc/radicale/users' as htpasswd file.")
- .. [[<br /><a href="]]
- .. DISP.build_url("admin", "services", "radicale", "edit") .. [[/auth]]
- .. [[">]]
- .. translate("To edit the file follow this link!")
- .. [[</a>]]
-htf.readonly = true
-htf:depends ("type", "htpasswd")
-function htf.cfgvalue()
- return "/etc/radicale/users"
-end
-
--- cbi-section "Rights" -- #####################################################
-local rig = m:section( NamedSection, "rights", "setting" )
-rig.title = translate("Rights")
-rig.description = translate("Control the access to data collections.")
-function rig.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- type -----------------------------------------------------------------------
-local rty = rig:option( ListValue, "type" )
-rty.title = translate("Rights backend")
-rty.description = nil
-rty.widget = "select"
-rty.default = "None"
-rty:value ("None", translate("Full access for everybody (including anonymous)"))
-rty:value ("authenticated", translate("Full access for authenticated Users") )
-rty:value ("owner_only", translate("Full access for Owner only") )
-rty:value ("owner_write", translate("Owner allow write, authenticated users allow read") )
-rty:value ("from_file", translate("Rights are based on a regexp-based file") )
---rty:value ("custom", "Custom handler")
-function rty.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function rty.write(self, section, value)
- if value ~= "custom" then
- self.map:del(section, "custom_handler")
- end
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
--- from_file (dummy) -----------------------------------------------------------
-local rtf = rig:option( Value, "_rtf" )
-rtf.title = translate("RegExp file")
-rtf.description = [[<strong>]]
- .. translate("Read only!")
- .. [[</strong> ]]
- .. translate("Radicale uses '/etc/radicale/rights' as regexp-based file.")
- .. [[<br /><a href="]]
- .. DISP.build_url("admin", "services", "radicale", "edit") .. [[/rights]]
- .. [[">]]
- .. translate("To edit the file follow this link!")
- .. [[</a>]]
-rtf.readonly = true
-rtf:depends ("type", "from_file")
-function rtf.cfgvalue()
- return "/etc/radicale/rights"
-end
-
--- cbi-section "Storage" -- ####################################################
-local sto = m:section( NamedSection, "storage", "setting" )
-sto.title = translate("Storage")
-sto.description = nil
-function sto.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- type -----------------------------------------------------------------------
-local sty = sto:option( ListValue, "type" )
-sty.title = translate("Storage backend")
-sty.description = translate("WARNING: Only 'File-system' is documented and tested by Radicale development")
-sty.widget = "select"
-sty.default = "filesystem"
-sty:value ("filesystem", translate("File-system"))
---sty:value ("multifilesystem", translate("") )
---sty:value ("database", translate("Database") )
---sty:value ("custom", translate("Custom") )
-function sty.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function sty.write(self, section, value)
- if value ~= "filesystem" then
- self.map:del(section, "filesystem_folder")
- end
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
---filesystem_folder ------------------------------------------------------------
-local sfi = sto:option( Value, "filesystem_folder" )
-sfi.title = translate("Directory")
-sfi.description = nil
-sfi.placeholder = "/srv/radicale"
-sfi:depends ("type", "filesystem")
-function sfi.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function sfi.validate(self, value)
- local _typ = sty:formvalue(sto.section) or ""
- if _typ ~= "filesystem" then
- return "" -- ignore if not htpasswd
- end
- if value then -- otherwise errors in datatype check
- if DTYP.directory(value) then
- return value
- else
- return nil, self.title .. ": " .. translate("Directory not exists/found !")
- end
- else
- return nil, self.title .. ": " .. translate("Directory required !")
- end
-end
-
--- cbi-section "Logging" -- ####################################################
-local log = m:section( NamedSection, "logger", "logging" )
-log.title = translate("Logging")
-log.description = nil
-function log.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- console_level ---------------------------------------------------------------
-local lco = log:option( ListValue, "console_level" )
-lco.title = translate("Console Log level")
-lco.description = nil
-lco.widget = "select"
-lco.default = "ERROR"
-lco:value ("DEBUG", translate("Debug"))
-lco:value ("INFO", translate("Info") )
-lco:value ("WARNING", translate("Warning") )
-lco:value ("ERROR", translate("Error") )
-lco:value ("CRITICAL", translate("Critical") )
-function lco.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lco.write(self, section, value)
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
--- syslog_level ----------------------------------------------------------------
-local lsl = log:option( ListValue, "syslog_level" )
-lsl.title = translate("Syslog Log level")
-lsl.description = nil
-lsl.widget = "select"
-lsl.default = "WARNING"
-lsl:value ("DEBUG", translate("Debug"))
-lsl:value ("INFO", translate("Info") )
-lsl:value ("WARNING", translate("Warning") )
-lsl:value ("ERROR", translate("Error") )
-lsl:value ("CRITICAL", translate("Critical") )
-function lsl.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lsl.write(self, section, value)
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
--- file_level ------------------------------------------------------------------
-local lfi = log:option( ListValue, "file_level" )
-lfi.title = translate("File Log level")
-lfi.description = nil
-lfi.widget = "select"
-lfi.default = "INFO"
-lfi:value ("DEBUG", translate("Debug"))
-lfi:value ("INFO", translate("Info") )
-lfi:value ("WARNING", translate("Warning") )
-lfi:value ("ERROR", translate("Error") )
-lfi:value ("CRITICAL", translate("Critical") )
-function lfi.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lfi.write(self, section, value)
- if value ~= self.default then
- return self.map:set(section, self.option, value)
- else
- return self.map:del(section, self.option)
- end
-end
-
--- file_path -------------------------------------------------------------------
-local lfp = log:option( Value, "file_path" )
-lfp.title = translate("Log-file directory")
-lfp.description = translate("Directory where the rotating log-files are stored")
- .. [[<br /><a href="]]
- .. DISP.build_url("admin", "services", "radicale", "edit") .. [[/logger]]
- .. [[">]]
- .. translate("To view latest log file follow this link!")
- .. [[</a>]]
-lfp.default = "/var/log/radicale"
-function lfp.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lfp.validate(self, value)
- if not value or (#value < 1) or (value:find("/") ~= 1) then
- return nil, self.title .. ": " .. translate("no valid path given!")
- end
- return value
-end
-
--- file_maxbytes ---------------------------------------------------------------
-local lmb = log:option( Value, "file_maxbytes" )
-lmb.title = translate("Log-file size")
-lmb.description = translate("Maximum size of each rotation log-file.")
- .. [[<br /><strong>]]
- .. translate("Setting this parameter to '0' will disable rotation of log-file.")
- .. [[</strong>]]
-lmb.default = "8196"
-function lmb.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lmb.validate(self, value)
- if value then -- otherwise errors in datatype check
- if DTYP.uinteger(value) then
- return value
- else
- return nil, self.title .. ": " .. translate("Value is not an Integer >= 0 !")
- end
- else
- return nil, self.title .. ": " .. translate("Value required ! Integer >= 0 !")
- end
-end
-
--- file_backupcount ------------------------------------------------------------
-local lbc = log:option( Value, "file_backupcount" )
-lbc.title = translate("Log-backup Count")
-lbc.description = translate("Number of backup files of log to create.")
- .. [[<br /><strong>]]
- .. translate("Setting this parameter to '0' will disable rotation of log-file.")
- .. [[</strong>]]
-lbc.default = "1"
-function lbc.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-function lbc.validate(self, value)
- if value then -- otherwise errors in datatype check
- if DTYP.uinteger(value) then
- return value
- else
- return nil, self.title .. ": " .. translate("Value is not an Integer >= 0 !")
- end
- else
- return nil, self.title .. ": " .. translate("Value required ! Integer >= 0 !")
- end
-end
-
--- cbi-section "Encoding" -- ###################################################
-local enc = m:section( NamedSection, "encoding", "setting" )
-enc.title = translate("Encoding")
-enc.description = translate("Change here the encoding Radicale will use instead of 'UTF-8' "
- .. "for responses to the client and/or to store data inside collections.")
-function enc.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- request ---------------------------------------------------------------------
-local enr = enc:option( Value, "request" )
-enr.title = translate("Response Encoding")
-enr.description = translate("Encoding for responding requests.")
-enr.default = "utf-8"
-function enr.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- stock -----------------------------------------------------------------------
-local ens = enc:option( Value, "stock" )
-ens.title = translate("Storage Encoding")
-ens.description = translate("Encoding for storing local collections.")
-ens.default = "utf-8"
-function ens.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- cbi-section "Headers" -- ####################################################
-local hea = m:section( NamedSection, "headers", "setting" )
-hea.title = translate("Additional HTTP headers")
-hea.description = translate("Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources (e.g. fonts, JavaScript, etc.) "
- .. "on a web page to be requested from another domain outside the domain from which the resource originated.")
-function hea.cfgvalue(self, section)
- if not self.map:get(section) then -- section might not exist
- self.map:set(section, nil, self.sectiontype)
- end
- return self.map:get(section)
-end
-
--- Access_Control_Allow_Origin -------------------------------------------------
-local heo = hea:option( DynamicList, "Access_Control_Allow_Origin" )
-heo.title = "Access-Control-Allow-Origin"
-heo.description = nil
-function heo.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- Access_Control_Allow_Methods ------------------------------------------------
-local hem = hea:option( DynamicList, "Access_Control_Allow_Methods" )
-hem.title = "Access-Control-Allow-Methods"
-hem.description = nil
-function hem.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- Access_Control_Allow_Headers ------------------------------------------------
-local heh = hea:option( DynamicList, "Access_Control_Allow_Headers" )
-heh.title = "Access-Control-Allow-Headers"
-heh.description = nil
-function heh.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
--- Access_Control_Expose_Headers -----------------------------------------------
-local hee = hea:option( DynamicList, "Access_Control_Expose_Headers" )
-hee.title = "Access-Control-Expose-Headers"
-hee.description = nil
-function hee.parse(self, section, novld)
- CTRL.value_parse(self, section, novld)
-end
-
-return m
+++ /dev/null
-
-<!-- ++ BEGIN ++ Radicale ++ btn_startstop.htm ++ -->
-<script>
-
- // show XHR.poll/XHR.get response on button
- function _data2elements(x) {
- var btn = document.getElementById("cbid.radicale.<%=section%>._startstop");
- if ( ! btn ) { return; } // security check
- if (x.responseText == "0") {
- btn.value = "<%:Start%>";
- btn.className = "cbi-button cbi-button-apply";
- btn.disabled = false;
- } else {
- btn.value = "PID: " + x.responseText;
- btn.className = "cbi-button cbi-button-reset";
- btn.disabled = false;
- }
- }
-
- // event handler for start/stop button
- function onclick_startstop(id) {
- // do start/stop
- var btnXHR = new XHR();
- btnXHR.post('<%=url([[admin/services/radicale/startstop]])%>', { token: '<%=token%>' },
- function(x) { _data2elements(x); }
- );
- }
-
- XHR.poll(-1, '<%=url([[admin/services/radicale/status]])%>', null,
- function(x, data) { _data2elements(x); }
- );
-
-</script>
-
-<%+cbi/valueheader%>
-
-<% if self:cfgvalue(section) ~= false then
--- We need to garantie that function cfgvalue run first to set missing parameters
-%>
- <!-- style="font-size: 100%;" needed for openwrt theme to fix font size -->
- <!-- type="button" onclick="..." enable standard onclick functionalty -->
- <input class="cbi-button cbi-input-<%=self.inputstyle or "button" %>" style="font-size: 100%;" type="button" onclick="onclick_startstop(this.id)"
- <%=
- attr("name", section) .. attr("id", cbid) .. attr("value", self.inputtitle) .. ifattr(self.disabled, "disabled")
- %> />
-<% end %>
-
-<%+cbi/valuefooter%>
-<!-- ++ END ++ Radicale ++ btn_startstop.htm ++ -->
+++ /dev/null
-<%- if firstmap and messages then local msg; for _, msg in ipairs(messages) do -%>
- <div class="errorbox"><%=pcdata(msg)%></div>
-<%- end end -%>
-
-<div class="cbi-map" id="cbi-<%=self.config%>">
- <% if self.title and #self.title > 0 then %>
- <h2 name="content"><%=self.title%></h2>
- <% end %>
- <% if self.description and #self.description > 0 then %>
- <div class="cbi-map-descr"><%=self.description%></div>
- <% end %>
- <%- if firstmap and (applymap or confirmmap) then -%>
- <%+cbi/apply_widget%>
- <% cbi_apply_widget() %>
- <div class="alert-message" id="cbi_apply_status" style="display:none"></div>
- <script>
- document.addEventListener("DOMContentLoaded", function() {
- <% if confirmmap then -%>
- uci_confirm(true, Date.now() + <%=confirmmap%> * 1000);
- <%- else -%>
- uci_apply(true);
- <%- end %>
- });
- </script>
- <%- end -%>
-
- <% if self.tabbed then %>
- <div>
- <% for i, section in ipairs(self.children) do
- tab = section.section or section.sectiontype %>
- <div class="cbi-tabcontainer"<%=
- attr("id", "container.m-%s.%s" %{ self.config, tab }) ..
- attr("data-tab", tab) ..
- attr("data-tab-title", section.title or tab)
- %>>
- <% section:render() %>
- </div>
- <% end %>
- </div>
-
- <% else %>
- <%- self:render_children() %>
- <% end %>
-
- <% if not self.save then -%>
- <div class="cbi-section-error">
- <% for _, section in ipairs(self.children) do %>
- <% if section.error and section.error[section.section] then -%>
- <ul><li>
- <%:One or more missing/invalid fields on tab%>: <%=section.title or section.section or section.sectiontype%>
- </li></ul>
- <%- end %>
- <% end %>
- </div>
- <%- end %>
-
- <br />
-
-</div>
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-03-01 05:42+0000\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ar/>\n"
-"Language: ar\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"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 5.10.3-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "المصادقة"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "حرج"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "تصحيح الأخطاء"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "الدليل"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "خطأ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "معلومات"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "تسجيل"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "لاشيء"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "إعادة تحميل"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "إحفظ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "الخادم"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "بداية"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "التخزين"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "نظام"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "الإصدار"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "تحذير"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-02-28 14:29+0000\n"
-"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/bg/>\n"
-"Language: bg\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-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' избира най-високата версия на протокола, която клиентът и сървърът "
-"поддържат."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Критично"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Дебъгване"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Грешка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Инфо"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Запази"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Начало"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Система"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-10-08 17:53+0000\n"
-"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsradicale/bn_BD/>\n"
-"Language: bn_BD\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-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "বুট বিলম্ব"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "ডিবাগ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "বিলম্বের সময় ifup-events পর্যবেক্ষণ করা হয় না!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "ভুল"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "তথ্য"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "লগিং"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "ইনস্টল করা না"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "বর্তমান সংস্করণ ইনস্টল করুন!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "সংরক্ষণ করুন"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "সফটওয়্যার প্যাকেজ '%s' ইনস্টল করা নেই।"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "সফটওয়্যার প্যাকেজ '%s' পুরনো।"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "শুরু করুন"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "শুরু/শেষ করুন"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "সিস্টেম"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "মান কোন সংখ্যা নয়"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "মান 0 এবং 300 এর মধ্যে নয়"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "সংস্করণ"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "সংস্করণ সংক্রান্ত তথ্য"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "সতর্কতা"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "ইনস্টল করা"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "বা উচ্চতর"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "আবশ্যক"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-03-18 11:11+0000\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ca/>\n"
-"Language: ca\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-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' tria la versió de protocol més alta que el client i el servidor "
-"admeten."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Capçaleres HTTP addicionals"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autenticació"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Mètode d'autenticació"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Mètode d'autenticació per permetre l'accés al servidor Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Inici automàtic"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Retard d'arrencada"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Controlar l'accés a les col·leccions de dades."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Depuració"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Directori on s'emmagatzemen els fitxers de registre temporals"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Mètode d'encriptatge"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Torna a carregar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Desar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-24 20:11+0000\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/cs/>\n"
-"Language: cs\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' vybere nejvyšší verzi protokolu podporovanou klientem i serverem."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"„nazev-hostiteel:port“ nebo „IPv4:port“ nebo „[IPv6]:port“ na které má "
-"Radicale očekávat spojení"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Dodatečná HTTP záhlaví"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adresa:port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Ověřování se"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Přihlašovací jméno je porovnáváno vůči klíči „user“ a popis umístění sbírky "
-"je porovnáván vůči klíči „collection“."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Metoda ověřování se"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Ověřovací metoda pro umožnění přístupu k Radicale serveru."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Automatické spouštění"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Zpoždění bootu"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Kalendáře a adresáře kontaktů jsou k dispozici jak pro lokální, tak vzdálený "
-"přístup – s tím, že je možné omezovat pomocí zásad ověřování se."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Soubor s certifikátem"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Zde případně změníte kódování které Radicale použije (namísto „UTF-8“) pro "
-"odpovědi klientům a/nebo ukládání dat ve sbírkách."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Stupeň podrobnosti záznamu události na konzoli"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Řídit přístup ke shromažďování dat."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritické"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Sdílení prostředků napříč původy (CORS) je mechanizmus, který umožňuje aby "
-"omezené prostředky (např. písma, JavaScript, atd.) na webové stránce byl "
-"vyžadován z jiné domény vně domény ze které prostředek vzešel."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Ladění"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Prodleva (v sekundách) při startu systému, se kterou má být Radicale "
-"spouštěno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Složka"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Složka neexistuje/nenalezena!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Složka vyžadována!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Složka ve které ukládat rotované soubory záznamu událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Během prodlení nejsou monitorovány události zapnutí rozhraní!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Zapnout HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Zap/vyp automatické spouštění Radicale při startu systému a událostech na "
-"rozhraní"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Enkódování"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Enkódování pro odpovídání na požadavky."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Kódování pro ukládání lokálních sbírek."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Metoda šifrování"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Chyba"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Soubor „%s“ nenalezen!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Stupeň podrobnosti záznamu událostí pro soubor"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Soubor nenalezen!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Souborový systém"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Například, pro klíč 'user', '.+' znamená 'authenticated user' a '.*' znamená "
-"'anybody' (včetně anonymních uživatelů)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Plný přístup pouze pro vlastníka"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Plný přístup pro ověřené uživatele"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Plný přístup pro každého (včetně anonymních)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Úplný popis umístění a název souboru certifikátu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Úplný popis umístění a název souboru se soukromým klíčem"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Udělit luci-app-radicale přístup do UCI nastavování"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Nezapomeňte použít správný algoritmus vytváření otisku!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Úvodní nebo koncová lomítka jsou z popisu umístění sbírky oříznuta."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Počet záloh záznamu událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Prohlížeč souboru záznamu událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Složka se souborem záznamu událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Velikost souboru záznamu událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Zaznamenávání událostí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Zpráva při přihlášení"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Nejvyšší velikost souboru záznamu událostí každé rotace."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Zpráva kterou zobrazit v klientovi pokud je zapotřebí zadat heslo."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NENÍ nainstalováno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Žádné"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Počet záložních souborů záznamu událostí, které vytvářet."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Jedna nebo vícero chybějících/neplatných kolonek na panelu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "Vlastníkovi umožnit zápis, přihlášeným uživatelům umožnit čtení"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Je vyžadován popis umístění / soubor!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Sem zadejte dvojice 'uzivatel:heslo' pro uživatele, kteří mají mít přístup "
-"do Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Nainstalujte aktuální verzi!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Soubor [Znovu načtěte] kliknutím na tlačítko níže."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Prosím zaktualizujte na nejnovější verzi!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Čísla portů pod 1024 (privilegované porty) nejsou podporovány"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Soubor se soukromým klíčem"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale používá „/etc/radicale/rights“ jako soubor, založený na regulárních "
-"výrazech."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale používá „/etc/radicale/users“ jako soubor htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Pouze pro čtení!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Soubor s regulárním výrazem"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Načíst znovu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Kódování odpovědi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Práva"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Oprávnění jsou založena na souboru, založeném na regulárních výrazech"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Podpůrná vrstva pro oprávnění"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protokol SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Uložit"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Názvy sekcí slouží pouze pro pojmenovávání pravidel."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Nastavení tohoto parametru na „0“ vypne rotaci souboru záznamu událostí."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Softwarový balíček „%s“ není nainstalován."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Softwarový balíček „%s“ je zastaralý."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Software je zapotřebí zaktualizovat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Spustit"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Spustit / zastavit"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Spustit/zastavit Radicale server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Úložiště"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Kódování úložiště"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Podpůrná vrstva úložiště"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Stupeň podrobnosti záznamu událostí do syslog"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Systém"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Radicale (projekt) je kompletní serverové řešení pro CalDAV (kalendáře) a "
-"CardDAV (kontakty)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Je možné je zobrazovat a upravovat klienty kalendáře a kontaktů na mobilních "
-"telefonech či počítačích."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Pro úpravu souboru následujte tento odkaz!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-"Pokud chcete zobrazit nejnovější soubor záznamu událostí, následujte tento "
-"odkaz!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Hodnota není číslo"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Hodnota není celé kladné číslo (včetně nuly)!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Hodnota není v rozsahu 0 až 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Je zapotřebí vyplnit hodnotu! Kladné celé číslo (včetně 0)!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Verze"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informace o verzi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"VAROVÁNÍ: Pouze volba „File-system“ je zdokumentována a testována vývojáři "
-"Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Varování"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Ve sbírkách je také možné získávat skupiny z regulárních výrazů uživatelů a "
-"to s {0}, {1}, atd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Je možné použít hodnoty %(login)s a %(path)s interpolace z Python "
-"ConfigParser."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "soubor htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "nainstalováno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "nezadán žádný platný popis umístění!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "nebo vyšší"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "holé"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "vyžadováno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "„prosolené“ SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-11-09 02:04+0000\n"
-"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/da/>\n"
-"Language: da\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.2-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"\"AUTO\" vælger den højeste protokolversion, som klienten og serveren "
-"understøtter."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Debug"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Fejl"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Logning"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Ingen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Genindlæs"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Gem"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Start"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Lager"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Advarsel"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: luci-app-radicale 1.1.0-1\n"
-"POT-Creation-Date: 2016-01-30 20:34+0100\n"
-"PO-Revision-Date: 2025-05-10 23:01+0000\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/de/>\n"
-"Language: de\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.12-dev\n"
-"X-Poedit-SourceCharset: UTF-8\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' wählt die höchste Protokollversion, die Client und Server "
-"unterstützen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Port' oder 'IPv4:Port' oder '[IPv6]:Port' die Radicale überwachen "
-"soll"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Zusätzliche HTTP headers"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adresse:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Authentifizierung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Der Login wird gegen die 'user' Schlüssel und die Pfadsammlung gegen die "
-"'collection' Schlüssel abgestimmt."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Authentifizierungsmethode"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-"Authentifizierungsmethode um den Zugang zum Radicale Server zu kontrollieren."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Autostart"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Systemstart-Verzögerung"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Auf Kalender und Adressbücher kann sowohl Lokal als auch Remote zugegriffen "
-"werden, soweit nicht durch Authentifizierungsrichtlinien begrenzt."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Zertifikat Datei"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Ändern Sie hier die Zeichenkodierung, die Radicale anstelle von \"UTF-8\" "
-"für Antworten an den Client und/oder zum Speichern von Daten in einer "
-"Sammlung verwendet."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Konsole Protokoll Level"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Kontrolliert den Zugriff auf die Daten Sammlungen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritisch"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Cross-Origin Resource Sharing (CORS) ist ein Mechanismus, um Webbrowsern "
-"oder auch anderen Webclients Cross-Origin-Requests zu ermöglichen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Debug"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Verzögerung (in Sekunden) während des Systemstarts, bevor Radicale startet"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Verzeichnis nicht gefunden / existiert nicht !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Verzeichnis benötigt !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-"Verzeichnis in dem die rollierenden Protokolldateien gespeichert werden"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Während der Verzögerung werden 'ifup'-Ereignisse nicht überwacht!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Verwende HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Aktiviert/Deaktiviert den Autostart von Radicale beim Systemstart und bei "
-"Schnittstellenereignissen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Zeichenkodierung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Zeichenkodierung für die Beantwortung von Anfragen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Zeichenkodierung für die Speicherung von lokalen Sammlungen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Verschlüsselungsmethode"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Fehler"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Datei '%s' wurde nicht gefunden!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Datei Protokoll Level"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Datei nicht gefunden !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Dateisystem"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Beispiel für den 'user'-Schlüssel: '.+' bedeutet 'authentifizierter "
-"Benutzer' und '.*' bedeutet 'jeder' (einschließlich anonyme Benutzer)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Voller Zugriff nur für den Besitzer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Voller Zugriff für authentifizierte Benutzer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Vollzugriff für jedermann (auch anonyme)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Vollständiger Pfad und Dateiname der Zertifikat Datei"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Vollständiger Pfad und Dateiname der Privaten Schlüsseldatei"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "UCI-Zugriff für luci-app-radicale erlauben"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Denken Sie daran, den korrekten Hash-Algorithmus zu verwenden!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"Schrägstriche ('/') am Anfang und Ende der Pfadangabe der Sammlung werden "
-"von der Pfadangabe abgeschnitten."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Protokoll Backup Zähler"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Protokolldatei Betrachter"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Protokoll-Datei Verzeichnis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Protokoll Dateigröße"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Protokollierung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Anmelde-Hinweis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Maximale Größe jeder rollierenden Protokoll-Datei."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Meldung im Client, wenn ein Kennwort erforderlich ist."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NICHT installiert"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Keine"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Anzahl der Protokoll Backup Dateien, die angelegt werden."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Ein oder mehrere fehlende/ungültige Felder auf der Registerkarte"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Besitzer haben Schreibrechte, authentifizierte Benutzer dürfen nur lesen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Pfad/Datei erforderlich!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Speichern Sie hier die 'user: password' Paare für die Benutzer, die Zugriff "
-"auf Radicale haben sollte."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Installieren Sie bitte die aktuelle Version!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Bitte drücken Sie die [Neu laden]-Schaltfläche unten, um die Datei neu "
-"einzulesen."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Aktualisieren Sie bitte auf die aktuelle Version!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Portnummern unter 1024 (Privilegierte Ports) werden nicht unterstützt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Private Schlüssel Datei"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV Dienst"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale verwendet '/etc/radicale/rights' als RegExp-basierte Datei."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale verwendet 'etc/radicale/users' als htpasswd Datei."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Nur lesbar!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "RegExp Datei"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Neu laden"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Antwort Zeichenkodierung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Berechtigungen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Rechte basieren auf einer RegExp-basierenden Datei"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Zugangsverwaltung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL Protokoll"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Speichern"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Abschnittsnamen werden nur für die Benennung der Regel verwendet."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Wenn dieser Parameter auf '0' gesetzt wird, wird die Protokolldatei nicht "
-"mehr rotiert."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Software Paket '%s' ist nicht installiert."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Software Paket '%s' ist nicht aktuell."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Softwareaktualisierung nötig"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Start"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Start / Stopp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Start / Stopp Radicale Dienst"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Datenspeicher"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Datenspeicher Kodierung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Datenspeicher Verwaltung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Systemlog Level"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Das Radicale Projekt bietet eine vollständige CalDAV (Kalender) und CardDAV "
-"(Adressbuch) Server Lösung."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Diese können von Kalender- und Adressbuch-Anwendungen auf mobilen Endgeräten "
-"und Computern angezeigt und bearbeitet werden."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Um die Datei zu bearbeiten, folgend Sie dieser Verknüpfung!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-"Zur Anzeige der letzten Protokolldatei, folgen Sie dieser Verknüpfung !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Wert ist keine Zahl"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Eingabe ist keine Ganzzahl >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Wert nicht zwischen 0 und 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Eingabe erforderlich ! Ganzzahl >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Versionsinformationen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"WARNUNG: Nur 'File-System' wird von der Radicale-Entwicklung dokumentiert "
-"und getestet"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Warnung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Sie können auch Gruppen aus der Benutzer regex in der Sammlung mit {0}, {1} "
-"usw. bekommen."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Sie können Python ConfigParser Werte '%(login)s' und '%(path)s' verwenden."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd Datei"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "installiert"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "Keine gültige Pfadangabe!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "oder höher"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "unverschlüsselt"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "erforderlich"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "Salted SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-02-01 16:02+0000\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/el/>\n"
-"Language: el\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-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Κρίσιμο"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Αποσφαλμάτωση"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Φάκελος"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Σφάλμα"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Διακομιστής"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Σύστημα"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-06-12 17:02+0000\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/es/>\n"
-"Language: es\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.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' selecciona la versión de protocolo más alta que el cliente y el "
-"servidor admiten."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'NombreDeHost:Puerto' o 'IPv4:Puerto' o '[IPv6]:Puerto' Radicale debería "
-"escuchar en"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Encabezados HTTP adicionales"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Dirección:Puerto"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autenticación"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"El inicio de sesión de autenticación se compara con la clave 'usuario', y la "
-"ruta de la colección se compara con la clave 'colección'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Método de autenticación"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Método de autenticación para permitir el acceso al servidor Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Inicio automático"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Retraso de arranque"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Los calendarios y las libretas de direcciones están disponibles para acceso "
-"local y remoto, posiblemente limitados a través de políticas de "
-"autenticación."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Archivo de certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Cambie aquí la codificación que usará Radicale en lugar de 'UTF-8' para las "
-"respuestas al cliente y/o para almacenar datos dentro de colecciones."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Nivel de registro de consola"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Controla el acceso a las colecciones de datos."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Crítico"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"El intercambio de recursos de origen cruzado (CORS) es un mecanismo que "
-"permite solicitar recursos restringidos (por ejemplo, fuentes, JavaScript, "
-"etc.) en una página web desde otro dominio fuera del dominio desde el que se "
-"originó el recurso."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Depuración"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Retraso (en segundos) durante el inicio del sistema antes del inicio de "
-"Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Directorio"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Directorio no existe/encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Directorio requerido!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Directorio donde se almacenan los archivos de registro rotativos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "¡Durante el retraso, los eventos de ifup no son monitoreados!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Activar HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Activar/Desactivar el inicio automático de Radicale en el inicio del sistema "
-"y los eventos de interfaz"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Codificación"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Codificación para responder solicitudes."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Codificación para almacenar colecciones locales."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Método de cifrado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Error"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "¡Archivo '%s' no encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Nivel de registro de archivo"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "¡Archivo no encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Sistema de archivos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Por ejemplo, para la clave 'usuario', '.+' significa 'usuario autenticado' y "
-"'.*' significa 'cualquiera' (incluidos los usuarios anónimos)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Acceso completo solo para el propietario"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Acceso completo para usuarios autenticados"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Acceso completo para todos (incluidos los anónimos)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Ruta completa y nombre de archivo del certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Ruta completa y nombre de archivo de clave privada"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Conceder acceso a UCI para luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "¡Tenga en cuenta usar el algoritmo de hash correcto!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"Las barras inclinadas iniciales o finales se recortan de la ruta de la "
-"colección."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Cuenta de respaldo de registro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Visor de archivos de registro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Directorio de archivo de registro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Tamaño del archivo de registro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Inicio sesión"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Mensaje de inicio de sesión"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Tamaño máximo de cada archivo de registro de rotación."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-"Mensaje que se muestra en el cliente cuando se necesita una contraseña."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "No instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Ninguno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Número de archivos de respaldo de registro para crear."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Uno o más campos faltantes/no válidos en la pestaña"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"El propietario permite la escritura, los usuarios autenticados permiten la "
-"lectura"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Ruta/Archivo requerido!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Coloque aquí los pares 'usuario:contraseña' para sus usuarios que deberían "
-"tener acceso a Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Por favor, instale la versión actual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Presione el botón [Volver a cargar] a continuación para volver a leer el "
-"archivo."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "¡Actualiza a la versión actual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-"Los números de puerto inferiores a 1024 (puertos privilegiados) no son "
-"compatibles"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Archivo de clave privada"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Servidor Radicale CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale usa '/etc/radicale/rights' como archivo basado en expresiones "
-"regulares."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale usa '/etc/radicale/users' como archivo htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "¡Solo lectura!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Archivo RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Recargar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Codificación de respuesta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Derechos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Los derechos se basan en un archivo basado en expresiones regulares"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Derechos de backend"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protocolo SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Guardar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Los nombres de sección solo se usan para nombrar la regla."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Servidor"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Establecer este parámetro en '0' desactivará la rotación del archivo de "
-"registro."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "El paquete de software '%s' no está instalado."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "El paquete de software '%s' está desactualizado."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Actualización de software requerida"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Iniciar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Iniciar / Detener"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Iniciar/Detener servidor Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Almacenamiento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Codificación de almacenamiento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Backend de almacenamiento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Nivel de registro de Syslog"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistema"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"El Proyecto Radicale es una solución completa de servidor CalDAV "
-"(calendario) y CardDAV (contacto)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Se pueden ver y editar por calendario y contactar clientes en teléfonos "
-"móviles o computadoras."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Para editar el archivo siga este enlace!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Para ver el último archivo de registro, siga este enlace!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "El valor no es un número"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "El valor no es un entero >= 0!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Valor no entre 0 y 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "¡Valor requerido! Entero >= 0!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versión"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Información de versión"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"ADVERTENCIA: Solo 'File-system' está documentado y probado por el desarrollo "
-"de Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Advertencia"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"También puede obtener grupos del usuario regex en la colección con {0}, {1}, "
-"etc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Puede usar los valores de interpolación ConfigParser de Python %(login)s y %"
-"(path)s."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "cripto"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "archivo htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "no hay ruta válida dada!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "o mas alto"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "llanura"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "requerido"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "SHA-1 salado"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-04 15:03+0000\n"
-"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/fi/>\n"
-"Language: fi\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.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Todennus"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kriittinen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Viankorjaus"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Hakemisto"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Virhe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Tiedot"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Kirjaaminen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Ei mikään"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Lataa uudelleen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Tallenna"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Palvelin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Aloita"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Tallennustila"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Järjestelmä"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versio"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Varoitus"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-06-18 10:26+0000\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/fr/>\n"
-"Language: fr\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.18.1\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' sélectionne la version de protocole la plus élevée supportée par le "
-"client et le serveur."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Port' ou 'IPv4:Port' ou '[IPv6]:Port' sur lequel Radicale doit "
-"écouter"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Headers HTTP additionnels"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adresse:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Authentification"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"La connexion d’authentification est comparée à la clé 'user', et le chemin "
-"de la collection est mis en correspondance avec la clé 'collection'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Méthode d’authentification"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Démarrage automatique"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Délai de démarrage"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Les calendriers et les carnets d’adresses sont disponibles pour un accès "
-"local et distant, éventuellement limité par des stratégies "
-"d’authentification."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Critique"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Débogage"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Répertoire"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Délais durant lequel ifup-events n'est pas surveillé !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Encodage"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Erreur"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Système de fichiers"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-#, fuzzy
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Par exemple, pour la clé 'user', '.+' signifie 'authenticated user' et '.*' "
-"signifie 'anybody' (y compris les utilisateurs anonymes)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Infos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Journalisation"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NON installé"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Rien"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Placez ici les paires 'user:password' pour vos utilisateurs qui devraient "
-"avoir accès à Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Recharger"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Droits"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Sauvegarder"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Serveur"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Mise à jour du logiciel requise"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Démarrer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Démarrer/Arrêter"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Stockage"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Système"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Ils peuvent être consultés et modifiés par le calendrier et les clients de "
-"contact sur les téléphones mobiles ou les ordinateurs."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informations de version"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Avertissement"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Vous pouvez également obtenir des groupes à partir de l'expression "
-"rationnelle de l'utilisateur dans la collection avec {0}, {1}, etc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypte"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "installé"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "ou plus grand"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "requis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-11-18 14:09+0000\n"
-"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ga/>\n"
-"Language: ga\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.9-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"Roghnaíonn 'AUTO' an leagan prótacail is airde a thacaíonn le cliant agus "
-"freastalaí."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Óstainm:Port' nó 'IPv4:port' nó '[IPv6] :Port' Ba chóir do Radicale "
-"éisteacht ar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "CARR"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Ceanntásca breise HTTP"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Seoladh: Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Fíordheimhniú"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Déantar logáil isteach fíordheimhnithe a mheaitseáil leis an eochair "
-"'úsáideoir', agus déantar cosán an bhailiúcháin a mheaitseáil leis an "
-"eochair 'bailiúcháin'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Modh fíordheimhnithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Modh fíordheimhnithe chun rochtain a fháil ar fhreastalaí Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Uathoibríoch"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Moill tosaithe"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "Caldav/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Tá féilirí agus leabhair seoltaí ar fáil le haghaidh rochtana áitiúil agus "
-"iargúlta, b'fhéidir teoranta trí bheartais fíordheimhnithe."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Comhad deimhnithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Athraigh anseo an t-ionchódú a úsáidfidh Radicale in ionad 'UTF-8' le "
-"haghaidh freagraí don chliant agus/nó chun sonraí a stóráil taobh istigh de "
-"bhailiúcháin."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Leibhéal Logála Consól"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Rialú an rochtain ar bhailiúcháin sonraí."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Criticiúil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Is meicníocht é comhroinnt acmhainní tras-bhunús (CORS) a cheadaíonn "
-"acmhainní srianta (m.sh. clónna, JavaScript, srl.) a iarraidh ar leathanach "
-"gréasáin ó fhearann eile lasmuigh den fhearann as a tháinig an acmhainn."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Dífhabhtú"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr "Moill (i soicindí) le linn tosaithe an chórais sula dtosaíonn Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Eolaire"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Níl eolaire ann /aimsíodh!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Eolaire ag teastáil!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Eolaire ina stóráiltear na comhaid logála rothlacha"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Le linn moill ní dhéantar monatóireacht ar imeachtaí ifup!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Cumasaigh HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Cumasach/Díchumasaigh tús uathoibríoch Radicale ar imeachtaí nuathoibrithe "
-"agus comhéadain an"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Ionchódú"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Ionchódú chun iarratais a fhreagairt."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Ionchódú chun bailiúcháin áitiúla a stóráil."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Modh criptithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Earráid"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Níor aimsíodh comhad '%s'!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Leibhéal Logála Comhad"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Níor aimsíodh an comhad!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Córas comhad"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Mar shampla, i gcás an eochair 'úsáideoir', ciallaíonn '.+' 'úsáideoir "
-"fíordheimhnitheach' agus ciallaíonn '.*' '' duine ar bith '(úsáideoirí gan "
-"ainm san áireamh)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Rochtain iomlán don Úinéir amháin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Rochtain iomlán d'Úsáideoirí fíordheimhnithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Rochtain iomlán do gach duine (lena n-áirítear gan ainm)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Conair iomlán agus ainm comhad an deimhnithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Conair iomlán agus ainm comhaid an eochair phríobháideach"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Rochtain UCI a dheonú do luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Faisnéis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Coinnigh i gcuimhne an algartam hashing ceart a úsáid!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"Déantar sliseanna tosaigh nó críochnaithe a ghearradh ó chonair an "
-"bhailiúcháin."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Líon log-chúltaca"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Breathnóir Comhad Logáil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Eolaire log-file"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Méid log-chomhaid"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Logáil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Teachtaireacht logála isteach"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Uasmhéid gach log-chomhad uathraithe."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Teachtaireacht a thaispeántar sa chliant nuair is gá le pasfhocal."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NÍL suiteáilte"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Dada"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Líon na gcomhaid chúltaca logála le cruthú."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Réimse amháin nó níos mó atá in easnamh/neamhbhailí ar chluaisín"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "Ceadaíonn úinéir scríbhneoireacht, ceadaíonn úsáideoirí fí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Conair/Comhad ag teastáil!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Cuir anseo na péirí 'úsáideoir: pasfhocal' d'úsáideoirí ar chóir go mbeadh "
-"rochtain acu ar Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Suiteáil an leagan reatha le do thoil!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Brúigh an cnaipe [Reload] thíos chun an comhad a athléamh."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Nuashonraigh go leagan reatha le do thoil!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Ní thacaítear le huimhreacha calafoirt faoi bhun 1024 (calafoirt phrib"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Comhad eochair phríobhá"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Freastalaí Radicale Caldav/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Úsáideann Radicale '/etc/radicale/rights' mar chomhad bunaithe ar regexp-"
-"bhunaithe."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Úsáideann Radicale '/etc/radicale/users' mar chomhad htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Léigh amháin!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Comhad RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Athlódáil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Ionchódú Freagra"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Cearta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Tá cearta bunaithe ar chomhad bunaithe ar regexp-bhunaithe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Cúltaca cearta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Prótacal SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Sábháil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Ní úsáidtear ainmneacha rannáin ach chun an riail a ainmniú."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Freastalaí"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Má shocraíonn an paraiméadar seo go '0' déanfar rothlú an log-chomhad a "
-"dhíchumasú."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Níl an pacáiste bogearraí '%s' suiteáilte."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Tá pacáiste bogearraí '%s' as dáta."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Tá nuashonrú bogearraí ag"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Tosaigh"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Tos/ Stop"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Tos/Stop freastalaí Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Stóráil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Ionchódú Stórála"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Cúltaca stórála"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Leibhéal Logála Syslog"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Córas"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Is réiteach freastalaí iomlán CalDAV (féilire) agus CardDAV (teagmhála) é "
-"Tionscadal Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Is féidir iad a fheiceáil agus a chur in eagar ag féilire agus teagmháil a "
-"dhéanamh le cliaint ar fhóin phóca nó ríomhairí."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Chun an comhad a chur in eagar lean an nasc seo!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Chun an comhad logála is déanaí a fheiceáil lean an nasc seo!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Ní uimhir í an luach"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Ní Slánuimhir é luach >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Luach nach bhfuil idir 0 agus 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Luach ag teastáil ! Slánuimhir >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Leagan"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Eolas Leagan"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"RABHADH: Ní dhéantar ach 'Córas Comhad' a dhoiciméadú agus a thástáil ag "
-"forbairt Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Aire"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Is féidir leat grúpaí a fháil freisin ón úsáideoir regex sa bhailiúchán le "
-"{0}, {1}, srl."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Is féidir leat luachanna idirphóite ConfigParser Python a úsáid% (logáil "
-"isteach) s agus% (path) s."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "cript"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "comhad htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "suiteáilte"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "níl aon chosán bailí tugtha!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "nó níos airde"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "simplí"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "riachtanach"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "SHA-1 saillte"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-09-07 08:58+0000\n"
-"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/he/>\n"
-"Language: he\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-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "אזהרה"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Language: hi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-08 13:02+0000\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/hu/>\n"
-"Language: hu\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.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"Az „AUTO” kiválasztja a legmagasabb protokollverziót, amelyet az ügyfél és a "
-"kiszolgáló támogat."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"„Gépnév:port” vagy „IPv4:port” vagy „[IPv6]:port”, amelyen a Radicale-nek "
-"figyelnie kell"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "További HTTP-fejlécek"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Cím:port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Hitelesítés"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"A hitelesítési bejelentkezés a „user” kulccsal kerül összehasonlításra, a "
-"gyűjtemény útvonala pedig a „collection” kulccsal lesz összehasonlítva."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Hitelesítési módszer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-"Hitelesítési módszer a Radicale kiszolgálóhoz való hozzáférés "
-"engedélyezéséhez."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Automatikus indítás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Rendszerindítási késleltetés"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"A naptárak és a címjegyzékek elérhetők mind helyi, mind távoli "
-"hozzáféréshez, valószínűleg hitelesítési házirendeken keresztül korlátozva."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Tanúsítványfájl"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Itt változtassa meg a kódolást, amelyet a Radicale az „UTF-8” helyett fog "
-"használni az ügyfeleknek küldött válaszoknál és/vagy a gyűjteményeken belüli "
-"adatok tárolásához."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Konzol naplózási szintje"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Az adatgyűjteményekhez való hozzáférés vezérlése."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritikus"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Az eltérő eredetű erőforrások megosztása (Cross-Origin Resource Sharing, "
-"CORS) egy olyan mechanizmus, amely lehetővé teszi, hogy egy weboldalon lévő "
-"korlátozott erőforrások (például betűkészletek, JavaScript, stb.) lekérhetők "
-"legyenek egy másik tartományból, amely azon a tartományon kívül van, ahonnan "
-"az erőforrás származik."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Hibakeresés"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Késleltetés (másodpercben) a rendszerindítás közben a Radicale indulása előtt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Könyvtár"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "A könyvtár nem létezik vagy nem található!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Könyvtár szükséges!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Az a könyvtár, ahol a forgó naplófájlok tárolva vannak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Az ifup események alatti késleltetés nincs megfigyelve!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "HTTPS engedélyezése"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"A Radicale automatikus indításának engedélyezése vagy letiltása a rendszer "
-"indításakor és a csatolóeseményeknél"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Kódolás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Kódolás a kérések megválaszolásához."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Kódolás a helyi gyűjtemények tárolásához."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Titkosítási módszer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Hiba"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "A(z) „%s” fájl nem található!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Fájl naplózási szintje"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "A fájl nem található!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Fájlrendszer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Például a „user” kulcsnál a „.+” azt jelenti, hogy „hitelesített "
-"felhasználó” és a „.*” azt jelenti, hogy „bárki” (beleértve a névtelen "
-"felhasználókat is)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Teljes hozzáférés csak a tulajdonosnak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Teljes hozzáférés a hitelesített felhasználóknak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Teljes hozzáférés mindenkinek (beleértve a névtelen felhasználókat is)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "A tanúsítvány teljes útvonala és fájlneve"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "A személyes kulcs teljes útvonala és fájlneve"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-"UCI hozzáférés engedélyezése a <em>luci-app-radicale</em> alkalmazásnak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Infó"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Tartsa észben, hogy a helyes hasító algoritmust használja!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"A vezető vagy lezáró perjelek levágásra kerülnek a gyűjtemény útvonalából."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Napló biztonsági mentésének darabszáma"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Naplófájl-megjelenítő"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Naplófájl könyvtára"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Naplófájl mérete"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Naplózás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Bejelentkezési üzenet"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Az egyes forgó naplófájlok legnagyobb mérete."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Az ügyfélben megjelenítendő üzenet, ha jelszó szükséges."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Nincs telepítve"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Nincs"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "A létrehozandó napló biztonsági mentés fájljainak száma."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Egy vagy több hiányzó vagy érvénytelen mező a lapon"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"A tulajdonosnak engedélyezett az írás, a hitelesített felhasználóknak "
-"engedélyezett az olvasás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Útvonal/fájl szükséges!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Tegye ide azoknak a felhasználóknak a „felhasználó:jelszó” párosait, akiknek "
-"hozzá kell férniük a Radicale kiszolgálóhoz."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Telepítse a jelenlegi verziót!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Nyomja meg a lenti [Újratöltés] gombot a fájl újraolvasásához."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Frissítsen a jelenlegi verzióra!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Az 1024 alatti portszámok (kiváltságos portok) nem támogatottak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Személyes kulcs fájl"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV kiszolgáló"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"A Radicale az „/etc/radicale/rights” fájlt használja reguláris kifejezés "
-"alapú fájlként."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "A Radicale az „/etc/radicale/users” fájlt használja htpasswd fájlként."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Csak olvasható!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Reguláris kifejezés fájl"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Újratöltés"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Válasz kódolása"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Jogok"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "A jogok egy reguláris kifejezés alapú fájlon alapulnak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Jogok háttérprogram"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL protokoll"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Mentés"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "A szakasznevek csak a szabály elnevezéséhez vannak használva."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Kiszolgáló"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Ennek a paraméternek a „0”-ra állítása letiltja a naplófájlok forgatását."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "A(z) „%s” szoftvercsomag nincs telepítve."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "A(z) „%s” szoftvercsomag elavult."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Szoftverfrissítés szükséges"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Indítás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Indítás vagy leállítás"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Radicale kiszolgáló indítása vagy leállítása"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Tárhely"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Tároló kódolása"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Tároló háttérprogram"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Rendszernapló naplózási szintje"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Rendszer"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"A Radicale projekt egy teljes CalDAV (naptár) és CardDAV (partner) "
-"kiszolgáló megoldás."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Megtekinthetők és szerkeszthetők a naptár és a partner ügyfelek által "
-"mobiltelefonokon vagy számítógépeken."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "A fájl szerkesztéséhez kövesse ezt a hivatkozást!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "A legutolsó naplófájl megtekintéséhez kövesse ezt a hivatkozást!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Az érték nem szám"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Az érték nem legalább 0 értékű egész szám!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Az érték nem 0 és 300 között van"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Az érték kötelező! Legalább 0 értékű egész szám!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Verzió"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Verzióinformációk"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"FIGYELMEZTETÉS: a Radicale fejlesztők csak a „fájlrendszert” dokumentálták "
-"és tesztelték"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Figyelmeztetés"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Csoportokat is lekérhet a gyűjteményben lévő felhasználó reguláris "
-"kifejezéséből a {0}, {1}, stb. használatával."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Használhatja a Python %(login)s és %(path)s beállításfeldolgozó "
-"interpolációs értékeit."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd fájl"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "telepítve"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "nincs érvényes útvonal megadva!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "vagy magasabb"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "egyszerű"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "kötelező"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "sózott SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-09-10 12:33+0000\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/it/>\n"
-"Language: it\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.0.1-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' seleziona la versione più recente di protocollo che client e server "
-"supportano."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Porta' o 'IPv4:Porta' o '[IPv6]:Porta' a cui Radicale dovrebbe "
-"ascoltare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Header HTTP aggiuntive"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Indirizzo:Porta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autenticazione"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Le credenziali di accesso sono definite dalla chiave 'user', il percorso "
-"della raccolta dalla chiave 'collection'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Metodo di autenticazione"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Ritardo all'avvio"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Critico"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Debug"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Directory"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Errore"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Registrazione (log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Nessuno"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Ricarica"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Salva"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Avvia"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Archiviazione"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistema"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versione"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Avviso"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-03-28 23:40+0000\n"
-"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ja/>\n"
-"Language: ja\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.5-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"「AUTO」は、クライアントとサーバーがサポートしている最も高いプロトコルバー"
-"ジョンを選択します。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "自動"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "認証"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "自動開始"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "重大"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "デバッグ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "ディレクトリ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "HTTPS を有効にする"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "エラー"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "ファイルシステム"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "情報"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "ロギング"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "なし"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "リロード"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "保存"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "サーバー"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "開始"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "開始 / 停止"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "ストレージ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "システム"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "0 から 300 の間の値ではありません"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "バージョン"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "バージョン情報"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "警告"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-07-31 13:17+0000\n"
-"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ko/>\n"
-"Language: ko\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.14-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "디버그"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "에러"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "정보"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "서버"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "시작"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "시스템"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "버전"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "경고"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-28 12:17+0000\n"
-"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/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 ? 0 : n%10>=2 && "
-"(n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.11-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"„AUTO“ pasirenka aukščiausią protokolo versiją, kurią palaiko klientas ir "
-"serveris."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"„Įrenginio (t.y skleidėjo/vedėjo) pavadinimas:Prievadas“ arba "
-"„IPv4:Prievadas“, arba „[IPv6]:Prievadas“ – „Radicale“ turėtų laukti "
-"prisijungimo/jungties ryšio"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTOMATIŠKAI"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Papildomos „HTTP“ antraštės"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adresas:Prievadas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autentifikavimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Autentifikavimo prisijungimas yra sulyginimas su – „naudotojo/vartotojo“ "
-"raktu, o rinkinio kelias – su „rinkimo“ raktu."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Autentifikavimo metodas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Autentifikavimo metodas, leidžiantis pasiekti – „Radicale“ serverį."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Automatiškai paleisti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Paleidimo atidėjimas"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "„CalDAV“/„CardDAV“"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Kalendoriai ir adresų knygos yra pasiekiami tiek vietinei, tiek nuotolinei "
-"prieigai; galimai apribojami, taikant autentifikavimo politiką."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Sertifikato failas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Pakeiskite čia kodavimą, kurį „Radicale“ naudos vietoj „UTF-8“, atsakant į "
-"klientą ir (arba) duomenims saugoti rinkiniuose."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Konsolės žurnalo lygis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Valdyti prieigą prie duomenų rinkinių."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritinė/-is"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"„Kryžminės kilmės išteklių bendrinimas“ („CORS“) – yra mechanizmas, "
-"leidžiantis apribotų išteklių (pvz., šriftų, „JavaScript“ ir kt.) "
-"žiniatinklio puslapyje prašyti iš kito domeno-srities, kurie randasi to "
-"domeno-srities išorėje, iš kurio tas išteklis buvo kilęs."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Derinimas/Trukdžių šalinimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Atidėjimas (sekundėmis) sistemos įkrovos metu, prieš paleidžiant – „Radicale“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Katalogas/Vietovė"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Nėra katalogo arba jis nerastas!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Reikalingas katalogas!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Katalogas/Vietovė, kuriame yra saugomi besisukantys žurnalo failai"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Atidėjimo metu, „ifup“-įvykiai nėra stebimi!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Įgalinti „HTTPS“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Įjungti/Įgalinti┃Išjungti/Išgalinti automatinį „Radicale“ paleidimą, "
-"sistemos paleidimo ir sąsajos įvykiuose"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Koduotė"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Koduotė, skirta atsakant į užklausas."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Koduotė, skirta vietinių kolekcijų saugojimui."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Šifravimo metodas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Klaida"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Failas – „%s“ nerastas!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Žurnalo failo lygis/įrašas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Failas nerastas!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Failų sistema"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Pavyzdžiui, „naudotojo/vartotojo“ rakto atveju – „.+“, reiškia – "
-"„autentifikuotas naudotojas/vartotojas“, o „.*“ – \"bet kas\" (įskaitant "
-"anoniminius naudotojus/vartotojus)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Pilna prieiga tik savininkui"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Pilna prieiga tik autentifikuotams naudotojams/vartotojams"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Pilna prieiga visiems (įskaitant anonimiškus)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Sertifikato pilnas vietovės kelias ir failo pavadinimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Privataus rakto pilnas vietovės kelias ir failo pavadinimas"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Suteikti „UCI“ prieigą – „luci-app-radicale“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informacija"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Nepamirškite naudoti teisingo maišos algoritmo !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"Pradedantieji arba baigiamieji pasvirieji brūkšniai yra nukirpti nuo "
-"rinkinio kelio."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Žurnalo atsarginės kopijų skaičius"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Žurnalo failo žiūrovas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Žurnalo failo katalogas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Žurnalo failo dydis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Žurnalinimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Prisijungimo žinutė/pranešimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Maksimalus, kiekvieno pasukimo žurnalo failo dydis."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Kliente rodomas pranešimas, kai reikia slaptažodžio."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Neįdiegta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Joks (-ia/-ie)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Kuriamų atsarginių žurnalo failų skaičius."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Skirtuke trūksta vieno ar daugiau laukų arba jie yra neteisingi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Savininkas/-e leidžia rašyti, autentifikuoti naudotojai/vartotojai leidžia "
-"skaityti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Kelias/Failas reikalingas!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Čia įdėkite – „naudotojas/vartotojas: slaptažodis“ poras savo naudotojams/"
-"vartotojams, kurie turėtų turėti prieigą prie – „Radicale“."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Prašome įdiegti dabartinę versiją !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Norėdami iš naujo perskaityti failą, paspauskite toliau esantį mygtuką – "
-"„[Perleisti]“."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Prašome atnaujinti į dabartinę versiją!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-"Prievado numeriai, mažesni nei – 1024-i (privilegijuotieji prievadai), yra "
-"nepalaikomi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Privataus rakto failas"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "„Radicale CalDAV“/„CardDAV“ serveris"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"„Radicale naudoja“ – „/etc/radicale/rights“ kaip – „regexp“ pagrįstą failą."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "„Radicale“ naudoja – „/etc/radicale/users“ kaip – „htpasswd“ failą."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Tik skaitymui!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "„RegExp“ failas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Perleidimas/-sti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Atsako kodavimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Teisės"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Teisės yra pagrįstos – „regexp“ pagrįstu failu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Teisių vidinė uždaroji sąsaja"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "„SHA-1“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "„SSL“ protokolas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Išsaugoti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Skyrių pavadinimai yra naudojami tik taisyklei pavadinti."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Serveris"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Nustačius šį parametrą į – „0-į“, žurnalo failo pasukimas bus išjungtas/"
-"išgalintas."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Taikomosios programos paketas – „%s“ yra neįdiegtas."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Taikomosios programos paketas – „%s“ yra pasenęs."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Taikomosios programos atnaujinimas reikalingas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Pradėti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Pradėti / Stabdyti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Pradėti / Stabdyti „Radicale“ serverį"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Vietovė/Talpa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Saugyklos kodavimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Saugyklos vidinė uždaroji sąsaja"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "„Syslog“ žurnalo lygis"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistema"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"„Radicale Project“ yra užbaigtas – „CalDAV“ (kalendorių) ir „CardDAV“ "
-"(kontaktų/adresatų) serverio sprendimų."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Juos gali peržiūrėti ir redaguoti kalendoriaus ir kontaktų/adresatų "
-"klientai, mobiliuosiuose telefonuose ar kompiuteriuose."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Norint redaguoti šį failą, sekite šią nuorodą!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Norint peržiūrėti paskiausią žurnalo failą, sekite šią nuorodą!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Reikšmė nėra skaičius"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Reikšmė nėra sveikasis skaičius >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Reikšmė nėra tarp 0 ir 300-ų"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Reikalinga reikšmė ! Sveikasis skaičius >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versija"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Versijos informacija"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"ĮSPĖJIMAS: „Radicale“ plėtra dokumentuoja ir testuoja tik – „failų sistemą“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Įspėjimas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Jūs taip pat galite gauti grupes iš naudotojo/vartotojo reguliaraus "
-"reiškinio kolekcijoje su – „{0}“, „{1}“ ir kt."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Jūs galite naudoti – „Python's ConfigParser“ interpoliacijos reikšmes – „%"
-"(login)s“ ir „%(path)s“."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "„crypt“"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "„htpasswd“ failas"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "įdiegta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "nenurodytas tinkamas kelias!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "arba aukštesnį"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "atviras"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "reikalingas/-aujamas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "„salted SHA-1“"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-02-07 09:18+0000\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/mr/>\n"
-"Language: mr\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 3.11-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "एकही नाही"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "रीलोड करा"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "सर्व्हर"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "प्रारंभ करा"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "प्रणाली"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-04-22 05:24+0000\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ms/>\n"
-"Language: ms\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.11.1-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Alamat:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistem"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-26 16:51+0000\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/nb_NO/>\n"
-"Language: nb_NO\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.4-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritisk"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Avlusing"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Feil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Last inn igjen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Lagre"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Start"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versjon"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Advarsel"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-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-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-11-07 22:37+0000\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/pl/>\n"
-"Language: pl\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 5.2-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"AUTO\" wybiera najwyższą wersję protokołu obsługiwaną przez klienta i serwer."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'NazwaHosta:Port' lub 'IPv4:Port' lub '[IPv6]:Port' na którym Radicale "
-"powinien nasłuchiwać"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Dodatkowe nagłówki HTTP"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adres:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Uwierzytelnienie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Logowanie autoryzacyjne jest dopasowane do klucza \"użytkownik\", a ścieżka "
-"kolekcji do klucza \"kolekcja\"."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Metoda uwierzytelniania"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Metoda uwierzytelniania umożliwiająca dostęp do serwera Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Auto-start"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Opóźnienie rozruchu"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Kalendarze i książki adresowe są dostępne zarówno dla dostępu lokalnego, jak "
-"i zdalnego, ewentualnie ograniczonego przez zasady uwierzytelniania."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Plik certyfikatu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Zmień tutaj kodowanie, którego Radicale użyje zamiast „UTF-8” do odpowiedzi "
-"do klienta i / lub do przechowywania danych w kolekcjach."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Poziom dziennika konsoli"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Kontroluj dostęp do zbiorów danych."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Krytyczny"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Współdzielenie zasobów pochodzących z różnych źródeł (CORS) to mechanizm, "
-"który pozwala na żądanie o ograniczone zasoby (np. Czcionki, JavaScript "
-"itp.) Na stronie internetowej z innej domeny spoza domeny, z której pochodzi "
-"zasób."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Debugowanie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Opóźnienie (w sekundach) podczas rozruchu systemu przed uruchomieniem "
-"Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Katalog"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Katalog nie istnieje/nie znaleziono!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Katalog wymagany!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Katalog, w którym przechowywane są obrotowe pliki dziennika"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Podczas zwłoki zdarzenia ifup-events nie są monitorowane!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Włącz HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Włącz/wyłącz automatyczne uruchamianie Radicale podczas uruchamiania systemu "
-"i zdarzeń interfejsu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Kodowanie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Kodowanie odpowiedzi na żądania."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Kodowanie do przechowywania kolekcji lokalnych."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Metoda szyfrowania"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Błąd"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Plik '%s' nie został znaleziony!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Poziom dziennika plików"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Nie znaleziono pliku!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "System plików"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Na przykład w przypadku klucza 'użytkownika', '.+' oznacza "
-"'uwierzytelnionego użytkownika', a '.*' oznacza 'każdego' (w tym "
-"użytkowników anonimowych)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Pełny dostęp tylko dla właściciela"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Pełny dostęp dla uwierzytelnionych użytkowników"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Pełny dostęp dla wszystkich (w tym anonimowych)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Pełna ścieżka i nazwa pliku certyfikatu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Pełna ścieżka i nazwa pliku klucza prywatnego"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Przyznaj luci-app-radicale dostęp do UCI"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informacja"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Należy pamiętać o zastosowaniu właściwego algorytmu hashing!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Początkowe lub kończące ukośniki są usuwane ze ścieżki collection's."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Licznik kopii zapasowych dziennika"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Przeglądarka plików dziennika"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Katalog plików dziennika"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Rozmiar pliku dziennika"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Logowanie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Komunikat logowania"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Maksymalny rozmiar każdego rotacyjnego pliku dziennika."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Wiadomość wyświetlana w kliencie, gdy potrzebne jest hasło."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Nie zainstalowany"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Brak"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Liczba plików kopii zapasowych dziennika do utworzenia."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Jedno lub więcej brakujących/nieważnych pól na zakładce"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Właściciel zezwala na pisanie, uwierzytelnieni użytkownicy zezwalają na "
-"odczyt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Ścieżka/Plik wymagane !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Umieść tutaj pary 'user:password' dla swoich użytkowników, którzy powinni "
-"mieć dostęp do Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Zainstaluj aktualną wersję!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Wciśnij przycisk [Przeładuj] poniżej, aby ponownie odczytać plik."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Prosimy o aktualizację do aktualnej wersji!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Numery portów poniżej 1024 (porty uprzywilejowane) nie są obsługiwane"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Plik klucza prywatnego"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Serwer Radicale CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale używa '/etc/radicale/rights' jako pliku opartego na RegExp."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale używa '/etc/radicale/users' jako pliku htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Tylko do odczytu!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Plik RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Przeładuj"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Kodowanie odpowiedzi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Prawa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Prawa oparte są na pliku opartym na RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Zaplecza praw"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protokół SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Zapisz"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Nazwy sekcji są używane tylko do nazwania reguły."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Serwer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Ustawienie tego parametru na ' 0 ' spowoduje wyłączenie rotacji pliku "
-"dziennika."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Pakiet '%s' nie jest zainstalowany."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Pakiet '%s' jest przestarzały."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Wymagana aktualizacja oprogramowania"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Uruchom"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Start/Stop"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Uruchom/Zatrzymaj serwer Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Magazyn"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Kodowanie pamięci"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Zaplecze do przechowywania"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Poziom dziennika systemowego"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Projekt Radicale to kompletne rozwiązanie serwerowe CalDAV (kalendarz) i "
-"CardDAV (kontakt)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Można je przeglądać i edytować za pomocą kalendarza oraz kontaktować się z "
-"klientami na telefonach komórkowych lub komputerach."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Aby edytować plik, skorzystaj z tego linku!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Aby wyświetlić najnowszy plik dziennika, kliknij ten link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Wartość nie jest liczbą"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Wartość nie jest liczbą całkowitą >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Wartość nie mieszcząca się w przedziale od 0 do 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Wartość wymagana! Integer >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Wersja"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informacja o wersji"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"OSTRZEŻENIE: Tylko \"System plików\" jest dokumentowany i testowany przez "
-"Radicale Development"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Ostrzeżenie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Można również uzyskać grupy z regex użytkownika w kolekcji z {0}, {1}, itd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Możesz użyć wartości interpolacji %(login)s i %(ścieżka)s w Pythonie "
-"ConfigParser."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "Krypta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "plik htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "zainstalowany"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "nie podano prawidłowej ścieżki!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "lub wyżej"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "zwykły"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "wymagany"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "solone SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-08-19 21:09+0000\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/pt/>\n"
-"Language: pt\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\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' seleciona a versão mais alto protocolo que o cliente e o servidor "
-"suportar."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'NomeDoEquipamento:porta' ou 'IPv4:Porta' ou '[IPv6]:Porta' em que o "
-"Radicale deve escutar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Cabeçalhos HTTP adicionais"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Endereço: Porta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autenticação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"O nome do utilizador na autenticação é comparado com a chave do 'user', e o "
-"caminho da coleção é comparado com a chave 'coleção'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Método de autenticação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Método de autenticação para permitir o acesso ao servidor Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Iniciar automaticamente"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Atraso de iniciação"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Agendas e contados estão disponíveis tanto para acesso local como remoto, "
-"possivelmente limitado através das políticas de autenticação."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Ficheiro do certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Mude aqui a codificação que o Radicale usará em vez de 'UTF-8' para "
-"respostas a clientes ou para armazenar dados dentro das coleções."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Nível de detalhamento dos registros (log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Controlar o acesso às coleções de dados."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Critico"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"O compartilhamento de recursos de origem cruzada (CORS) é um mecanismo que "
-"permite que os recursos de acesso restrito (por exemplo, fontes, JavaScript, "
-"etc.) em uma página web ser solicitado de outro domínio fora do domínio a "
-"partir do qual o recurso foi originado."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Depuração"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Atraso (em segundos) durante a inicialização do sistema antes do Radicale "
-"iniciar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Diretório"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "O diretório não foi encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "O diretório é necessário!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "O diretório onde os registros(log) rotativos são armazenados"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Durante o atraso, eventos ifup não serão monitorados!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Ativar HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Ativar/Desativar iniciação automática do Radicale na iniciação do sistema e "
-"em eventos de interface"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Codificação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Codificação para responder pedidos."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Codificação para armazenar coleções locais."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Método de criptografia"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Erro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Ficheiro '%s' não encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Nível de detalhamento dos registos(log) em ficheiros"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Ficheiro não encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Sistema de ficheiros"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Por exemplo, para a chave 'user', '.+' Significa 'utilizador autenticado' e "
-"'.*' Significa 'qualquer um' (incluindo utilizadors anônimos)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Acesso completo somente para o proprietário"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Acesso completo para utilizadors autenticados"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Acesso completo para todos (incluindo anônimo)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Caminho completo e nome do ficheiro do certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Caminho e ficheiro nome completo da chave privada"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Conceder UCI acesso ao luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Fique atento para usar o algoritmo de resumo digital(hash) correto!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Barras inicias e finais serão removidas do caminho da coleção."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Contagem Registro(log) de Backup"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Visualizador de Ficheiro de Registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Diretório do ficheiro de registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Tamanho do ficheiro de registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Logging"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Mensagem de entrada"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Tamanho máximo para a rotação do ficheiro de log."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Mensagem exibida para o cliente quando uma palavra-passe é necessária."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NÃO instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Nenhum"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Número de backups dos ficheiros de registros(log) a serem criados."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Um ou campos inválidos/ausentes na aba"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "O proprietário pode escrever, os utilizadors autenticados podem ler"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "O caminho/ficheiro é necessário!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Coloque aqui os pares 'utilizador:palavra-passe' para os seus utilizadors "
-"que devem ter acesso a Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Por favor, instale a versão atual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Por favor, pressione o botão [Recarregar] abaixo para reler o ficheiro."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Por favor, atualize para a versão atual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Os porta abaixo de 1024 (portas privilegiadas) não são suportadas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Ficheiro da chave privada"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale Servidor CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale usa o '/etc/radicale/rights' como ficheiro baseado em expressão "
-"regular."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale usa o '/etc/radicale/users' como o ficheiro htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Somente leitura!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Ficheiro de expressões regulares"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Recarregar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Codificação da Resposta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Direitos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Os direitos são baseados num ficheiro baseado em expressões regulares"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Serviço de Direitos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protocolo SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Guardar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Os nomes das secções são usados apenas para nomear a regra."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Servidor"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Definindo este parâmetro para '0' irá desativar a rotação dos ficheiros de "
-"registros(log)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "O pacote de software '%s' não está instalado."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "O pacote '%' está desatualizado."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "A atualização do software é necessária"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Iniciar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Iniciar / Parar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Iniciar/Parar o servidor Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Codificação do Armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Serviço de armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Nível de detalhamento do serviço de registro (syslog)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistema"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"O Projeto Radicale é uma solução completa de CalDAV (agenda) e CardDAV "
-"(contatos)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Eles podem ser visualizados e editados pelos clientes de agenda e de "
-"contactos em telemóveis ou computadores."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Para editar o ficheiro, siga este link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-"Para visualizar mais recente ficheiro de registros(log), siga este link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "O valor não é um número"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "O valor não é um número natural (>=0)!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Valor não está entre 0 e 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "O valor é necessário! Número natural (>=0)!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versão"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informação da Versão"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"AVISO: Apenas 'Sistema de Ficheiro está documentado e testado pelo "
-"desenvolvimento do Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Aviso"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Você também pode obter grupos a partir da expressão regular do utilizador na "
-"coleção com {0}, {1} , etc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Você pode usar a interpolação de valores %(login)s e %(path)s do "
-"ConfigParser do Python."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "cifrar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "ficheiro htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "Nenhum caminho válido foi informado!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "ou maior"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "plano"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "necessário"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "SHA-1 com salto"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2020-06-12 05:12+0000\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsradicale/pt_BR/>\n"
-"Language: pt_BR\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.1-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' seleciona a versão mais alto protocolo que o cliente e o servidor "
-"suportar."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'NomeDoEquipamento:porta' ou 'IPv4:Porta' ou '[IPv6]:Porta' em que o "
-"Radicale deve escutar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Cabeçalhos HTTP Adicionais"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Endereço: Porta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autenticação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"O nome do usuário na autenticação é comparado com a chave do 'user', e o "
-"caminho da coleção é comparado com a chave 'coleção'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Método de autenticação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Método de autenticação para permitir o acesso ao servidor Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Iniciar automaticamente"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Atraso de iniciação"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Agendas e contados estão disponíveis tanto para acesso local como remoto, "
-"possivelmente limitado através das políticas de autenticação."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Arquivo do certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Mude aqui a codificação que o Radicale usará em vez de 'UTF-8' para "
-"respostas a clientes ou para armazenar dados dentro das coleções."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Nível de detalhamento dos registros (log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Controlar o acesso às coleções de dados."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Crítico"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"O compartilhamento de recursos de origem cruzada (CORS) é um mecanismo que "
-"permite que os recursos de acesso restrito (por exemplo, fontes, JavaScript, "
-"etc.) em uma página web ser solicitado de outro domínio fora do domínio a "
-"partir do qual o recurso foi originado."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Depuração"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Atraso (em segundos) durante a inicialização do sistema antes do Radicale "
-"iniciar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Diretório"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "O diretório não foi encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "O diretório é necessário!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "O diretório onde os registros(log) rotativos são armazenados"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Durante a espera, eventos ifup não serão monitorados!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Ativar HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Ativar/Desativar iniciação automática do Radicale na iniciação do sistema e "
-"em eventos de interface"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Codificação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Codificação para responder pedidos."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Codificação para armazenar coleções locais."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Método de criptografia"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Erro"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Arquivo '%s' não encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Nível de detalhamento dos registos(log) em arquivos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Arquivo não encontrado!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Sistema de arquivos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Por exemplo, para a chave 'user', '.+' Significa 'usuário autenticado' e "
-"'.*' Significa 'qualquer um' (incluindo usuários anônimos)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Acesso completo somente para o proprietário"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Acesso completo para usuários autenticados"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Acesso completo para todos (incluindo anônimo)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Caminho completo e nome do arquivo do certificado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Caminho e arquivo nome completo da chave privada"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Conceder acesso UCI ao luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informação"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Fique atento para usar o algoritmo de resumo digital(hash) correto!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Barras inicias e finais serão removidas do caminho da coleção."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Contagem Registro(log) de Backup"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Visualizador de Arquivo de Registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Diretório do arquivo de registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Tamanho do arquivo de registros(log)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Registrando os eventos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Mensagem de entrada"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Tamanho máximo para a rotação do arquivo de registros(log)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Mensagem exibida para o cliente quando uma senha é necessária."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NÃO instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Nenhum"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Número de backups dos arquivos de registros(log) a serem criados."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Um ou campos inválidos/ausentes na aba"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "O proprietário pode escrever, os usuários autenticados podem ler"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "O caminho/arquivo é necessário!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Coloque aqui os pares 'usuário:senha' para os seus usuários que devem ter "
-"acesso a Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Por favor, instale a versão atual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Por favor, pressione o botão [Recarregar] abaixo para reler o arquivo."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Por favor, atualize para a versão atual!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Os porta abaixo de 1024 (portas privilegiadas) não são suportadas"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Arquivo da chave privada"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale Servidor CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale usa o '/etc/radicale/rights' como arquivo baseado em expressão "
-"regular."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale usa o '/etc/radicale/users' como o arquivo htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Somente leitura!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Arquivo de expressões regulares"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Recarregar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Codificação da Resposta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Direitos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Os direitos são baseados em um arquivo baseado em expressões regulares"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Serviço de Direitos"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protocolo SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Salvar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Os nomes das seções são usados apenas para dar nome à regra."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Servidor"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Definindo este parâmetro para '0' irá desativar a rotação dos arquivos de "
-"registros(log)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "O pacote de software '%s' não está instalado."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "O pacote '%' está desatualizado."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "A atualização do software é necessária"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Início"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Iniciar / Parar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Iniciar/Parar o servidor Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Codificação do Armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Serviço de armazenamento"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Nível de detalhamento do serviço de registro (syslog)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistema"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"O Projeto Radicale é uma solução completa de CalDAV (agenda) e CardDAV "
-"(contatos)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Eles podem ser visualizados e editados pelos clientes de agenda e de "
-"contatos em telefones celulares ou computadores."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Para editar o arquivo, siga este link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-"Para visualizar mais recente arquivo de registros(log), siga este link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "O valor não é um número"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "O valor não é um número natural (>=0)!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Valor não está entre 0 e 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "O valor é necessário! Número natural (>=0)!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versão"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informação da Versão"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"AVISO: Apenas 'Sistema de Arquivos está documentado e testado pelo "
-"desenvolvimento do Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Alerta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Você também pode obter grupos a partir da expressão regular do usuário na "
-"coleção com {0}, {1} , etc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Você pode usar a interpolação de valores %(login)s e %(path)s do "
-"ConfigParser do Python."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "cifrar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "arquivo htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "instalado"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "Nenhum caminho válido foi informado!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "ou maior"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "plano"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "necessário"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "SHA-1 com salto"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-03-09 19:13+0000\n"
-"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ro/>\n"
-"Language: ro\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.16.2-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' selectează cea mai înaltă versiune de protocol pe care o acceptă "
-"clientul și serverul."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Port' sau 'IPv4:Port' sau '[IPv6]:Port' Radicale ar trebui să "
-"asculte pe"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTOMAT"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Antete HTTP suplimentare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adresă:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autentificare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Autentificarea login este comparată cu cheia \"user\", iar calea colecției "
-"este comparată cu cheia \"collection\"."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Metoda de autentificare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Metoda de autentificare pentru a permite accesul la serverul Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Pornire automată"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Întârziere la pornire"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Calendarele și agendele de adrese sunt disponibile atât pentru acces local, "
-"cât și la distanță, eventual limitate prin politici de autentificare."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Fișier de certificat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Modificați aici codificarea pe care Radicale o va folosi în loc de \"UTF-8\" "
-"pentru răspunsurile către client și/sau pentru stocarea datelor în colecții."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Nivelul de jurnal al consolei"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Controlul accesului la colecțiile de date."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Critic"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Partajarea resurselor de origine încrucișată (CORS) este un mecanism care "
-"permite ca resursele restricționate (de exemplu, fonturi, JavaScript etc.) "
-"de pe o pagină web să fie solicitate de pe un alt domeniu în afara "
-"domeniului din care provine resursa."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Depanare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Întârziere (în secunde) în timpul pornirii sistemului înainte de pornirea "
-"Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Director"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Directorul nu există/nu a fost găsit!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Director necesar !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Directorul în care sunt stocate fișierele jurnal rotative"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "În timpul întârzierii ifup-evenimentele nu sunt monitorizate !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Activați HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Activarea/Dezactivarea pornirii automate a Radicale la pornirea sistemului "
-"și la evenimentele de interfață"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Codificare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Codificarea pentru cererile de răspuns."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Codificare pentru stocarea colecțiilor locale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Metoda de criptare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Eroare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Fișierul '%s' nu a fost găsit!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Fișier Nivel de jurnal"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Fișierul nu a fost găsit!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Sistem de fișiere"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"De exemplu, pentru cheia \"user\", \".+\" înseamnă \"utilizator "
-"autentificat\", iar \".*\" înseamnă \"oricine\" (inclusiv utilizatorii "
-"anonimi)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Acces complet numai pentru proprietar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Acces deplin pentru utilizatorii autentificați"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Acces deplin pentru toată lumea (inclusiv pentru cei anonimi)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Calea completă și numele de fișier al certificatului"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Calea completă și numele de fișier al cheii private"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Acordă acces la UCI pentru luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informații"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Nu uitați să folosiți algoritmul de hashing corect!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Slashes de început sau de sfârșit sunt tăiate din calea colecției."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Numărătoarea de log-backup"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Vizualizator de fișiere jurnal"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Directorul fișierelor-jurnal"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Dimensiunea fișierului-jurnal"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Jurnalizare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Mesaj de conectare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Dimensiunea maximă a fiecărui fișier jurnal de rotație."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Mesaj afișat în client atunci când este necesară o parolă."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "NU este instalat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Nici unul"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-"Numărul de fișiere de backup ale jurnalului care urmează să fie create."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Unul sau mai multe câmpuri lipsă/invalabile pe filă"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Proprietarul permite scrierea, utilizatorii autentificați permit citirea"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Calea/fișierul este necesar!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Plasați aici perechile \"user:password\" pentru utilizatorii dumneavoastră "
-"care ar trebui să aibă acces la Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Vă rugăm să instalați versiunea curentă!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Vă rugăm să apăsați butonul [Reload] de mai jos pentru a reciti fișierul."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Vă rugăm să actualizați la versiunea curentă!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Numerele de port sub 1024 (porturi privilegiate) nu sunt acceptate"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Fișier cu cheie privată"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Serverul Radicale CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale utilizează '/etc/radicale/rights' ca fișier bazat pe regexp."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale utilizează '/etc/radicale/users' ca fișier htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Numai pentru citire!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Fișier RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Reîncărcați"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Codificarea răspunsului"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Drepturi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Drepturile se bazează pe un fișier bazat pe regexp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Drepturile backend"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Protocolul SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Salvați"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Numele secțiunilor sunt utilizate doar pentru a denumi regula."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Serverul"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Setarea acestui parametru la \"0\" va dezactiva rotația fișierului jurnal."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Pachetul software '%s' nu este instalat."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Pachetul software '%s' este depășit."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Actualizare software necesară"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Porniți"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Pornire / Oprire"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Porniți/opriți serverul Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Stocare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Codificarea stocării"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Backend de stocare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Syslog Nivelul de jurnal"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistem"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Proiectul Radicale este o soluție completă de server CalDAV (calendar) și "
-"CardDAV (contact)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Acestea pot fi vizualizate și editate de către clienții cu calendare și "
-"contacte de pe telefoane mobile sau computere."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Pentru a edita fișierul urmați acest link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Pentru a vizualiza cel mai recent fișier jurnal urmați acest link!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Valoarea nu este un număr"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Valoarea nu este un număr întreg >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Valoarea nu este cuprinsă între 0 și 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Valoare necesară ! Număr întreg >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versiune"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Informații despre versiune"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"AVERTISMENT: Doar 'File-system' este documentat și testat de Radicale "
-"development"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Avertisment"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"De asemenea, puteți obține grupuri din regexul utilizatorului în colecție cu "
-"{0}, {1}, etc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Puteți utiliza valorile de interpolare %(login)s și %(path)s ale "
-"ConfigParser din Python."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "criptare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "fișier htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "instalat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "nu a fost indicată nicio cale validă!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "sau mai mare"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "simplu"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "necesară"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "Salted SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: LuCI: radicale\n"
-"POT-Creation-Date: 2018-01-08 23:00+0300\n"
-"PO-Revision-Date: 2025-06-12 17:02+0000\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/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 5.12-dev\n"
-"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
-"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'АВТО' выбирает самую высокую версию протокола, которую поддерживают клиент "
-"и сервер."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"Задайте 'Имя_хоста:порт' или 'IPv4-адрес:порт' или 'IPv6-адрес:порт' - адрес "
-"и порт для входящих соединений сервера Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "АВТО"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Дополнительные заголовки HTTP"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Адрес:Порт"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Аутентификация"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Имя входа для проверки подлинности сопоставляется с ключом 'пользователь', и "
-"пути коллекции сопоставляется с ключом 'коллекция'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Метод аутентификации"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Методы аутентификации для разрешения доступа к серверу Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Авто-старт"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Задержка загрузки"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Календари и адресные книги доступны как для локального, так и для удалённого "
-"доступа, возможно ограниченного с помощью политик проверки подлинности."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Файл сертификата"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Выбранный здесь стандарт кодирования текстов, будет использоваться вместо "
-"'UTF-8' для ответов клиенту и/или для хранения данных внутри коллекций."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Запись событий консоли"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Управляйте доступом к сбору данных коллекций."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Критическая ситуация"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Cross-Origin Resource Sharing (CORS) - это механизм совместного "
-"использования ресурсов между разными источниками, позволяющий использовать "
-"ограниченные ресурсы (например, шрифты, JavaScript и т.д.) на веб-странице, "
-"запрашиваемой из другого домена, за пределами домена, из которого был создан "
-"ресурс."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Отладка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr "Задержка (в секундах) во время загрузки системы перед стартом Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Папка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Папка не существует / не найдена !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Укажите каталог !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Папка в которой хранятся перезаписываемые файлы системного журнала"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Во время задержки ifup-события не отслеживаются!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Включить HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Автоматический запуск Radicale сервера при загрузке прошивки устройства"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Кодировка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Кодировка для ответов на запросы."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Кодировка для хранения локальных данных коллекций."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Метод шифрования"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Ошибка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Файл '%s' не найден !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Записи о файлах"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Файл не найден !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Файловая система"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Например для ключа 'пользователь', '+' означает 'аутентифицированный "
-"пользователь' и '.*' означает 'кто угодно' (включая анонимных пользователей)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Полный доступ только для владельца"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Полный доступ для авторизованных пользователей"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Полный доступ для всех (включая анонимных)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Полный путь и имя файла сертификата"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Полный путь и имя файла Приватного ключа"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Предоставить UCI доступ для luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Информация"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Используйте только правильный алгоритм хэширования!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Начальные или конечные '/' - удаляются при указании пути."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Количество резервных<br />копий журнала"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Показ файла системного журнала"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Папка файла журналов"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Размер файла журнала"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Журналирование"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Сообщение входа в систему"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Максимальный размер каждой перезаписи файла журнала."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Отображаемое сообщение клиенту, когда требуется пароль."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Не установлена"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Отсутствует"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Количество резервных копий журнала."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Одно или несколько отсутствующих/недопустимых полей на странице"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Владелец разрешает запись, прошедшие проверку пользователи разрешают чтение"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Путь/файл требуется!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Разместите здесь пары 'логин:пароль' для ваших пользователей, которые должны "
-"иметь доступ к Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Установите текущую версию !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Нажмите кнопку [Перезагрузить], чтобы перечитать файл."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Обновите текущую версию!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Номера портов менее 1024 (привилегированные порты) не поддерживаются"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Файл Приватного ключа"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV сервер"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale использует '/etc/radicale/rights' в качестве файла на основе "
-"регулярного выражения (RegExp)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale использует '/etc/radicale/users' как htpasswd файл."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Только для чтения!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Файл регулярного выражения (RegExp)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Перезагрузить"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Кодировка ответов"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Права"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Права основаны на файле, основанном на регулярных выражениях"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Права доступа"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL протокол"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Сохранить"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Имена строк используются только для переименования правила."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Сервер"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Установка этого параметра в значение '0' приведет к отключению перезаписи "
-"файла журнала."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Программный пакет '%s' не установлен."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Программный пакет '%s' устарел."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Требуется обновление программного обеспечения"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Запустить"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Старт / Стоп"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Запуск и остановка сервера Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Хранилище"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Кодировка хранилища"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Сервер хранения"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Запись системных событий в журнал"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Система"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Radicale - это сервер, объединяющий в себе CalDAV (календарь) и CardDAV "
-"(контакты)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Их можно просматривать и редактировать по календарю и связываться с "
-"клиентами на мобильных телефонах или компьютерах."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Чтобы отредактировать файл, следуйте по этой ссылке!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Для просмотра последних записей в журнале, следуйте по этой ссылке!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Значение не является числом"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Значение не является целым числом > = 0!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Значение не между 0 и 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Требуемое значение ! Целое число >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Информация о версии"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"ВНИМАНИЕ: только 'Файловая система' документирована и протестирована "
-"сообществом Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Внимание"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Можно также получить группы из пользовательского regex вместе с {0}, {1} и "
-"т.д."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Вы можете использовать ConfigParser интерполяции Python значений %(логин)ы и "
-"%(путь)и."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd файл"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "установлено"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "не указан допустимый путь!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "или выше"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "простой"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "требовать"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "Соль SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-07-12 15:48+0000\n"
-"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/sk/>\n"
-"Language: sk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 5.0-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Overenie totožnosti"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Ladenie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Adresár"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Chyba"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Informácia"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Zaznamenávanie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Žiadny"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Uložiť"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Štart"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Úložisko"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Systém"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Verzia"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Upozornenie"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: luci-app-radicale 1.1.0-1\n"
-"POT-Creation-Date: 2016-01-30 20:34+0100\n"
-"PO-Revision-Date: 2025-03-03 00:49+0000\n"
-"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/sv/>\n"
-"Language: sv\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.10.3-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'AUTO' väljer den högsta protokollversionen som klienten och servern stödjer."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "AUTO"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adress:Port"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Autentisering"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Autentiseringsmetod"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Autentiseringsmetod för att tillåta åtkomst till Radicale-servern."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Starta automatiskt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Kalendrar och adressböcker är tillgängliga för både lokal och fjärrstyrd "
-"åtkomst, möjligtvis begränsad av villkoren för autentisering."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Certifikat-fil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Loggnivå för konsoll"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Kontrollera åtkomst till insamlingen av data."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritisk"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Avlusa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Mapp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Mappen finns inte/hittades inte !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Mapp krävs !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Mappen där de roterade logg-filerna lagras"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Aktivera HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Krypteringsmetod"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Fel"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Filen '%s' kunde inte hittas !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Loggnivå för fil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Filen kunde inte hittas !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Filsystem"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Info"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Visare för loggfil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Mapp för loggfil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Storlek på loggfil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Loggning"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Inloggningsmeddelande"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Meddelandet som visas i klienten när ett lösenord behövs."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "INTE installerad"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Ingen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Genväg/Fil krävs !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Vänligen installera den nuvarande versionen !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Vänligen tryck på [Omstart]-knappen nedan för att läsa om filen på nytt."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Vänligen uppdatera till den nuvarande versionen !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Portnummer under 1024 (Priviligerade portar) stöds inte"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Privat nyckel-fil"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV-server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale använder '/etc/radicale/rights som en regexp-baserad fil."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale använder '/etc/radicale/users' som en htpasswd-fil."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Endast läsbar!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "RegExp-fil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Ladda om"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Rättigheter"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Rättigheter baseras på en regexp-baserad fil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL-protokoll"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Spara"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Server"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Genom att ställa in den här parametern till '0' så kommer du att stänga av "
-"rotering av logg-fil."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Starta"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Starta / Stoppa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Starta/Stoppa Radicale-servern"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Lagringsutrymme"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Loggnivå för systemloggen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "System"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Följ den här länken för att redigera den här filen!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Följ den här länken för att visa den senaste logg-filen!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Värdet är inte ett nummer"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Värdet är inte ett heltal >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Värde krävs ! Heltal >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Information om versionen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"VARNING: Endast 'Filsystemet' är dokumenterat och testat av Radicale-"
-"utvecklingen"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Varning"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd-fil"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "installerad"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "eller högre"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "enkel"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "nödvändig"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "saltad SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-01-25 03:55+0000\n"
-"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/ta/>\n"
-"Language: ta\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.10-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"கிளையன்ட் மற்றும் சேவையக ஆதரிக்கும் மிக உயர்ந்த நெறிமுறை பதிப்பை 'ஆட்டோ' தேர்வு "
-"செய்கிறது."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'ஓச்ட்பெயர்: துறைமுகம்' அல்லது 'ஐபிவி 4: துறைமுகம்' அல்லது '[ஐபிவி 6]: துறைமுகம்' "
-"ரேடிகல் கேட்க வேண்டும்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "தானி"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "கூடுதல் HTTP தலைப்புகள்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "முகவரி: துறைமுகம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "ஏற்பு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"அங்கீகார உள்நுழைவு 'பயனர்' விசையுடன் பொருந்துகிறது, மேலும் சேகரிப்பின் பாதை "
-"'சேகரிப்பு' விசையுடன் பொருந்துகிறது."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "அங்கீகார முறை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "ராடிகல் சேவையகத்தை அணுக அனுமதிக்க அங்கீகார முறை."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "ஆட்டோ-ச்டார்ட்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "துவக்க நேரந்தவறுகை"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "கால்டாவ்/கார்டாவ்"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"காலெண்டர்கள் மற்றும் முகவரி புத்தகங்கள் உள்ளக மற்றும் தொலைநிலை அணுகலுக்கு கிடைக்கின்றன, "
-"இது அங்கீகாரக் கொள்கைகள் மூலம் வரையறுக்கப்படலாம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "சான்றிதழ் கோப்பு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"இங்கே மாற்றவும் கிளையனுக்கான பதில்களுக்கு மற்றும்/அல்லது சேகரிப்புகளுக்குள் தரவை சேமிக்க "
-"'யுடிஎஃப் -8' என்பதற்கு பதிலாக குறியாக்கம் ராடிகல் பயன்படுத்தும்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "பதிவு நிலை கன்சோல்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "தரவு சேகரிப்புகளுக்கான அணுகலைக் கட்டுப்படுத்தவும்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "விமர்சன"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"குறுக்கு-ஆரிசின் வள பகிர்வு (சிஓஆர்எச்) என்பது ஒரு வலைப்பக்கத்தில் தடைசெய்யப்பட்ட வளங்களை "
-"(எ.கா. எழுத்துருக்கள், சாவாச்கிரிப்ட் போன்றவை) அனுமதிக்கும் ஒரு வழிமுறையாகும், இது "
-"சான்று தோன்றிய களத்திற்கு வெளியே மற்றொரு களத்திலிருந்து கோரப்பட வேண்டும்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "பிழைத்திருத்தம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr "ராடிகல் தொடங்குவதற்கு முன் கணினி துவக்கத்தின் போது நேரந்தவறுகை (விநாடிகளில்)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "அடைவு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "அடைவு இல்லை/காணப்படவில்லை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "அடைவு தேவை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "சுழலும் பதிவு கோப்புகள் சேமிக்கப்படும் அடைவு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "தாமதத்தின் போது IFUP- நிகழ்வுகள் கண்காணிக்கப்படவில்லை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "HTTPS ஐ இயக்கவும்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr "கணினி தொடக்க மற்றும் இடைமுக நிகழ்வுகளில் ரேடிகலின் தானாகத் தொடங்குதல்/முடக்கு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "குறியாக்கம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "பதிலளிக்கும் கோரிக்கைகளுக்கு குறியாக்கம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "உள்ளக சேகரிப்புகளை சேமிப்பதற்கான குறியாக்கம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "குறியாக்க முறை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "பிழை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "கோப்பு '%s' கிடைக்கவில்லை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "கோப்பு பதிவு நிலை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "கோப்பு கிடைக்கவில்லை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "கோப்பு முறை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"எடுத்துக்காட்டாக, 'பயனர்' விசைக்கு, '.+' என்றால் 'அங்கீகரிக்கப்பட்ட பயனர்' மற்றும் '.*' "
-"என்றால் 'யாராவது' (அநாமதேய பயனர்கள் உட்பட)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "உரிமையாளருக்கு மட்டுமே முழு அணுகல்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "அங்கீகரிக்கப்பட்ட பயனர்களுக்கான முழு அணுகல்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "அனைவருக்கும் முழு அணுகல் (அநாமதேய உட்பட)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "சான்றிதழின் முழு பாதை மற்றும் கோப்பு பெயர்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "தனியார் விசையின் முழு பாதை மற்றும் கோப்பு பெயர்"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "லூசி-ஆப்-ராடிகலுக்கு யுசிஐ அணுகலை வழங்கவும்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "தகவல்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "சரியான ஆசிங் வழிமுறையைப் பயன்படுத்த நினைவில் கொள்ளுங்கள்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"முன்னணி அல்லது முடிவடையும் ச்லாச்கள் சேகரிப்பின் பாதையிலிருந்து ஒழுங்கமைக்கப்படுகின்றன."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "பதிவு-பின் எண்ணிக்கை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "பதிவு-கோப்பு பார்வையாளர்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "பதிவு-கோப்பு அடைவு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "பதிவு-கோப்பு அளவு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "பதிவு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "உள்நுழைவு செய்தி"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "ஒவ்வொரு சுழற்சி பதிவு-கோப்பின் அதிகபட்ச அளவு."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "கடவுச்சொல் தேவைப்படும்போது கிளையண்டில் காண்பிக்கப்படும் செய்தி."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "நிறுவப்படவில்லை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "எதுவுமில்லை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "உருவாக்க பதிவின் காப்பு கோப்புகளின் எண்ணிக்கை."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "தாவலில் ஒன்று அல்லது அதற்கு மேற்பட்ட காணாமல் போன/தவறான புலங்கள்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "உரிமையாளர் எழுத அனுமதிக்கவும், அங்கீகரிக்கப்பட்ட பயனர்கள் படிக்க அனுமதிக்கவும்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "பாதை/கோப்பு தேவை!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr "உங்கள் பயனர்களுக்கான 'பயனர்: கடவுச்சொல்' சோடிகளை இங்கே வைக்கவும்."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "தற்போதைய பதிப்பை நிறுவவும்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "கோப்பை மீண்டும் படிக்க கீழே உள்ள [REPLOAD] பொத்தானை அழுத்தவும்."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "தற்போதைய பதிப்பிற்கு புதுப்பிக்கவும்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "1024 (சலுகை பெற்ற துறைமுகங்கள்) கீழே உள்ள துறைமுகம் எண்கள் ஆதரிக்கப்படவில்லை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "தனிப்பட்ட விசை கோப்பு"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "ரேடிகல் கால்டாவ்/கார்டாவ் சேவையகம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "ரேசெக்ச் அடிப்படையிலான கோப்பாக தீவிரமான பயன்பாடு '/போன்றவை/தீவிர/உரிமைகள்'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "ரேடிகல் '/etc/radicale/பயனர்களை' HTPASSWD கோப்பாகப் பயன்படுத்துகிறது."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "மட்டும் படியுங்கள்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Regexp கோப்பு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "ஏற்றவும்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "பதில் குறியாக்கம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "உரிமைகள்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "உரிமைகள் REGEXP- அடிப்படையிலான கோப்பை அடிப்படையாகக் கொண்டவை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "உரிமைகள் பின்தளத்தில்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "சா -1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "எச்எச்எல் நெறிமுறை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "சேமி"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "பிரிவு பெயர்கள் விதிக்கு பெயரிட மட்டுமே பயன்படுத்தப்படுகின்றன."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "சேவையகம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr "இந்த அளவுருவை '0' ஆக அமைப்பது பதிவு-கோப்பின் சுழற்சியை முடக்கும்."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "மென்பொருள் தொகுப்பு '%s' நிறுவப்படவில்லை."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "மென்பொருள் தொகுப்பு '%s' காலாவதியானது."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "மென்பொருள் புதுப்பிப்பு தேவை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "தொடங்கு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "தொடக்க / நிறுத்து"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "ரேடிகல் சேவையகத்தைத் தொடங்க/நிறுத்து"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "சேமிப்பு"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "சேமிப்பக குறியாக்கம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "சேமிப்பக பின்தளத்தில்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "சிச்லாக் பதிவு நிலை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "மண்டலம்"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"ரேடிகல் திட்டம் ஒரு முழுமையான கால்டாவ் (காலண்டர்) மற்றும் கார்டாவ் (தொடர்பு) சேவையக தீர்வு."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"மொபைல் போன்கள் அல்லது கணினிகளில் காலண்டர் மற்றும் தொடர்பு வாடிக்கையாளர்களால் அவற்றைக் "
-"காணலாம் மற்றும் திருத்தலாம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "கோப்பைத் திருத்த இந்த இணைப்பைப் பின்தொடரவும்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "அண்மைக் கால பதிவு கோப்பைக் காண இந்த இணைப்பைப் பின்தொடரவும்!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "மதிப்பு ஒரு எண் அல்ல"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "மதிப்பு ஒரு முழு எண்> = 0!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "மதிப்பு 0 முதல் 300 வரை இல்லை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "மதிப்பு தேவை! முழு எண்> = 0!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "பதிப்பு"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "பதிப்பு செய்தி"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"எச்சரிக்கை: 'கோப்பு முறைமை' மட்டுமே ராடிகல் வளர்ச்சியால் ஆவணப்படுத்தப்பட்டு "
-"சோதிக்கப்படுகிறது"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "எச்சரிக்கை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr "{0}, {1}, முதலியன சேகரிப்பில் பயனர் ரீசெக்சிலிருந்து குழுக்களையும் பெறலாம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"நீங்கள் பைதானின் கட்டமைப்பான இடைக்கணிப்பு மதிப்புகள் %(login)s மற்றும் %(path)s "
-"பயன்படுத்தலாம்."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "குறியாக்கம்"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "HTPASSWD கோப்பு"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "நிறுவப்பட்டது"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "சரியான பாதை கொடுக்கப்படவில்லை!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "அல்லது அதற்கு மேற்பட்டது"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "வெற்று"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "தேவை"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "உப்பு SHA-1"
+++ /dev/null
-msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr ""
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr ""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-12-02 05:20+0000\n"
-"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/tr/>\n"
-"Language: tr\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.9-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'Otomatik' seçeneği istemci ve sunucu tarafından desteklenen en yüksek "
-"protokol sürümünü seçer."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"Radicale şunları dinlemelidir \"Ana Bilgisayar Adı: Bağlantı Noktası\" veya "
-"\"IPv4: Bağlantı Noktası\" veya \"[IPv6]: Bağlantı Noktası\""
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "OTOMATİK"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Ek HTTP üstbilgileri"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Adres:Bağlantı noktası"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Kimlik Doğrulama"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Kimlik doğrulama oturumu 'user' anahtarıyla eşleştirilir ve koleksiyonun "
-"yolu 'collection' anahtarıyla eşleştirilir."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Kimlik doğrulama yöntemi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Radicale sunucusuna erişime izin vermek için kimlik doğrulama yöntemi."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Otomatik başlat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Önyükleme gecikmesi"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Takvimler ve adres defterleri hem yerel hem de uzaktan erişim için mevcuttur "
-"ve muhtemelen kimlik doğrulama ilkeleriyle sınırlıdır."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Sertifika dosyası"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Burada Radicale kodlamasını istemciye verilen yanıtlar için ve / veya "
-"koleksiyonlar içinde depolamak için 'UTF-8' yerine kullanacak şekilde "
-"değiştirin."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Konsol Günlük düzeyi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Veri koleksiyonlarına erişimi kontrol edin."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Kritik"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Kaynaklar arası kaynak paylaşımı (CORS), bir web sayfasındaki kısıtlı "
-"kaynakların (ör. Yazı tipleri, JavaScript, vb.), Kaynağın geldiği etki "
-"alanının dışındaki başka bir etki alanından istenmesine izin veren bir "
-"mekanizmadır."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Hata Ayıklama"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Radicale başlamadan önce sistem önyüklemesi sırasında gecikme (saniye "
-"cinsinden)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Dizin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Dizin mevcut değil / bulunamadı!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Dizin gerekli!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Dönen günlük dosyalarının depolandığı dizin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Gecikme sırasında ifup-events izlenmez!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "HTTPS'yi etkinleştir"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Sistem başlangıcında ve arayüz olaylarında Radicale'nin otomatik "
-"başlatılmasını etkinleştirin / devre dışı bırakın"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Kodlama"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Yanıt istekleri için kodlama."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Yerel koleksiyonları depolamak için kodlama."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Şifreleme yöntemi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Hata"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "'%s' dosyası bulunamadı!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Dosya Günlük seviyesi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Dosya bulunamadı !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Dosya sistemi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Örneğin, 'user' anahtarı için '.+' 'authenticated user' ve '.*' 'anybody' "
-"(anonim kullanıcılar dahil) anlamına gelir."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Yalnızca Sahip için tam erişim"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Kimliği doğrulanmış Kullanıcılar için tam erişim"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Herkes için tam erişim (anonim dahil)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Sertifikanın tam yolu ve dosya adı"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Özel anahtarın tam yolu ve dosya adı"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "luci-app-radicale için UCI erişimi verin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Bilgi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Doğru hash algoritmasını kullanmayı unutmayın!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Baştaki veya sondaki eğik çizgiler, koleksiyonun yolundan kesilir."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Günlük yedekleme sayısı"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Günlük dosyası Görüntüleyici"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Günlük dosyası dizini"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Günlük dosyası boyutu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Günlükleme"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Oturum açma mesajı"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Her rotasyon günlük dosyasının maksimum boyutu."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Parola gerektiğinde istemcide görüntülenen mesaj."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Yüklü değil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Hiçbiri"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Oluşturulacak günlük yedekleme dosyalarının sayısı."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Sekmede bir veya daha fazla eksik / geçersiz alan"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Sahip yazmaya izin verir, kimliği doğrulanmış kullanıcılar okumaya izin verir"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Yol / Dosya gerekli!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Radicale'e erişimi olması gereken kullanıcılarınız için 'kullanıcı: şifre' "
-"çiftlerini buraya yerleştirin."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Lütfen güncel sürümü kurun!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr ""
-"Dosyayı yeniden okumak için lütfen aşağıdaki [Yeniden Yükle] düğmesine basın."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Lütfen mevcut sürüme güncelleyin!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr ""
-"1024'ün altındaki bağlantı noktası numaraları (Ayrıcalıklı bağlantı "
-"noktaları) desteklenmez"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Özel anahtar dosyası"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV Sunucusu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale, regexp tabanlı dosya olarak '/etc/radicale/rights' kullanır."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale htpasswd dosyası olarak '/etc/radicale/users' kullanır."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Salt Okunur!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "RegExp dosyası"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Yeniden yükle"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Yanıt Kodlama"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Haklar"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Haklar, regexp tabanlı bir dosyaya dayanır"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Haklar arka ucu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL Protokolü"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Kaydet"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Bölüm adları yalnızca kuralı adlandırmak için kullanılır."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Sunucu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Bu parametrenin '0' olarak ayarlanması, günlük dosyasının dönüşünü devre "
-"dışı bırakır."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Yazılım paketi '%s' kurulu değil."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Yazılım paketi '%s' güncel değil."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Yazılım güncellemesi gerekli"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Başlat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Başlat/Durdur"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Radicale sunucusunu Başlat / Durdur"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Depolama"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Depolama Kodlaması"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Depolama arka ucu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Sistem Günlüğü Günlük seviyesi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Sistem"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Radicale Projesi, eksiksiz bir CalDAV (takvim) ve CardDAV (iletişim) sunucu "
-"çözümüdür."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Takvim tarafından görüntülenebilir ve düzenlenebilir ve cep telefonlarında "
-"veya bilgisayarlarda istemcilerle iletişim kurulabilir."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Dosyayı düzenlemek için bu bağlantıyı izleyin!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "En son günlük dosyasını görüntülemek için bu bağlantıyı izleyin!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Değer bir sayı değil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Değer bir Tamsayı değil >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Değer 0 ile 300 arasında değil"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Değer gerekli! Tamsayı >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Versiyon"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Sürüm bilgisi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"UYARI: Yalnızca 'Dosya sistemi' belgelenir ve Radicale geliştirme tarafından "
-"test edilir"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Dikkat"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Ayrıca koleksiyondaki kullanıcı normal ifadesinden {0}, {1} vb. İle gruplar "
-"alabilirsiniz."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Python'un ConfigParser enterpolasyon değerlerini %(login)s ve %(path)s "
-"kullanabilirsiniz."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd dosyası"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "kurulmuş"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "geçerli bir yol verilmedi!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "veya daha yüksek"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "sade"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "gereklidir"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "salt edilmiş SHA-1"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-10 23:01+0000\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/uk/>\n"
-"Language: uk\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 5.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'АВТО' вибирає найвищу версію протоколу, яку підтримують клієнт і сервер."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Port' або 'IPv4:Port' або '[IPv6]:Port' Radicale повинен слухати на"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "АВТО"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Додаткові HTTP заголовки"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Адреса:Порт"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Автентифікація"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Логін для автентифікації зіставляється з ключем «користувач», а шлях "
-"колекції — з ключем «колекція»."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Метод аутентифікації"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Метод автентифікації для доступу до сервера Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Автозапуск"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Затримка завантаження"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Календарі та адресні книги доступні як для локального, так і для віддаленого "
-"доступу, можливо, обмеженого через політики автентифікації."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Файл сертифікату"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Змініть тут кодування, яке Radicale використовуватиме замість UTF-8 для "
-"відповідей клієнту та/або для зберігання даних у колекціях."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Рівень журналу консолі"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Контролюйте доступ до колекцій даних."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Критична ситуація"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Перехресне використання ресурсів (CORS) — це механізм, який дозволяє "
-"запитувати обмежені ресурси (наприклад, шрифти, JavaScript тощо) на веб-"
-"сторінці з іншого домену за межами домену, з якого походить ресурс."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Налагодження"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Затримка (в секундах) під час завантаження системи перед запуском Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Каталог"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Каталог не існує/знайдено!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Потрібен довідник!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Каталог, де зберігаються змінні файли журналу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Під час затримки ifup-події не відстежуються!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Увімкнути HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Увімкнути/вимкнути автоматичний запуск Radicale під час запуску системи та "
-"подій інтерфейсу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Кодування"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Кодування для відповідей на запити."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Кодування для зберігання локальних колекцій."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Метод шифрування"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Помилка"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Файл «%s» не знайдено !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Рівень журналу файлів"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Файл не знайдено !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Файлова система"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Наприклад, для ключа «користувач» «.+» означає «автентифікований "
-"користувач», а «.*» означає «будь-хто» (включно з анонімними користувачами)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Повний доступ лише для власника"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Повний доступ для авторизованих користувачів"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Повний доступ для всіх (анонімних включно)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Повний шлях та імʼя файлу сертифікату"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Повний шлях та імʼя файлу приватного ключа"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Надайте доступ UCI для luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Інфо"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Не забувайте використовувати правильний алгоритм хешування!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "Початкова або кінцева косі риски вилучаються зі шляху колекції."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Підрахунок резервного копіювання журналу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Переглядач лог-файлів"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Каталог лог-файлів"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Розмір лог-файлу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Журналювання"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Повідомлення входу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Максимальний розмір кожного файлу журналу ротації."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Повідомлення, яке відображається в клієнті, коли потрібен пароль."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "Не інстальовано"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Нічого"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Кількість резервних файлів журналу для створення."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Одне чи кілька відсутніх/недійсних полів на вкладці"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr ""
-"Власник дозволяє записувати, автентифіковані користувачі дозволяють читати"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Потрібен шлях/файл!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Розмістіть тут пари «користувач:пароль» для ваших користувачів, які повинні "
-"мати доступ до Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Будь ласка, встановіть поточну версію!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Натисніть кнопку [Перезавантажити] нижче, щоб перечитати файл."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Будь ласка, оновіть до поточної версії!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Номери портів нижче 1024 (привілейовані порти) не підтримуються"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Файл закритого ключа"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Сервер Radicale CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale використовує '/etc/radicale/rights' як файл на основі регулярного "
-"виразу."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale використовує '/etc/radicale/users' як файл htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Лише для читання!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Файл RegExp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Перезавантажити"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Кодування відповіді"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Права"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Права базуються на файлі на основі регулярного виразу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Сервер прав"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL протокол"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Зберегти"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Назви розділів використовуються лише для іменування правила."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Сервер"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr "Встановлення цього параметра на «0» вимкне ротацію файлу журналу."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Пакунок програм '%s' не встановлено."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Пакунок програм '%s' застарів."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Потрібне оновлення програмного забезпечення"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Запустити"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Пуск/Стоп"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Запуск/зупинка сервера Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Сховище"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Кодування зберігання"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Сервер зберігання"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Рівень журналу системного журналу"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Система"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Проект Radicale — це повне серверне рішення CalDAV (календар) і CardDAV "
-"(контакт)."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Їх можна переглядати та редагувати за допомогою календаря та контактів "
-"клієнтів на мобільних телефонах чи комп’ютерах."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Для редагування файлу перейдіть за цим посиланням!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Щоб переглянути останній файл журналу, перейдіть за цим посиланням!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Значення не є числом"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Значення не є цілим числом >= 0!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Значення не між 0 і 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Необхідне значення! Ціле число >= 0!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Версія"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Інформація про версію"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"ПОПЕРЕДЖЕННЯ: Лише «Файлова система» задокументована та перевірена розробкою "
-"Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Застереження"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Ви також можете отримати групи з регулярного виразу користувача в колекції "
-"за допомогою {0}, {1} тощо."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Ви можете використовувати значення інтерполяції Python ConfigParser %"
-"(login)s і %(path)s."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd файл"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "встановлено"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "не вказано дійсний шлях!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "чи вище"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "простий"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "вимагається"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "SHA-1 з сіллю"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-06-21 08:31+0000\n"
-"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsradicale/vi/>\n"
-"Language: vi\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.18.1\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr ""
-"'TỰ ĐỘNG ' chọn phiên bản giao thức cao nhất mà máy khách và máy chủ hỗ trợ."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr ""
-"'Hostname:Port' hoặc 'IPv4:Port' hoặc '[IPv6]:Port' Radicale nên lắng nghe "
-"trên"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "TỰ ĐỘNG"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "Tiêu đề HTTP bổ sung"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "Địa chỉ:Cổng"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "Xác thực"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr ""
-"Đăng nhập xác thực được so khớp với khóa 'user', và đường dẫn của bộ sưu tập "
-"được so khớp với khóa 'collection'."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "Phương thức xác thực"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "Phương thức xác thực để cho phép truy cập vào máy chủ Radicale."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "Tự động khởi động"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "Độ trễ khởi động"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr ""
-"Lịch và sổ địa chỉ có sẵn cho cả truy cập cục bộ và từ xa, có thể bị giới "
-"hạn thông qua các chính sách xác thực."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "Tệp chứng chỉ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"Thay đổi ở đây mã hóa Radicale sẽ sử dụng thay vì 'UTF-8' để phản hồi cho "
-"khách hàng và/hoặc để lưu trữ dữ liệu bên trong bộ sưu tập."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "Mức nhật ký bảng điều khiển"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "Kiểm soát quyền truy cập vào các bộ sưu tập dữ liệu."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "Quan trọng"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"Chia sẻ tài nguyên có nguồn gốc chéo (CORS) là một cơ chế cho phép các tài "
-"nguyên bị hạn chế (ví dụ: phông chữ, JavaScript, v.v.) trên một trang web "
-"được yêu cầu từ một miền khác bên ngoài miền mà tài nguyên xuất phát."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "Debug"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr ""
-"Độ trễ (theo giây) trong quá trình khởi động hệ thống trước khi Radicale bắt "
-"đầu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "Thư mục"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "Thư mục không tồn tại/được tìm thấy !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "Thư mục bắt buộc !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "Thư mục nơi các tệp nhật ký xoay vòng được lưu trữ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "Trong thời gian chờ, các sự kiện ifup không được giám sát !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "Bật HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr ""
-"Bật/Tắt tự động khởi động Radicale khi hệ thống khởi động và các sự kiện "
-"giao diện"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "Mã hóa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "Mã hóa để phản hồi các yêu cầu."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "Mã hóa để lưu trữ các bộ sưu tập cục bộ."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "Phương thức mã hóa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "Lỗi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "Không tìm thấy tệp '%s' !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "Mức nhật ký tệp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "Không tìm thấy tệp !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "Hệ thống tệp"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"Ví dụ, cho khóa 'user', '.+' có nghĩa là 'người dùng được xác thực' và '.*' "
-"có nghĩa là 'bất kỳ ai' (bao gồm cả người dùng ẩn danh)."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "Chỉ chủ sở hữu mới có quyền truy cập đầy đủ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "Quyền truy cập đầy đủ cho người dùng được xác thực"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "Quyền truy cập đầy đủ cho mọi người (bao gồm cả người dùng ẩn danh)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "Đường dẫn đầy đủ và tên tệp của chứng chỉ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "Đường dẫn đầy đủ và tên tệp của khóa riêng"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "Cấp quyền truy cập UCI cho luci-app-radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "Thông tin"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "Hãy nhớ sử dụng thuật toán băm chính xác !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr ""
-"Các dấu gạch chéo đầu hoặc cuối được cắt bỏ khỏi đường dẫn của bộ sưu tập."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "Số lượng sao lưu nhật ký"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "Trình xem tệp nhật ký"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "Thư mục tệp nhật ký"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "Kích thước tệp nhật ký"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "Ghi nhật ký"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "Thông báo đăng nhập"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "Kích thước tối đa của mỗi tệp nhật ký xoay vòng."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "Thông báo hiển thị trong máy khách khi cần mật khẩu."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "CHƯA được cài đặt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "Không có"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "Số lượng các tệp sao lưu của nhật ký để tạo."
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "Một hoặc nhiều trường bị thiếu/không hợp lệ trên tab"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "Chủ sở hữu cho phép ghi, người dùng được xác thực cho phép đọc"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "Đường dẫn/Tệp bắt buộc !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr ""
-"Đặt ở đây các cặp 'user:password' cho người dùng của bạn mà nên có quyền "
-"truy cập vào Radicale."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "Vui lòng cài đặt phiên bản hiện tại !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "Vui lòng nhấn nút [Tải lại] bên dưới để đọc lại tệp."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "Vui lòng cập nhật lên phiên bản hiện tại !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "Các số cổng dưới 1024 (Cổng đặc quyền) không được hỗ trợ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "Tệp khóa riêng"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Máy chủ Radicale CalDAV/CardDAV"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr ""
-"Radicale sử dụng '/etc/radicale/rights' làm tệp dựa trên biểu thức chính quy."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale sử dụng '/etc/radicale/users' làm tệp htpasswd."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "Chỉ đọc!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "Tệp biểu thức chính quy"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "Tải lại"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "Mã hóa phản hồi"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "Quyền"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "Quyền được dựa trên một tệp dựa trên biểu thức chính quy"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "Phụ trợ quyền"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "Giao thức SSL"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "Lưu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "Tên phần chỉ được sử dụng để đặt tên cho quy tắc."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "Máy Chủ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr ""
-"Thiết lập tham số này thành '0' sẽ vô hiệu hóa việc xoay vòng tệp nhật ký."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "Gói phần mềm '%s' chưa được cài đặt."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "Gói phần mềm '%s' đã lỗi thời."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "Cần cập nhật phần mềm"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "Bắt đầu"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "Bắt đầu / Dừng"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "Bắt đầu/Dừng máy chủ Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "Lưu trữ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "Mã hóa lưu trữ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "Phụ trợ lưu trữ"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "Mức nhật ký syslog"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "Hệ thống"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Dự án Radicale là một giải pháp máy chủ CalDAV (lịch) và CardDAV (liên hệ) "
-"hoàn chỉnh."
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr ""
-"Chúng có thể được xem và chỉnh sửa bởi các máy khách lịch và liên hệ trên "
-"điện thoại di động hoặc máy tính."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "Để chỉnh sửa tệp, hãy làm theo liên kết này!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "Để xem tệp nhật ký mới nhất, hãy làm theo liên kết này!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "Giá trị không phải là một số"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "Giá trị không phải là một số nguyên >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "Giá trị không nằm trong khoảng từ 0 đến 300"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "Giá trị bắt buộc ! Số nguyên >= 0 !"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "Phiên bản"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "Thông tin phiên bản"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr ""
-"CẢNH BÁO: Chỉ có 'Hệ thống tệp' được tài liệu hóa và kiểm tra bởi sự phát "
-"triển của Radicale"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "Cảnh báo"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr ""
-"Bạn cũng có thể lấy các nhóm từ biểu thức chính quy của người dùng trong bộ "
-"sưu tập với {0}, {1}, v.v."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr ""
-"Bạn có thể sử dụng các giá trị nội suy ConfigParser của Python %(login)s và %"
-"(path)s."
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "mã hóa"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "tệp htpasswd"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "đã cài đặt"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "không có đường dẫn hợp lệ nào được đưa ra!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "hoặc cao hơn"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "đơn giản"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "bắt buộc"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "slated SHA-1"
+++ /dev/null
-#
-#
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-04-03 06:31+0000\n"
-"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
-"projects/openwrt/luciapplicationsradicale/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 5.11-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr "“AUTO”选择客户端和服务器支持的最高协议版本。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr "Radicale 应监听的“主机名:端口”或“IPv4:端口”或“[IPv6]:端口”"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "自动"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "其他 HTTP 标头"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "地址:端口"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "身份验证"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr "身份验证登录将用“user”键值匹配,集合的路径将用“collection”键值匹配。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "身份验证方法"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "允许访问 Radicale 服务器的身份验证方法。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "自动启动"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "启动延时"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV(备忘录)/CardDAV(电话薄)"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr "日历和地址簿可以通过本地或远程访问,且可以通过身份验证策略加以限制。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "证书文件"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"在这里更改 Radicale 响应客户端和/或在集合中存储数据将使用的编码,而不是默认"
-"的“UTF-8”。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "控制台日志级别"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "控制对数据集合的访问。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "严重"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"跨域资源共享(CORS)是一种机制,允许源自资源域外的另一个域请求网页上的受限资"
-"源(如字体,JavaScript等)。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "调试"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr "系统启动时 Radicale 启动前延迟(秒)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "目录"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "目录不存在/未找到!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "需要目录!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "存储旋转日志文件的目录"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "在延迟期间无法监测 ifup 事件!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "启用 HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr "在系统启动和接口事件上启用/禁用 Radicale 的自动启动"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "编码"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "用于响应请求的编码。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "用于本地集合存储的编码。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "加密方法"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "错误"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "文件 '%s' 没有找到!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "文件日志级别"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "找不到文件 !"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "文件系统"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"例如,对于“用户”键,“.+”表示“经过身份验证的用户”,“.*”表示“任何人”(包括匿名"
-"用户)。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "完全访问权限仅限所有者"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "完全访问权限包括已验证身份用户"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "完全访问权限授予所有人(包括匿名)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "证书的完整路径和文件名"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "私钥的完整路径和文件名"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "授予UCI访问luci-app-radiicale的权限"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "信息"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "请记住使用正确的散列算法!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "将会去除集合路径中的前导或结束斜杠。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "日志备份计数"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "日志文件查看器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "日志文件目录"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "日志文件大小"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "日志"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "登录消息"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "每个旋转日志文件的最大大小。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "需要密码时,客户端中显示的消息。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "未安装"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "无"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "要创建的日志备份文件数。"
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "选项卡上的一个或多个字段缺失/无效"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "所有者允许写入,认证用户允许读取"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "需要路径/文件!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr "在这里为您的用户设置“用户:密码”对,这些用户可以访问 Radicale。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "请安装当前版本!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "请按下面的[刷新]按钮重新读取文件。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "请更新到当前版本!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "不支持低于 1024 的端口号(特权端口)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "私钥文件"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV 服务器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale 使用“/etc/radicale/rights”作为正则表达式文件。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale 使用“/etc/radicale/users”作为 htpasswd 文件。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "只读!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "正则表达式文件"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "重新加载"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "响应编码"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "权限"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "权限基于正则表达式文件"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "权限后端"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL 协议"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "保存"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "章节名称仅用于命名规则。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "服务器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr "将此参数设置为“0”将禁用日志文件的旋转。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "软件包 '%s' 未安装。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "软件包“%s”已过时。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "需要软件更新"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "启动"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "启动 / 停止"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "启动/停止 Radicale 服务器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "存储"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "存储编码"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "存储后端"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "系统日志级别"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "系统"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Radicale 项目是一个完整的 CalDAV(日历)和 CardDAV(联系人)服务器解决方案。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr "可以通过手机或计算机上的日历和联系人客户查看和编辑它们。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "要编辑文件,请点击此链接!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "要查看最新的日志文件,请点击此链接!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "输入值不是一个数字"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "值不是非负整数!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "输入值不在 0 和 300 之间"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "需要负整数值!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "版本信息"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr "警告:只有“文件系统”选项受 Radicale 开发人员测试和支持"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "警告"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr "您还可以使用 {0}、{1} 等从集合中的用户正则表达式获取组。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr "您可以使用 Python ConfigParser 的格式化变量 %(login)s 和 %(path)s。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "加密"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd 文件"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "已安装"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "没有给出有效路径!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "或更高"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "明文"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "需要"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "盐化 SHA-1"
+++ /dev/null
-#
-#
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-06-15 15:48+0000\n"
-"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
-"projects/openwrt/luciapplicationsradicale/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 5.12-dev\n"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:268
-msgid ""
-"'AUTO' selects the highest protocol version that client and server support."
-msgstr "“AUTO”選擇用戶端和伺服器端支援的最高協定版本。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:223
-msgid ""
-"'Hostname:Port' or 'IPv4:Port' or '[IPv6]:Port' Radicale should listen on"
-msgstr "Radicale 應監聽的“主機名:埠”或“IPv4:埠”或“[IPv6]:埠”"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:272
-msgid "AUTO"
-msgstr "自動"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:706
-msgid "Additional HTTP headers"
-msgstr "其他 HTTP 標頭"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:222
-msgid "Address:Port"
-msgstr "地址:埠"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:80
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:341
-msgid "Authentication"
-msgstr "認證"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:87
-msgid ""
-"Authentication login is matched against the 'user' key, and collection's "
-"path is matched against the 'collection' key."
-msgstr "身份驗證登入將用“user”鍵值匹配,集合的路徑將用“collection”鍵值匹配。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:352
-msgid "Authentication method"
-msgstr "身份驗證方法"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:342
-msgid "Authentication method to allow access to Radicale server."
-msgstr "允許存取Radicale伺服器的身份驗證方法。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:173
-msgid "Auto-start"
-msgstr "自動啟動"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:190
-msgid "Boot delay"
-msgstr "啟動延遲"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:23
-msgid "CalDAV/CardDAV"
-msgstr "CalDAV(行事曆)/ CardDAV(通訊錄)"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:33
-msgid ""
-"Calendars and address books are available for both local and remote access, "
-"possibly limited through authentication policies."
-msgstr "日曆和地址簿可以通過本地或遠端存取,且可以通過身份驗證策略加以限制。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:284
-msgid "Certificate file"
-msgstr "憑證檔案"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:677
-msgid ""
-"Change here the encoding Radicale will use instead of 'UTF-8' for responses "
-"to the client and/or to store data inside collections."
-msgstr ""
-"在這裡更改Radicale回應用戶端和/或在集合中儲存資料將使用的編碼,而不是預設"
-"的“UTF-8”。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:544
-msgid "Console Log level"
-msgstr "主控台日誌級別"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:419
-msgid "Control the access to data collections."
-msgstr "控制對資料集合的存取。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:552
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:574
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:596
-msgid "Critical"
-msgstr "嚴重"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:707
-msgid ""
-"Cross-origin resource sharing (CORS) is a mechanism that allows restricted "
-"resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from "
-"another domain outside the domain from which the resource originated."
-msgstr ""
-"跨域資源共享(CORS)是一種機制,允許源自資源域外的另一個域請求網頁上的受限資"
-"源(如字型,JavaScript等)。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:548
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:570
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:592
-msgid "Debug"
-msgstr "除錯"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:191
-msgid "Delay (in seconds) during system boot before Radicale start"
-msgstr "系統啟動時 Radicale 啟動前延遲(秒)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:508
-msgid "Directory"
-msgstr "目錄"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:524
-msgid "Directory not exists/found !"
-msgstr "目錄不存在/未找到!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:527
-msgid "Directory required !"
-msgstr "需要目錄!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:611
-msgid "Directory where the rotating log-files are stored"
-msgstr "儲存旋轉日誌檔案的目錄"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:193
-msgid "During delay ifup-events are not monitored !"
-msgstr "在延遲期間,ifup-事件 不受監控!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:251
-msgid "Enable HTTPS"
-msgstr "啟用 HTTPS"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:174
-msgid ""
-"Enable/Disable auto-start of Radicale on system start-up and interface events"
-msgstr "在系統啟動和介面事件上啟用/禁用 Radicale 的自動啟動"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:676
-msgid "Encoding"
-msgstr "編碼"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:689
-msgid "Encoding for responding requests."
-msgstr "用於回應請求的編碼。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:698
-msgid "Encoding for storing local collections."
-msgstr "用於本地集合儲存的編碼。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:385
-msgid "Encryption method"
-msgstr "加密方法"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:551
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:573
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:595
-msgid "Error"
-msgstr "錯誤"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:120
-msgid "File '%s' not found !"
-msgstr "檔案 '%s' 沒有找到!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:588
-msgid "File Log level"
-msgstr "檔案日誌級別"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:300
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:325
-msgid "File not found !"
-msgstr "找不到檔案!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:488
-msgid "File-system"
-msgstr "檔案系統"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:92
-msgid ""
-"For example, for the 'user' key, '.+' means 'authenticated user' and '.*' "
-"means 'anybody' (including anonymous users)."
-msgstr ""
-"例如,對於“使用者”鍵,“.+”表示“經過身份驗證的使用者”,“.*”表示“任何人”(包括"
-"匿名使用者)。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:435
-msgid "Full access for Owner only"
-msgstr "完全存取許可權僅限所有者"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:434
-msgid "Full access for authenticated Users"
-msgstr "完全存取許可權包括已驗證身份使用者"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:433
-msgid "Full access for everybody (including anonymous)"
-msgstr "完全存取許可權授予所有人(包括匿名)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:285
-msgid "Full path and file name of certificate"
-msgstr "憑證的完整路徑和檔案名稱"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:310
-msgid "Full path and file name of private key"
-msgstr "私鑰的完整路徑和檔名"
-
-#: applications/luci-app-radicale/root/usr/share/rpcd/acl.d/luci-app-radicale.json:3
-msgid "Grant UCI access for luci-app-radicale"
-msgstr "授予luci-app-radicale存取UCI的權限"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:549
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:571
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:593
-msgid "Info"
-msgstr "資訊"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:83
-msgid "Keep in mind to use the correct hashing algorithm !"
-msgstr "請記住使用正確的雜湊演算法!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:97
-msgid "Leading or ending slashes are trimmed from collection's path."
-msgstr "將會去除集合路徑中的前導或結束斜槓。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:653
-msgid "Log-backup Count"
-msgstr "日誌備份計數"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:77
-msgid "Log-file Viewer"
-msgstr "日誌檔案檢視器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:610
-msgid "Log-file directory"
-msgstr "日誌檔案目錄"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:630
-msgid "Log-file size"
-msgstr "日誌檔案大小"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:533
-msgid "Logging"
-msgstr "日誌"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:235
-msgid "Logon message"
-msgstr "登入訊息"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:631
-msgid "Maximum size of each rotation log-file."
-msgstr "每個旋轉日誌檔案的最大大小。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:236
-msgid "Message displayed in the client when a password is needed."
-msgstr "需要密碼時,用戶端顯示的訊息。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:46
-msgid "NOT installed"
-msgstr "未安裝"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:356
-msgid "None"
-msgstr "無"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:654
-msgid "Number of backup files of log to create."
-msgstr "要建立的日誌備份檔案數。"
-
-#: applications/luci-app-radicale/luasrc/view/radicale/tabmap_nsections.htm:50
-msgid "One or more missing/invalid fields on tab"
-msgstr "選項卡上的一個或多個欄位缺失/無效"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:436
-msgid "Owner allow write, authenticated users allow read"
-msgstr "所有者允許寫入,認證使用者允許讀取"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:303
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:328
-msgid "Path/File required !"
-msgstr "需要路徑/檔案!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:81
-msgid ""
-"Place here the 'user:password' pairs for your users which should have access "
-"to Radicale."
-msgstr "在這裡為您的使用者設定“使用者:密碼”組合,這些使用者可以存取Radicale。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:67
-msgid "Please install current version !"
-msgstr "請安裝當前版本!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:78
-msgid "Please press [Reload] button below to reread the file."
-msgstr "請按下面的[重新整理]按鈕重新讀取檔案。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:78
-msgid "Please update to current version !"
-msgstr "請更新到當前版本!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:225
-msgid "Port numbers below 1024 (Privileged ports) are not supported"
-msgstr "不支援低於 1024 的埠號(特權埠)"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:309
-msgid "Private key file"
-msgstr "私鑰檔案"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:19
-msgid "Radicale CalDAV/CardDAV Server"
-msgstr "Radicale CalDAV/CardDAV 伺服器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:459
-msgid "Radicale uses '/etc/radicale/rights' as regexp-based file."
-msgstr "Radicale 使用“/etc/radicale/rights”作為正則表示式檔案。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:404
-msgid "Radicale uses '/etc/radicale/users' as htpasswd file."
-msgstr "Radicale 使用“/etc/radicale/users”作為 htpasswd 檔案。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:402
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:457
-msgid "Read only!"
-msgstr "唯讀!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:455
-msgid "RegExp file"
-msgstr "正則表示式檔案"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:56
-msgid "Reload"
-msgstr "重新載入"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:688
-msgid "Response Encoding"
-msgstr "回應編碼"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:86
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:418
-msgid "Rights"
-msgstr "權限"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:437
-msgid "Rights are based on a regexp-based file"
-msgstr "許可權基於正則表示式檔案"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:429
-msgid "Rights backend"
-msgstr "許可權後端"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:392
-msgid "SHA-1"
-msgstr "SHA-1"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:267
-msgid "SSL Protocol"
-msgstr "SSL 協定"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:62
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:65
-msgid "Save"
-msgstr "儲存"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:95
-msgid "Section names are only used for naming the rule."
-msgstr "章節名稱僅用於命名規則。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:211
-msgid "Server"
-msgstr "伺服器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:633
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:656
-msgid "Setting this parameter to '0' will disable rotation of log-file."
-msgstr "將此引數設定為“0”將禁用日誌檔案的旋轉。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:62
-msgid "Software package '%s' is not installed."
-msgstr "未安裝套件 '%s'。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:71
-msgid "Software package '%s' is outdated."
-msgstr "軟體包“%s”已過時。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:26
-msgid "Software update required"
-msgstr "需要軟體更新"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:164
-#: applications/luci-app-radicale/luasrc/view/radicale/btn_startstop.htm:10
-msgid "Start"
-msgstr "啟動"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:155
-msgid "Start / Stop"
-msgstr "啟動 / 停止"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:156
-msgid "Start/Stop Radicale server"
-msgstr "啟動/停止 Radicale 伺服器"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:473
-msgid "Storage"
-msgstr "儲存"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:697
-msgid "Storage Encoding"
-msgstr "儲存編碼"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:484
-msgid "Storage backend"
-msgstr "儲存後端"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:566
-msgid "Syslog Log level"
-msgstr "系統日誌級別"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:141
-msgid "System"
-msgstr "系統"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:32
-msgid ""
-"The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) "
-"server solution."
-msgstr ""
-"Radicale 專案是一個完整的 CalDAV(日曆)和 CardDAV(聯絡人)伺服器解決方案。"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:34
-msgid ""
-"They can be viewed and edited by calendar and contact clients on mobile "
-"phones or computers."
-msgstr "可以通過手機或電腦上的日曆和聯絡人客戶檢視和編輯它們。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:408
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:463
-msgid "To edit the file follow this link!"
-msgstr "要編輯檔案,請點選此連結!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:615
-msgid "To view latest log file follow this link!"
-msgstr "要檢視最新的日誌檔案,請點選此連結!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:201
-msgid "Value is not a number"
-msgstr "值不是號碼"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:644
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:667
-msgid "Value is not an Integer >= 0 !"
-msgstr "值不是非負整數!"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:203
-msgid "Value not between 0 and 300"
-msgstr "值不介在 0 和 300 之間"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:647
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:670
-msgid "Value required ! Integer >= 0 !"
-msgstr "需要負整數值!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:40
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:42
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:45
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:38
-msgid "Version Information"
-msgstr "版本資訊"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:485
-msgid ""
-"WARNING: Only 'File-system' is documented and tested by Radicale development"
-msgstr "警告:只有“檔案系統”選項受 Radicale 開發人員測試和支援"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:550
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:572
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:594
-msgid "Warning"
-msgstr "警告"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:90
-msgid ""
-"You can also get groups from the user regex in the collection with {0}, {1}, "
-"etc."
-msgstr "您還可以使用 {0}、{1} 等從集合中的使用者正則表示式獲取組。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:89
-msgid ""
-"You can use Python's ConfigParser interpolation values %(login)s and %"
-"(path)s."
-msgstr "您可以使用 Python ConfigParser 的格式化變數 %(login)s 和 %(path)s。"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:390
-msgid "crypt"
-msgstr "crypt演算法"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:357
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:400
-msgid "htpasswd file"
-msgstr "htpasswd 檔案"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:44
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:73
-msgid "installed"
-msgstr "已安裝"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:623
-msgid "no valid path given!"
-msgstr "沒有給出有效路徑!"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:43
-msgid "or higher"
-msgstr "或更高"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:391
-msgid "plain"
-msgstr "明文"
-
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:41
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:64
-#: applications/luci-app-radicale/luasrc/controller/radicale.lua:75
-msgid "required"
-msgstr "需要"
-
-#: applications/luci-app-radicale/luasrc/model/cbi/radicale.lua:393
-msgid "salted SHA-1"
-msgstr "鹽化 SHA-1"
+++ /dev/null
-{
- "luci-app-radicale": {
- "description": "Grant UCI access for luci-app-radicale",
- "read": {
- "uci": [ "radicale" ]
- },
- "write": {
- "uci": [ "radicale" ]
- }
- }
-}