Merge Lean's source
This commit is contained in:
commit
83513db00e
@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
||||
PKG_NAME:=mac80211
|
||||
|
||||
PKG_VERSION:=4.19.85-1
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
PKG_SOURCE_URL:=@KERNEL/linux/kernel/projects/backports/stable/v4.19.85/
|
||||
PKG_HASH:=6a92df43e8c3e2410638d84dfd18773d667757532dd0a911227c9b7d65aee34d
|
||||
|
||||
@ -162,7 +162,7 @@ endef
|
||||
define KernelPackage/airo
|
||||
$(call KernelPackage/mac80211/Default)
|
||||
TITLE:=Cisco Aironet driver
|
||||
DEPENDS+=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-cfg80211 @TARGET_x86
|
||||
DEPENDS+=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-cfg80211 @TARGET_x86 @BROKEN
|
||||
FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/cisco/airo.ko
|
||||
AUTOLOAD:=$(call AutoProbe,airo)
|
||||
endef
|
||||
@ -223,7 +223,7 @@ endef
|
||||
define KernelPackage/lib80211
|
||||
$(call KernelPackage/mac80211/Default)
|
||||
TITLE:=802.11 Networking stack
|
||||
DEPENDS:=+kmod-cfg80211 +kmod-crypto-hash
|
||||
DEPENDS:=+kmod-cfg80211 +kmod-crypto-hash +kmod-crypto-ccm
|
||||
FILES:= \
|
||||
$(PKG_BUILD_DIR)/net/wireless/lib80211.ko \
|
||||
$(PKG_BUILD_DIR)/net/wireless/lib80211_crypt_wep.ko \
|
||||
|
||||
14
package/lean/luci-app-cifsd/Makefile
Normal file
14
package/lean/luci-app-cifsd/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=Network Shares - CIFSD CIFS/SMB kernel fileserver
|
||||
LUCI_DEPENDS:=+cifsd-tools
|
||||
LUCI_PKGARCH:=all
|
||||
PKG_NAME:=luci-app-cifsd
|
||||
PKG_VERSION:=1
|
||||
PKG_RELEASE:=5
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
17
package/lean/luci-app-cifsd/luasrc/controller/cifsd.lua
Normal file
17
package/lean/luci-app-cifsd/luasrc/controller/cifsd.lua
Normal file
@ -0,0 +1,17 @@
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
module("luci.controller.cifsd", package.seeall)
|
||||
|
||||
function index()
|
||||
if not nixio.fs.access("/etc/config/cifsd") then
|
||||
return
|
||||
end
|
||||
|
||||
entry({"admin","nas"},firstchild(),"NAS",44).dependent=false
|
||||
|
||||
local page
|
||||
|
||||
page = entry({"admin", "nas", "cifsd"}, cbi("cifsd"), _("Network Shares (CIFSD)"))
|
||||
page.dependent = true
|
||||
end
|
||||
|
||||
87
package/lean/luci-app-cifsd/luasrc/model/cbi/cifsd.lua
Normal file
87
package/lean/luci-app-cifsd/luasrc/model/cbi/cifsd.lua
Normal file
@ -0,0 +1,87 @@
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
m = Map("cifsd", translate("Network Shares (CIFSD)"))
|
||||
|
||||
s = m:section(TypedSection, "globals", translate("CIFSD is an opensource In-kernel SMB1/2/3 server"))
|
||||
s.anonymous = true
|
||||
|
||||
s:tab("general", translate("General Settings"))
|
||||
s:tab("template", translate("Edit Template"))
|
||||
|
||||
|
||||
o = s:taboption("general", Value, "workgroup", translate("Workgroup"))
|
||||
o.placeholder = 'WORKGROUP'
|
||||
|
||||
s:taboption("general", Value, "description", translate("Description"))
|
||||
|
||||
|
||||
tmpl = s:taboption("template", Value, "_tmpl",
|
||||
translate("Edit the template that is used for generating the cifsd configuration."),
|
||||
translate("This is the content of the file '/etc/cifs/smb.conf.template' from which your cifsd configuration will be generated. \
|
||||
Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab."))
|
||||
|
||||
tmpl.template = "cbi/tvalue"
|
||||
tmpl.rows = 20
|
||||
|
||||
function tmpl.cfgvalue(self, section)
|
||||
return nixio.fs.readfile("/etc/cifs/smb.conf.template")
|
||||
end
|
||||
|
||||
function tmpl.write(self, section, value)
|
||||
value = value:gsub("\r\n?", "\n")
|
||||
nixio.fs.writefile("//etc/cifs/smb.conf.template", value)
|
||||
end
|
||||
|
||||
|
||||
s = m:section(TypedSection, "share", translate("Shared Directories")
|
||||
, translate("Please add directories to share. Each directory refers to a folder on a mounted device."))
|
||||
s.anonymous = true
|
||||
s.addremove = true
|
||||
s.template = "cbi/tblsection"
|
||||
|
||||
s:option(Value, "name", translate("Name"))
|
||||
pth = s:option(Value, "path", translate("Path"))
|
||||
if nixio.fs.access("/etc/config/fstab") then
|
||||
pth.titleref = luci.dispatcher.build_url("admin", "system", "fstab")
|
||||
end
|
||||
|
||||
br = s:option(Flag, "browseable", translate("Browseable"))
|
||||
br.rmempty = false
|
||||
br.default = "yes"
|
||||
br.enabled = "yes"
|
||||
br.disabled = "no"
|
||||
|
||||
ro = s:option(Flag, "read_only", translate("Read-only"))
|
||||
ro.rmempty = false
|
||||
ro.enabled = "yes"
|
||||
ro.disabled = "no"
|
||||
|
||||
fr = s:option(Flag, "force_root", translate("Force Root"))
|
||||
fr.default = "1"
|
||||
|
||||
-- s:option(Value, "users", translate("Allowed users")).rmempty = true
|
||||
|
||||
go = s:option(Flag, "guest_ok", translate("Allow guests"))
|
||||
go.rmempty = false
|
||||
go.enabled = "yes"
|
||||
go.disabled = "no"
|
||||
go.default = "yes"
|
||||
|
||||
io = s:option(Flag, "inherit_owner", translate("Inherit owner"))
|
||||
|
||||
hd = s:option(Flag, "hide_dot_files", translate("Hide dot files"))
|
||||
|
||||
cm = s:option(Value, "create_mask", translate("Create mask"),
|
||||
translate("Mask for new files"))
|
||||
cm.rmempty = true
|
||||
cm.size = 4
|
||||
cm.default = "0666"
|
||||
|
||||
dm = s:option(Value, "dir_mask", translate("Directory mask"),
|
||||
translate("Mask for new directories"))
|
||||
dm.rmempty = true
|
||||
dm.size = 4
|
||||
dm.default = "0777"
|
||||
|
||||
|
||||
return m
|
||||
100
package/lean/luci-app-cifsd/po/ca/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ca/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ca\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/cs/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/cs/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: cs\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/de/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/de/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: de\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/el/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/el/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: el\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/en/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/en/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: en\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
115
package/lean/luci-app-cifsd/po/es/cifsd.po
Normal file
115
package/lean/luci-app-cifsd/po/es/cifsd.po
Normal file
@ -0,0 +1,115 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2019-10-16 16:58-0300\n"
|
||||
"PO-Revision-Date: 2019-10-16 17:07-0300\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: es\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr "Permitir invitados"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr "Usuarios permitidos"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr "Navegable"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr "Crear máscara"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr "Máscara de directorio"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr "Editar plantilla"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Edite la plantilla que se utiliza para generar la configuración de samba."
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr "Forzar Root"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr "Configuración general"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr "Ocultar archivos pequeños"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr "Heredar propietario"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr "Interfaz"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr "Escuche solo en la interfaz dada o, si no se especifica, en lan"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr "CIFSD"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
"Por favor agregue directorios para compartir. Cada directorio hace "
|
||||
"referencia a una carpeta en un dispositivo montado."
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr "Solo lectura"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr "Directorios compartidos"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
"Este es el contenido del archivo '/etc/cifs/smb.conf.template' a partir del "
|
||||
"cual se generará su configuración de samba. Los valores encerrados por "
|
||||
"símbolos de tubería ('|') no deben cambiarse. Obtienen sus valores de la "
|
||||
"pestaña 'Configuración general'."
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr "Grupo de trabajo"
|
||||
100
package/lean/luci-app-cifsd/po/fr/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/fr/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: fr\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/he/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/he/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: he\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/hi/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/hi/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: hi\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/hu/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/hu/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: hu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/it/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/it/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: it\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/ja/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ja/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ja\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/ko/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ko/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ko\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/ms/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ms/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ms\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/nb_NO/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/nb_NO/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: nb_NO\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/pl/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/pl/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: pl\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/pt/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/pt/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: pt\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/pt_BR/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/pt_BR/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: pt_BR\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/ro/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ro/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ro\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/ru/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/ru/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: ru\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/sk/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/sk/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: sk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/sv/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/sv/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: sv\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
97
package/lean/luci-app-cifsd/po/templates/cifsd.pot
Normal file
97
package/lean/luci-app-cifsd/po/templates/cifsd.pot
Normal file
@ -0,0 +1,97 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/tr/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/tr/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: tr\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/uk/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/uk/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: uk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
100
package/lean/luci-app-cifsd/po/vi/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/vi/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: vi\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
128
package/lean/luci-app-cifsd/po/zh-cn/cifsd.po
Normal file
128
package/lean/luci-app-cifsd/po/zh-cn/cifsd.po
Normal file
@ -0,0 +1,128 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"Last-Translator: Richard Yu <yurichard3839@gmail.com>\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"Language: zh_CN\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr "允许匿名用户"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr "允许用户"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr "可浏览"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr "创建权限掩码"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr "目录权限掩码"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr "编辑模板"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr "编辑用来生成 cifsd 设置的模板。"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr "强制 Root"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr "基本设置"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr "继承所有者"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr "接口"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr "仅监听指定的接口,未指定则监听 lan"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr "共享名"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr "网络共享"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr "目录"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr "只读"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr "共享目录"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
"这是将从其上生成 cifsd 配置的文件“/etc/cifs/smb.conf.template”的内容。由管道"
|
||||
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr "工作组"
|
||||
|
||||
msgid "Network Shares (CIFSD)"
|
||||
msgstr "网络共享 (CIFSD 内核)"
|
||||
|
||||
msgid "CIFSD is an opensource In-kernel SMB1/2/3 server"
|
||||
msgstr "CIFSD 是一个开源的 Linux 内核级 SMB1/2/3 高性能文件共享服务器"
|
||||
|
||||
msgid "Browseable"
|
||||
msgstr "可浏览"
|
||||
|
||||
msgid "Hide dot files"
|
||||
msgstr "隐藏 . 文件"
|
||||
|
||||
msgid "Mask for new files"
|
||||
msgstr "新建文件掩码"
|
||||
|
||||
msgid "Mask for new directories"
|
||||
msgstr "新建文件夹掩码"
|
||||
100
package/lean/luci-app-cifsd/po/zh_Hant/cifsd.po
Normal file
100
package/lean/luci-app-cifsd/po/zh_Hant/cifsd.po
Normal file
@ -0,0 +1,100 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Language: zh_Hant\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34
|
||||
msgid "Edit the template that is used for generating the cifsd configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
|
||||
msgid "Hide dot files"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25
|
||||
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16
|
||||
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/cifs/smb.conf.template' from which "
|
||||
"your cifsd configuration will be generated. Values enclosed by pipe symbols "
|
||||
"('|') should not be changed. They get their values from the 'General "
|
||||
"Settings' tab."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
||||
11
package/lean/luci-app-cifsd/root/etc/uci-defaults/cifsd
Normal file
11
package/lean/luci-app-cifsd/root/etc/uci-defaults/cifsd
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@cifsd[-1]
|
||||
add ucitrack cifsd
|
||||
set ucitrack.@cifsd[-1].init=cifsd
|
||||
commit ucitrack
|
||||
EOF
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
||||
@ -19,7 +19,7 @@ DEFAULT_PACKAGES += \
|
||||
kmod-leds-gpio kmod-gpio-button-hotplug swconfig \
|
||||
kmod-ath10k wpad-openssl \
|
||||
kmod-usb3 kmod-usb-dwc3 ath10k-firmware-qca4019 \
|
||||
automount autosamba luci-app-ipsec-vpnd v2ray shadowsocks-libev-ss-redir shadowsocksr-libev-server \
|
||||
luci-app-unblockneteasemusic htop
|
||||
automount luci-app-cifsd luci-app-ipsec-vpnd v2ray shadowsocks-libev-ss-redir shadowsocksr-libev-server \
|
||||
luci-app-unblockneteasemusic luci-app-qbittorrent htop
|
||||
|
||||
$(eval $(call BuildTarget))
|
||||
|
||||
@ -1523,7 +1523,7 @@ Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
|
||||
+ int res;
|
||||
+
|
||||
+ if (skb->protocol == htons(ETH_P_IPV6)) {
|
||||
+ dev_err(&adapter->pdev->dev, "IPv6 not supported\n");
|
||||
+
|
||||
+ res = -EINVAL;
|
||||
+ goto no_protocol_err;
|
||||
+ }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user