mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
package: re-add samba4 and luci-app-samba4
This commit is contained in:
parent
4e0a22d1f0
commit
f517531aee
10
package/lean/luci-app-samba4/Makefile
Normal file
10
package/lean/luci-app-samba4/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=Network Shares - Samba 4 SMB/CIFS module
|
||||
LUCI_DEPENDS:=+samba4-server
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
14
package/lean/luci-app-samba4/luasrc/controller/samba4.lua
Normal file
14
package/lean/luci-app-samba4/luasrc/controller/samba4.lua
Normal file
@ -0,0 +1,14 @@
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
module("luci.controller.samba4", package.seeall)
|
||||
|
||||
function index()
|
||||
if not nixio.fs.access("/etc/config/samba4") then
|
||||
return
|
||||
end
|
||||
|
||||
local page
|
||||
|
||||
page = entry({"admin", "services", "samba4"}, cbi("samba4"), _("Network Shares"))
|
||||
page.dependent = true
|
||||
end
|
112
package/lean/luci-app-samba4/luasrc/model/cbi/samba4.lua
Normal file
112
package/lean/luci-app-samba4/luasrc/model/cbi/samba4.lua
Normal file
@ -0,0 +1,112 @@
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
m = Map("samba4", translate("Network Shares"))
|
||||
|
||||
s = m:section(TypedSection, "samba", "Samba")
|
||||
s.anonymous = true
|
||||
|
||||
s:tab("general", translate("General Settings"))
|
||||
s:tab("template", translate("Edit Template"))
|
||||
|
||||
s:taboption("general", Value, "name", translate("Hostname"))
|
||||
s:taboption("general", Value, "description", translate("Description"))
|
||||
s:taboption("general", Value, "workgroup", translate("Workgroup"))
|
||||
h = s:taboption("general", Flag, "homes", translate("Share home-directories"),
|
||||
translate("Allow system users to reach their home directories via " ..
|
||||
"network shares"))
|
||||
h.rmempty = false
|
||||
|
||||
macos = s:taboption("general", Flag, "macos", translate("Enable macOS compatible shares"),
|
||||
translate("Enables Apple's AAPL extension globally and adds macOS compatibility options to all shares."))
|
||||
macos.rmempty = false
|
||||
|
||||
if nixio.fs.access("/usr/sbin/nmbd") then
|
||||
s:taboption("general", Flag, "disable_netbios", translate("Disable Netbios"))
|
||||
end
|
||||
if nixio.fs.access("/usr/sbin/samba") then
|
||||
s:taboption("general", Flag, "disable_ad_dc", translate("Disable Active Directory Domain Controller"))
|
||||
end
|
||||
if nixio.fs.access("/usr/sbin/winbindd") then
|
||||
s:taboption("general", Flag, "disable_winbind", translate("Disable Winbind"))
|
||||
end
|
||||
|
||||
tmpl = s:taboption("template", Value, "_tmpl",
|
||||
translate("Edit the template that is used for generating the samba configuration."),
|
||||
translate("This is the content of the file '/etc/samba/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."))
|
||||
|
||||
tmpl.template = "cbi/tvalue"
|
||||
tmpl.rows = 20
|
||||
|
||||
function tmpl.cfgvalue(self, section)
|
||||
return nixio.fs.readfile("/etc/samba/smb.conf.template")
|
||||
end
|
||||
|
||||
function tmpl.write(self, section, value)
|
||||
value = value:gsub("\r\n?", "\n")
|
||||
nixio.fs.writefile("/etc/samba/smb.conf.template", value)
|
||||
end
|
||||
|
||||
|
||||
s = m:section(TypedSection, "sambashare", 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("Browse-able"))
|
||||
br.enabled = "yes"
|
||||
br.disabled = "no"
|
||||
br.default = "yes"
|
||||
|
||||
ro = s:option(Flag, "read_only", translate("Read-only"))
|
||||
ro.enabled = "yes"
|
||||
ro.disabled = "no"
|
||||
ro.default = "yes"
|
||||
|
||||
s:option(Flag, "force_root", translate("Force Root"))
|
||||
|
||||
au = s:option(Value, "users", translate("Allowed users"))
|
||||
au.rmempty = true
|
||||
|
||||
go = s:option(Flag, "guest_ok", translate("Allow guests"))
|
||||
go.enabled = "yes"
|
||||
go.disabled = "no"
|
||||
go.default = "no"
|
||||
|
||||
gon = s:option(Flag, "guest_only", translate("Guests only"))
|
||||
gon.enabled = "yes"
|
||||
gon.disabled = "no"
|
||||
gon.default = "no"
|
||||
|
||||
iown = s:option(Flag, "inherit_owner", translate("Inherit owner"))
|
||||
iown.enabled = "yes"
|
||||
iown.disabled = "no"
|
||||
iown.default = "no"
|
||||
|
||||
cm = s:option(Value, "create_mask", translate("Create mask"))
|
||||
cm.rmempty = true
|
||||
cm.maxlength = 4
|
||||
cm.placeholder = "0666"
|
||||
|
||||
dm = s:option(Value, "dir_mask", translate("Directory mask"))
|
||||
dm.rmempty = true
|
||||
dm.maxlength = 4
|
||||
dm.placeholder = "0777"
|
||||
|
||||
vfs = s:option(Value, "vfs_objects", translate("Vfs objects"))
|
||||
vfs.rmempty = true
|
||||
|
||||
s:option(Flag, "timemachine", translate("Apple Time-machine share"))
|
||||
|
||||
tms = s:option(Value, "timemachine_maxsize", translate("Time-machine size in GB"))
|
||||
tms.rmempty = true
|
||||
tms.maxlength = 5
|
||||
|
||||
return m
|
170
package/lean/luci-app-samba4/po/ca/samba4.po
Normal file
170
package/lean/luci-app-samba4/po/ca/samba4.po
Normal file
@ -0,0 +1,170 @@
|
||||
# samba.pot
|
||||
# generated from ./applications/luci-samba/luasrc/i18n/samba.en.lua
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
||||
"PO-Revision-Date: 2014-07-01 05:47+0200\n"
|
||||
"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permet convidats"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Permet que els usuaris del sistema pugin arribar als seus directoris d'inici "
|
||||
"via comparticions de xarxa"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Usuaris permesos"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Crea màscara"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Màscara de directori"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Edita plantilla"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Edita la plantilla que s'usa per generar la configuració de samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Ajusts generals"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nom de màquina"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Comparticions de xarxa"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Només lectura"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Comparteix directoris d'inici"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Directoris compartits"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Això és el contingut del fitxer '/etc/samba/smb.conf.template' del qual la "
|
||||
"vostra configuració de samba es generarà. Valors encerclats per símbols de "
|
||||
"barra ('|') no es deuen canviar. Reben els seus valors de la pestanya "
|
||||
"'Ajusts generals'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Grup de treball"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Màscara per directoris nous"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Màscara per fitxers nous"
|
||||
|
||||
#~ msgid "Shared Directory"
|
||||
#~ msgstr "Directori compartit"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "Ruta física"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "opcional"
|
158
package/lean/luci-app-samba4/po/cs/samba4.po
Normal file
158
package/lean/luci-app-samba4/po/cs/samba4.po
Normal file
@ -0,0 +1,158 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2014-05-31 13:56+0200\n"
|
||||
"Last-Translator: koli <lukas.koluch@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Povolení hosté"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Povoluje systémovým uživatelům přístup do jejich domácích adresářů skrze "
|
||||
"sdílení přes síť."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Povolení uživatelé"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Vytvořit masku"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Maska adresáře"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Editovat šablonu"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Editovat šablonu, která je použita pro generování konfiguračního souboru pro "
|
||||
"sambu."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Obecné nastavení"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Název počítače."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Jméno"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Síťová sdílení"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Cesta"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Pouze pro čtení"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Sdílet domácí adresáře"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Sdílené adresáře"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Toto je obsah souboru \"/etc/samba/smb.conf.template\", ze kterého je "
|
||||
"konfigurace samby generována. Hodnoty uzavřené rourou (\"|\"), by se neměly "
|
||||
"měnit. Tyto hodnoty jsou brány ze záložky \"Obecná nastavení\"."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Skupina"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Maska pro nové adresáře"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Maska pro nové soubory"
|
165
package/lean/luci-app-samba4/po/de/samba4.po
Normal file
165
package/lean/luci-app-samba4/po/de/samba4.po
Normal file
@ -0,0 +1,165 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-26 17:57+0200\n"
|
||||
"PO-Revision-Date: 2011-10-18 13:13+0200\n"
|
||||
"Last-Translator: Manuel <freifunk@somakoma.de>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Gastzugang"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Systembenutzer dürfen ihre Heimatverzeichnis über Netzwerkfreigaben "
|
||||
"erreichen."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Legitimierte Benutzer"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr "Durchsuchbar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Berechtigungs-maske für neue Dateien"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Verzeichnis-maske"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr "Deaktiviere Active Directory Domain Controller"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr "Deaktiviere Netbios"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr "Deaktiviere Winbind"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Template bearbeiten"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-"
|
||||
"Konfigurationsdateien verwendet wird."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr "Nur Gaeste"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr "Besitzer Erben"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Netzwerk-freigaben"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Pfad"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Nur Lesen"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Heimat-verzeichnisse freigeben"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Freigegebene Verzeichnisse"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Dieses Fenster zeigt den Inhalt der Datei '/etc/samba/smb.conf.template', "
|
||||
"die als Template zum Erstellen der Samba-Konfiguration verwendet wird. Werte "
|
||||
"die von Pipe Symbolen (|) eingeschlossen sind sollten nicht verändert "
|
||||
"werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab "
|
||||
"'Allgemeine Einstellungen' ersetzt werden."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Arbeitsgruppe"
|
||||
|
||||
#~ msgid "Browseable"
|
||||
#~ msgstr "Suchbar"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Maske für neue Verzeichnisse"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Maske für neue Dateien"
|
147
package/lean/luci-app-samba4/po/el/samba4.po
Normal file
147
package/lean/luci-app-samba4/po/el/samba4.po
Normal file
@ -0,0 +1,147 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-28 02:08+0200\n"
|
||||
"PO-Revision-Date: 2012-03-18 15:31+0200\n"
|
||||
"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Όνομα"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
157
package/lean/luci-app-samba4/po/en/samba4.po
Normal file
157
package/lean/luci-app-samba4/po/en/samba4.po
Normal file
@ -0,0 +1,157 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-22 15:23+0100\n"
|
||||
"PO-Revision-Date: 2011-10-25 21:26+0200\n"
|
||||
"Last-Translator: awm1 <awm1klimes8vladimir@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Allow guests"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "Allow system users to reach their home directories via network shares"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Allowed users"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Create mask"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Directory mask"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Edit template"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Edit the template that is used for generating the Samba configuration."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "General settings"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Network Shares"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Path"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Read-only"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Share home-directories"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Shared Directories"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"This is the content of the file '/etc/samba/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."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Workgroup"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Mask for new directories"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Mask for new files"
|
167
package/lean/luci-app-samba4/po/es/samba4.po
Normal file
167
package/lean/luci-app-samba4/po/es/samba4.po
Normal file
@ -0,0 +1,167 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
|
||||
"PO-Revision-Date: 2012-08-22 17:45+0200\n"
|
||||
"Last-Translator: José Vicente <josevteg@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permitir invitados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Permitir a los usuarios acceder a sus directorios de inicio vía "
|
||||
"comparticiones de red"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Usuarios permitidos"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Crear máscara"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Máscara de directorio"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Editar plantilla"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Editar la plantilla usada para generar la configuración de samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Configuración general"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nombre de máquina"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Comparticiones de red"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Dirección"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Solo lectura"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Compartir directorios personales"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Directorios compartidos"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Contenido del fichero '/etc/samba/smb.conf.template' desde el que se "
|
||||
"generará la configuración de samba. Los valores entre tuberías ('|') no "
|
||||
"deben cambiarse. Su valor se toma desde la pestaña 'Configuración General'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Grupo de trabajo"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Máscara para directorios nuevos"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Máscara para archivos nuevos"
|
||||
|
||||
#~ msgid "Shared Directory"
|
||||
#~ msgstr "Directorio compatido"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "Ruta Física"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "opcional"
|
159
package/lean/luci-app-samba4/po/fr/samba4.po
Normal file
159
package/lean/luci-app-samba4/po/fr/samba4.po
Normal file
@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2011-11-23 22:36+0200\n"
|
||||
"Last-Translator: fredb <fblistes+luci@free.fr>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Invités autorisés"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Autoriser les utilisateurs système à atteindre leurs dossiers personnels via "
|
||||
"les partages réseau"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Utilisateurs autorisés"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Maque de création"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Masque des dossiers"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Éditer le modèle"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Éditer le modèle utilisé pour générer la configuration Samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Paramètres généraux"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nom d'hôte"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Partages réseau"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Chemin"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Lecture seule"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Partager les dossiers personnels"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Dossiers partagés"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Voici le contenu du fichier '/etc/samba/smb.conf.template' d'où sera généré "
|
||||
"votre configuration Samba. Les valeurs entre les symboles barre-verticale "
|
||||
" (« | ») ne doivent pas être modifiées, elles proviennent de l'onglet "
|
||||
"« Paramètres généraux »."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Groupe de travail"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Masque pour les nouveaux dossiers"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Masque pour les nouveaux fichiers"
|
142
package/lean/luci-app-samba4/po/he/samba4.po
Normal file
142
package/lean/luci-app-samba4/po/he/samba4.po
Normal file
@ -0,0 +1,142 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
159
package/lean/luci-app-samba4/po/hu/samba4.po
Normal file
159
package/lean/luci-app-samba4/po/hu/samba4.po
Normal file
@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2012-04-06 10:56+0200\n"
|
||||
"Last-Translator: juhosg <juhosg@openwrt.org>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Vendég hozzáférés"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"A rendszerfelhasználók hálózati megosztáson keresztül hozzáférhetnek a home "
|
||||
"könyvtárukhoz."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Engedélyezett felhasználók"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Létrehozási maszk"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Könyvtár maszk"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Sablon szerkesztése"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Itt szerkesztheti a sablont, ami a végleges samba konfiguráció "
|
||||
"elkészítéséhez kerül felhasználásra."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Általános beállítások"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Gépnév"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Hálózati megosztások"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Elérési út"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Csak olvasható"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Home könyvtárak megosztása"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Megosztott könyvtárak"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Itt látható a /etc/samba/smb.conf.template file tartalma, ami a samba "
|
||||
"konfiguráció előállításához kerül felhasználásra. A pipe szimbólumok ('|') "
|
||||
"közé zárt értékek módosítása nem szükséges, az értéküket az általános "
|
||||
"beállítások fülről kapják."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Munkacsoport"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Új könyvtárak maszkja"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Új fájlok maszkja"
|
165
package/lean/luci-app-samba4/po/it/samba4.po
Normal file
165
package/lean/luci-app-samba4/po/it/samba4.po
Normal file
@ -0,0 +1,165 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2017-09-06 01:28+0200\n"
|
||||
"Last-Translator: bubu83 <bubu83@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permetti ospiti"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Autorizza gli utenti del sistema a raggiungere la loro cartella home "
|
||||
"attraverso le condivisioni di rete"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Utenti ammessi"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Crea maschera"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Maschera della cartella"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Modifica Template"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Modifica il template utilizzato per generare la configurazione di samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Opzioni Generali"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Hostname"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Condivisioni di rete"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Percorso"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
"Per favore aggiungi le directory da condividere. Ogni directory si riferisce "
|
||||
"a una cartella su un dispositivo montato."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Solo lettura"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Condividi cartelle home"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Cartelle Condivise"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Questo è il contenuto del file '/etc/samba/smb.conf.template' dal quale sarà "
|
||||
"generata la tua configurazione di samba. I valori racchiusi tra il simbolo "
|
||||
"('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata "
|
||||
"'Opzioni Generali'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Gruppo di lavoro"
|
||||
|
||||
#~ msgid "Browseable"
|
||||
#~ msgstr "Sfogliabile"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Maschera per le nuove cartelle"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Maschera per i nuovi files"
|
158
package/lean/luci-app-samba4/po/ja/samba4.po
Normal file
158
package/lean/luci-app-samba4/po/ja/samba4.po
Normal file
@ -0,0 +1,158 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2018-08-06 05:17+0900\n"
|
||||
"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 2.1.1\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "ゲストアクセスを許可"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "sambaを介してユーザーのホームディレクトリへのアクセスを許可します"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "許可されたユーザー"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "マスクの作成"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "ディレクトリのマスク"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr "Active Directory ドメインコントローラを無効化"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr "Netbios を無効化"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr "Winbind を無効化"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "テンプレートの編集"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "samba設定を生成するテンプレートを編集します。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "一般設定"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr "ゲストのみ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "ホスト名"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr "オーナーの継承"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "名前"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "ネットワーク共有"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "パス"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
"共有するディレクトリを追加してください。マウントされたデバイス等のディレクト"
|
||||
"リを設定し、公開することができます。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "読み込みのみ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "ホームディレクトリの共有"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "共有ディレクトリ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"これは、samba設定を生成するための'/etc/samba/smb.conf.template' ファイルの内"
|
||||
"容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設"
|
||||
"定'タブ内の値によって置き換えられます。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "ワークグループ"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "新規ディレクトリのマスク"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "新規ファイルのマスク"
|
141
package/lean/luci-app-samba4/po/ms/samba4.po
Normal file
141
package/lean/luci-app-samba4/po/ms/samba4.po
Normal file
@ -0,0 +1,141 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
147
package/lean/luci-app-samba4/po/no/samba4.po
Normal file
147
package/lean/luci-app-samba4/po/no/samba4.po
Normal file
@ -0,0 +1,147 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Tillat gjester"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "Tillat systembrukere å nå sine hjemmekataloger via nettverks mapper."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Tillatte brukere"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Opprett Maske"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Katalog maske"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Rediger Mal"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Rediger malen som brukes til å generere samba konfigurasjonen."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Generelle Innstillinger"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Vertsnavn"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Nettverks Mapper"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Fysisk bane"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Skrivebeskyttet"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Del Hjemmekataloger"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Delte Kataloger"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Dette er innholdet av filen '/etc/samba/smb.conf.template' som din samba "
|
||||
"konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke "
|
||||
"endres. De får sine verdier fra 'Generelle Innstillinger' fanen."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Arbeidsgruppe"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Maske for nye kataloger"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Maske for nye filer"
|
158
package/lean/luci-app-samba4/po/pl/samba4.po
Normal file
158
package/lean/luci-app-samba4/po/pl/samba4.po
Normal file
@ -0,0 +1,158 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-08-26 09:51+0200\n"
|
||||
"Last-Translator: Staszek <fistaszek@tlen.pl>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Zezwalaj Gościom"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Użytkownicy systemu mogą dostać się do swoich katalogów domowych za "
|
||||
"pośrednictwem udziałów sieciowych."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Użytkownicy z prawem dostępu"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Utwórz maskę"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Maska katalogu"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Edytuj szablon"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Ustawienia ogólne"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nazwa hosta"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Udziały sieciowe"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Ścieżka"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Tylko do odczytu"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Udostępniaj katalogi domowe"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Udostępniane katalogi"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"To jest zawartość pliku '/etc/samba/smb.conf.template\", na podstawie "
|
||||
"którego zostanie wygenerowana konfiguracja samby. Wartości otoczone symbolem "
|
||||
"kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną "
|
||||
"pobrane z zakładki \"Ustawienia ogólne\"."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Grupa robocza"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Maska dla nowych katalogów"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Maska dla nowych plików"
|
172
package/lean/luci-app-samba4/po/pt-br/samba4.po
Normal file
172
package/lean/luci-app-samba4/po/pt-br/samba4.po
Normal file
@ -0,0 +1,172 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
|
||||
"PO-Revision-Date: 2018-09-20 19:48-0300\n"
|
||||
"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 2.1.1\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permitir convidados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Usuários do sistema poderão acessar seu diretório home através dos "
|
||||
"compartilhamentos de rede"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Usuários permitidos"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr "Compartilhamento Time Machine da Apple"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr "Navegável"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Máscara de criação"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Máscara do diretório"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr "Desabilitar o Controlador de Domínios AD"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr "Desabilitar o NetBIOS"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr "Desabilitar o Winbind"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Editar modelo"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Edita o modelo que é usado para gerar a configuração do samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr "Habilitar compartilhamentos compatíveis com MacOS"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
"Habilitar globalmente a extensão AAPL da Apple e adicione a opção de "
|
||||
"compatibilidade com MacOS em todos os compartilhamentos."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr "Forçar Usuário Root"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Configurações Gerais"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr "Somente convidados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do equipamento"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr "Herdar o dono"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Compartilhamentos de Rede"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Caminho"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
|
||||
"uma porta em um dispositivo montado."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Somente leitura"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Compartilhar diretórios home"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Diretórios Compartilhados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 é o conteúdo do arquivo '/etc/samba/smb.conf.template' a partir do qual "
|
||||
"sua configuração do samba será gerada. Valores entre simbolos de pipe ('|') "
|
||||
"não devem ser alterados. Estes valores serão obtidos a partir da aba "
|
||||
"'Configurações Gerais'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr "Tamanho do Time Machine em GB"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr "Objetos VFS"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Grupo de trabalho"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Máscara para novos diretórios"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Máscara para novos arquivos"
|
||||
|
||||
#~ msgid "Shared Directory"
|
||||
#~ msgstr "Diretório Compartilhado"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "Caminho Físico"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "opcional"
|
168
package/lean/luci-app-samba4/po/pt/samba4.po
Normal file
168
package/lean/luci-app-samba4/po/pt/samba4.po
Normal file
@ -0,0 +1,168 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-05-26 19:03+0200\n"
|
||||
"PO-Revision-Date: 2013-05-01 01:13+0200\n"
|
||||
"Last-Translator: pedromrgoncalves <pedromrgoncalves@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permitir Convidados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Utilizadores do sistema poderão aceder ao seu directório home através das "
|
||||
"partilhas de rede."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Utilizadores Permitidos"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Criar Máscara"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Máscara do Directório"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Editar Template"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Editar a template que é utilizada para gerar a configuração samba"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Definições Gerais"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Nome do host"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Partilhas da Rede"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Caminho"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Apenas Leitura"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Partilha de directórios home"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Directórios Partilhados"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Isto é o conteúdo do ficheiro 'etc/samba/smb.conf.template' a partir do qual "
|
||||
"será gerado o ficheiro de configuração do samba. Os valores entre o símbolo "
|
||||
"| não devem ser alterados. Eles recebem os valores do separador 'Definições "
|
||||
"Gerais'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Grupo de trabalho"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Máscara para novos directórios"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Máscara para novos ficheiros"
|
||||
|
||||
#~ msgid "Shared Directory"
|
||||
#~ msgstr "Diretório Compartilhado"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "Caminho Físico"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "opcional"
|
157
package/lean/luci-app-samba4/po/ro/samba4.po
Normal file
157
package/lean/luci-app-samba4/po/ro/samba4.po
Normal file
@ -0,0 +1,157 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-10-07 17:16+0200\n"
|
||||
"Last-Translator: Daniel <daniel.petre@pitesti.rcs-rds.ro>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2);;\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Permite oaspeti"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Permite utilizatorii de sistem sa acceseze directoarele lor peste "
|
||||
"partajarile de retea"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Utilizatori acceptati"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Creaza masca"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Masca director"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Editeaza sablon"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Editeaza sablonul care e folosit pentru generarea configuratiei samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Setari generale"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Numele de host"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Partajari pe retea"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Cale"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Doar citire"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Partajeaza directoarele proprii"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Directoare partajate"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Acesta este continutul fisierului '/etc/samba/smb.conf.template' din care se "
|
||||
"genereaza configuratia samba. Valorile dintre liniuta verticala ('|') n-ar "
|
||||
"trebui schimbate, ele iau valorile direct din tab-ul de \"Setari generale\"."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Workgroup"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Masca pentru directoarele noi"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Masca pentru fisierele noi"
|
166
package/lean/luci-app-samba4/po/ru/samba4.po
Normal file
166
package/lean/luci-app-samba4/po/ru/samba4.po
Normal file
@ -0,0 +1,166 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: LuCI: samba\n"
|
||||
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
|
||||
"PO-Revision-Date: 2018-01-14 11:43+0300\n"
|
||||
"Language-Team: http://cyber-place.ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Language: ru\n"
|
||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Разрешить гостевой вход"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Разрешить пользователям получать доступ к их домашним папкам, через "
|
||||
"локальную сеть."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Разрешенные пользователи"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Создать маску"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Маска папок"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Настройка config файла"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "Настройка config<br />файла samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Основные настройки"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Имя хоста"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Сетевые ресурсы"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Путь"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
"Добавьте папки для совместного доступа. Каждая папка - соответствует разделу "
|
||||
"на подключенном устройстве."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Только для чтения"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Совместно использовать домашние папки"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Совместно используемые папки"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Это содержимое файла '/etc/samba/smb.conf.template', из которого "
|
||||
"генерируется config файл - samba.<br />Значения, заключенные в символы "
|
||||
"('|'), не должны быть изменены.<br />Они будут автоматически заменены на "
|
||||
"значения со страницы 'Основные настройки'."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Рабочая группа"
|
||||
|
||||
#~ msgid "Browseable"
|
||||
#~ msgstr "Виден в списке доступных ресурсов"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Маска для новых папок"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Маска для новых файлов"
|
142
package/lean/luci-app-samba4/po/sk/samba4.po
Normal file
142
package/lean/luci-app-samba4/po/sk/samba4.po
Normal file
@ -0,0 +1,142 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
150
package/lean/luci-app-samba4/po/sv/samba4.po
Normal file
150
package/lean/luci-app-samba4/po/sv/samba4.po
Normal file
@ -0,0 +1,150 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Tillåt gäster"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "Tillåt systemanvändare att nå deras hem-mappar via nätverksdelningar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Tillåtna användare"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Skapa mask"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Mask för mapp"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Redigera mall"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Redigera mallen som används för att generera konfigurationen för samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Generella inställningar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Värdnamn"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Nätverksdelningar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Genväg"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Endast läsbar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Dela hem-mappar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Delade mappar"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Arbetsgrupp"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Mask för nya mappar"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Mask för nya filer"
|
135
package/lean/luci-app-samba4/po/templates/samba4.pot
Normal file
135
package/lean/luci-app-samba4/po/templates/samba4.pot
Normal file
@ -0,0 +1,135 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
142
package/lean/luci-app-samba4/po/tr/samba4.po
Normal file
142
package/lean/luci-app-samba4/po/tr/samba4.po
Normal file
@ -0,0 +1,142 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr ""
|
159
package/lean/luci-app-samba4/po/uk/samba4.po
Normal file
159
package/lean/luci-app-samba4/po/uk/samba4.po
Normal file
@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2012-03-18 20:35+0200\n"
|
||||
"Last-Translator: YuriPet <yuripet@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "Дозволити гостьовий вхід"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Дозволити користувачам системи досягати своїх домашніх каталогів через "
|
||||
"загальні мережеві ресурси"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "Дозволені користувачі"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "Створити маску"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "Маска каталогу"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "Редагувати шаблон"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
"Редагувати шаблон, який використовується для створення конфігурації samba."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "Загальні настройки"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "Назва (ім'я) вузла"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "Ім'я"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Загальні мережеві ресурси"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "Шлях"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "Тільки читання"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Спільно використовувати домашні каталоги"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Загальні каталоги"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"Це вміст файлу '/etc/samba/smb.conf.template', з якого буде генеруватися "
|
||||
"ваша конфігурація samba. Значення, укладені в символи \"вертикальна риска"
|
||||
"\" (\"|\") не повинні змінюватися. Вони отримують свої значення з вкладки "
|
||||
"\"Загальні налаштування\"."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Робоча група"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Маска для нових каталогів"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Маска для нових файлів"
|
171
package/lean/luci-app-samba4/po/vi/samba4.po
Normal file
171
package/lean/luci-app-samba4/po/vi/samba4.po
Normal file
@ -0,0 +1,171 @@
|
||||
# samba.pot
|
||||
# generated from ./applications/luci-samba/luasrc/i18n/samba.en.lua
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-08-16 06:59+0200\n"
|
||||
"PO-Revision-Date: 2009-08-13 03:54+0200\n"
|
||||
"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Pootle 1.1.0\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
#, fuzzy
|
||||
msgid "Allow guests"
|
||||
msgstr "Cho phép khách"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
#, fuzzy
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr ""
|
||||
"Những người sử dụng hệ thống có thể tiếp cận những thư mục tại nhà thông qua "
|
||||
"mạng lưới chia sẻ trực tuyến."
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
#, fuzzy
|
||||
msgid "Allowed users"
|
||||
msgstr "Người sử dụng được cho phép"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
#, fuzzy
|
||||
msgid "Create mask"
|
||||
msgstr "Tạo Mask"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "Mô tả"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
#, fuzzy
|
||||
msgid "Directory mask"
|
||||
msgstr "Thư mục Mask"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "tên máy chủ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "Mạng chia sẻ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
#, fuzzy
|
||||
msgid "Read-only"
|
||||
msgstr "Chỉ đọc "
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "Chia sẻ danh bạ chính"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "Thư mục chia sẻ"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "Nhóm làm việc "
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "Mask cho thư mục mới"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "Mask cho tập tin mới"
|
||||
|
||||
#~ msgid "Shared Directory"
|
||||
#~ msgstr "Đã chia sẻ thư mục"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "Đường dẫn vật lý"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "Tùy thích"
|
164
package/lean/luci-app-samba4/po/zh-cn/samba4.po
Normal file
164
package/lean/luci-app-samba4/po/zh-cn/samba4.po
Normal file
@ -0,0 +1,164 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2017, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
||||
"PO-Revision-Date: 2018-10-01 11:12+0800\n"
|
||||
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
|
||||
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Gtranslator 2.91.7\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "允许匿名用户"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "允许系统用户通过网络共享访问他们的家目录"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "允许用户"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr "Apple Time-machine 共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr "可浏览"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "创建权限掩码"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "目录权限掩码"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr "禁用 Active Directory 域控制器"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr "禁用 Netbios"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr "禁用 Winbind"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "编辑模板"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "编辑用来生成 samba 设置的模板"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr "启用 macOS 兼容共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr "全局启用 Apple 的 AAPL 扩展,并为所有共享添加 macOS 兼容性选项。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr "强制 Root"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "基本设置"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr "仅来宾用户"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "主机名"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr "继承所有者"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "共享名"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "网络共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "目录"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "只读"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "共享家目录"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "共享目录"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道"
|
||||
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr "Time-machine 大小(GB)"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr "VFS 对象"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "工作组"
|
||||
|
||||
#~ msgid "Browseable"
|
||||
#~ msgstr "可浏览"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "新目录权限掩码"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "新文件权限掩码"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "物理路径"
|
164
package/lean/luci-app-samba4/po/zh-tw/samba4.po
Normal file
164
package/lean/luci-app-samba4/po/zh-tw/samba4.po
Normal file
@ -0,0 +1,164 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2017, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
||||
"PO-Revision-Date: 2018-10-01 11:12+0800\n"
|
||||
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
|
||||
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Gtranslator 2.91.7\n"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
||||
msgid "Allow guests"
|
||||
msgstr "允許匿名使用者"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
||||
msgid "Allow system users to reach their home directories via network shares"
|
||||
msgstr "允許系統使用者通過網路共享訪問他們的家目錄"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
||||
msgid "Allowed users"
|
||||
msgstr "允許使用者"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
||||
msgid "Apple Time-machine share"
|
||||
msgstr "Apple Time-machine 共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
||||
msgid "Browse-able"
|
||||
msgstr "可瀏覽"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
||||
msgid "Create mask"
|
||||
msgstr "建立權限掩碼"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
||||
msgid "Directory mask"
|
||||
msgstr "目錄權限掩碼"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
||||
msgid "Disable Active Directory Domain Controller"
|
||||
msgstr "禁用 Active Directory 域控制器"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
||||
msgid "Disable Netbios"
|
||||
msgstr "禁用 Netbios"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
||||
msgid "Disable Winbind"
|
||||
msgstr "禁用 Winbind"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
||||
msgid "Edit Template"
|
||||
msgstr "編輯模板"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
||||
msgid "Edit the template that is used for generating the samba configuration."
|
||||
msgstr "編輯用來生成 samba 設定的模板"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
||||
msgid "Enable macOS compatible shares"
|
||||
msgstr "啟用 macOS 相容共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
||||
msgid ""
|
||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||
"to all shares."
|
||||
msgstr "全域性啟用 Apple 的 AAPL 擴充套件,併為所有共享新增 macOS 相容性選項。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
||||
msgid "Force Root"
|
||||
msgstr "強制 Root"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
||||
msgid "General Settings"
|
||||
msgstr "基本設定"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
||||
msgid "Guests only"
|
||||
msgstr "僅來賓使用者"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
||||
msgid "Hostname"
|
||||
msgstr "主機名"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
||||
msgid "Inherit owner"
|
||||
msgstr "繼承所有者"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
||||
msgid "Name"
|
||||
msgstr "共享名"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
||||
msgid "Network Shares"
|
||||
msgstr "網路共享"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
||||
msgid "Path"
|
||||
msgstr "目錄"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
||||
msgid ""
|
||||
"Please add directories to share. Each directory refers to a folder on a "
|
||||
"mounted device."
|
||||
msgstr "請新增要共享的目錄。每個目錄指到已掛載裝置上的資料夾。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
||||
msgid "Read-only"
|
||||
msgstr "只讀"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
||||
msgid "Share home-directories"
|
||||
msgstr "共享家目錄"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
||||
msgid "Shared Directories"
|
||||
msgstr "共享目錄"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
||||
msgid ""
|
||||
"This is the content of the file '/etc/samba/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 ""
|
||||
"這是將從其上生成 samba 配置的檔案“/etc/samba/smb.conf.template”的內容。由管道"
|
||||
"符(“|”)包圍的值不應更改。它們將從“常規設定”標籤中獲取其值。"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
||||
msgid "Time-machine size in GB"
|
||||
msgstr "Time-machine 大小(GB)"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
||||
msgid "Vfs objects"
|
||||
msgstr "VFS 物件"
|
||||
|
||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
||||
msgid "Workgroup"
|
||||
msgstr "工作組"
|
||||
|
||||
#~ msgid "Browseable"
|
||||
#~ msgstr "可瀏覽"
|
||||
|
||||
#~ msgid "Mask for new directories"
|
||||
#~ msgstr "新目錄權限掩碼"
|
||||
|
||||
#~ msgid "Mask for new files"
|
||||
#~ msgstr "新檔案權限掩碼"
|
||||
|
||||
#~ msgid "Physical Path"
|
||||
#~ msgstr "物理路徑"
|
91
package/lean/samba4/Config.in
Normal file
91
package/lean/samba4/Config.in
Normal file
@ -0,0 +1,91 @@
|
||||
config SAMBA4_SERVER_ACL
|
||||
bool "ACL support (xattr)"
|
||||
depends on PACKAGE_samba4-server
|
||||
select PACKAGE_acl
|
||||
help
|
||||
installs: sharesec
|
||||
modules: vfs_acl_xattr vfs_acl_tdb vfs_posixacl
|
||||
|
||||
Extended access control list support
|
||||
default n
|
||||
|
||||
config SAMBA4_SERVER_AD_DC
|
||||
bool "Active Directory Domain Controller support (requires krb5-server) (EXPERIMENTAL)"
|
||||
depends on PACKAGE_samba4-server
|
||||
select PACKAGE_python-base
|
||||
select PACKAGE_python-crypto
|
||||
select PACKAGE_libopenssl
|
||||
select PACKAGE_libgnutls
|
||||
select PACKAGE_libopenldap
|
||||
help
|
||||
installs: samba (meta-daemon) python-crypt ntlm_auth
|
||||
scripts: samba-tool
|
||||
|
||||
Run as a Active Directory Domain Controller
|
||||
see: https://wiki.samba.org/index.php/Setting_up_Samba_as_an_Active_Directory_Domain_Controller
|
||||
HINT: see section (# Using the Domain Controller as a File Server)
|
||||
NOTE: Extroot is recommend for this setup, as it is not optimized to run completely from RAM/tempfs!
|
||||
default n
|
||||
|
||||
config SAMBA4_SERVER_AVAHI
|
||||
bool "Avahi support"
|
||||
depends on PACKAGE_samba4-server
|
||||
select SAMBA4_SERVER_VFS
|
||||
select PACKAGE_libavahi-client
|
||||
help
|
||||
Announce Samba resources via DNS/DNS-SD using the Avahi daemon, for Linux/Mac clients.
|
||||
default y
|
||||
|
||||
config SAMBA4_SERVER_VFS
|
||||
bool "Common VFS modules"
|
||||
depends on PACKAGE_samba4-server
|
||||
help
|
||||
installs:
|
||||
modules: (vfs_btrfs) vfs_fruit vfs_shadow_copy2 vfs_recycle vfs_fake_perms vfs_readonly vfs_cap vfs_offline vfs_crossrename vfs_catia vfs_streams_xattr
|
||||
|
||||
Commonly used VFS modules, vfs_btrfs requires kmod-fs-btrfs to be selected separately
|
||||
default y
|
||||
|
||||
config SAMBA4_SERVER_QUOTAS
|
||||
bool "Disk quota support"
|
||||
depends on PACKAGE_samba4-server
|
||||
help
|
||||
installs:
|
||||
modules: vfs_default_quota
|
||||
|
||||
Support for disk quotas using the quotas VFS module (vfs_default_quota)
|
||||
default n
|
||||
|
||||
config SAMBA4_SERVER_VFSX
|
||||
bool "Extended VFS modules"
|
||||
depends on PACKAGE_samba4-server
|
||||
help
|
||||
installs:
|
||||
modules: vfs_virusfilter vfs_shell_snap vfs_commit vfs_worm vfs_xattr_tdb vfs_aio_fork vfs_aio_pthread (vfs_linux_xfs_sgid) vfs_netatalk vfs_dirsort vfs_fileid
|
||||
|
||||
Additional VFS modules that aren't commonly used, vfs_linux_xfs_sgid requires kmod-fs-xfs to be selected separately
|
||||
default n
|
||||
|
||||
config SAMBA4_SERVER_NETBIOS
|
||||
bool "NetBIOS support"
|
||||
depends on PACKAGE_samba4-server
|
||||
help
|
||||
installs: nmbd (daemon)
|
||||
|
||||
Announce Samba resources via NetBIOS using the nmbd daemon
|
||||
WSD (Web Services for Devices) replaces the functionality of NetBIOS and is provided by the wsdd2 package (selected by default).
|
||||
Note: As of Windows 10 Fall Creators Update (1709) NetBIOS isn't supported unless the old SMB1 feature is reinstalled (not recommended).
|
||||
Network shares can be directly accessed via network paths '\\hostname\sharename' and mounted via 'map network drive' without NetBIOS or WSD.
|
||||
default n
|
||||
|
||||
config SAMBA4_SERVER_WINBIND
|
||||
bool "Winbind support"
|
||||
depends on PACKAGE_samba4-server
|
||||
depends on SAMBA4_SERVER_AD_DC
|
||||
help
|
||||
installs: winbindd (daemon) wbinfo
|
||||
|
||||
Support using domain users and groups in local commands, such as chown and chgrp.
|
||||
Display domain users and groups in local command's output, such as ls.
|
||||
see: https://wiki.samba.org/index.php/Configuring_Winbindd_on_a_Samba_AD_DC
|
||||
default n
|
398
package/lean/samba4/Makefile
Normal file
398
package/lean/samba4/Makefile
Normal file
@ -0,0 +1,398 @@
|
||||
# Based partially on (wongsyrone/hbl0307106015) versions
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=samba
|
||||
PKG_VERSION:=4.9.2
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
|
||||
PKG_LICENSE:=GPL-3.0-only
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
PKG_SOURCE_URL:=https://download.samba.org/pub/samba/stable/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_HASH:=349c17b7bf1bf667167843470533da89ff1b2ca4a768b529aaacf5197af1efa2
|
||||
|
||||
# Buildroot bug? Can't add target deps via '+SAMBA4_SERVER_AD_DC:python-crypto' (as work-around we select via config.in)
|
||||
PKG_BUILD_DEPENDS:=SAMBA4_SERVER_AD_DC:python-crypto nfs-kernel-server/host
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
CONFIG_SAMBA4_SERVER_NETBIOS \
|
||||
CONFIG_SAMBA4_SERVER_AVAHI \
|
||||
CONFIG_SAMBA4_SERVER_VFS \
|
||||
CONFIG_SAMBA4_SERVER_VFSX \
|
||||
CONFIG_SAMBA4_SERVER_QUOTAS \
|
||||
CONFIG_SAMBA4_SERVER_ACL \
|
||||
CONFIG_SAMBA4_SERVER_AD_DC \
|
||||
CONFIG_SAMBA4_SERVER_WINBIND \
|
||||
CONFIG_PACKAGE_kmod-fs-btrfs \
|
||||
CONFIG_PACKAGE_kmod-fs-xfs
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
include $(INCLUDE_DIR)/version.mk
|
||||
|
||||
define Package/samba4/Default
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=Samba $(PKG_VERSION)
|
||||
URL:=http://www.samba.org/
|
||||
endef
|
||||
|
||||
define Package/samba4/Default/description
|
||||
The Samba software suite is a collection of programs that implements the
|
||||
SMB/CIFS protocol for UNIX systems, allowing you to serve files and printers.
|
||||
|
||||
Samba 4 implements up-to protocol version SMB v3.1.1 (Win10), supports mDNS via AVAHI and a AD-DC setup via krb5.
|
||||
NOTE: No cluster and printer support.
|
||||
endef
|
||||
|
||||
define Package/samba4-libs
|
||||
$(call Package/samba4/Default)
|
||||
TITLE+= libs
|
||||
DEPENDS:= +zlib +libtirpc +krb5-libs +libpopt \
|
||||
+PACKAGE_libcap:libcap +PACKAGE_libpthread:libpthread +PACKAGE_libnettle:libnettle \
|
||||
+PACKAGE_libgcrypt:libgcrypt +PACKAGE_libpam:libpam +PACKAGE_dbus:dbus +PACKAGE_libavahi-client:libavahi-client \
|
||||
+SAMBA4_SERVER_VFS:attr \
|
||||
+SAMBA4_SERVER_ACL:acl +SAMBA4_SERVER_ACL:attr \
|
||||
+SAMBA4_SERVER_AVAHI:libavahi-client \
|
||||
+SAMBA4_SERVER_AD_DC:python-base +SAMBA4_SERVER_AD_DC:libopenssl +SAMBA4_SERVER_AD_DC:libgnutls +SAMBA4_SERVER_AD_DC:libopenldap +SAMBA4_SERVER_AD_DC:jansson +SAMBA4_SERVER_AD_DC:libarchive
|
||||
endef
|
||||
|
||||
define Package/samba4-server
|
||||
$(call Package/samba4/Default)
|
||||
TITLE+= server
|
||||
DEPENDS:= +samba4-libs
|
||||
endef
|
||||
|
||||
define Package/samba4-server/description
|
||||
installs: smbd (daemon) smbpasswd pdbedit testparm
|
||||
|
||||
This provides the basic fileserver service and is the minimum needed to serve file shares.
|
||||
HINT: https://fitzcarraldoblog.wordpress.com/2016/10/17/a-correct-method-of-configuring-samba-for-browsing-smb-shares-in-a-home-network/
|
||||
endef
|
||||
|
||||
define Package/samba4-server/config
|
||||
select PACKAGE_wsdd2
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
define Package/samba4-client
|
||||
$(call Package/samba4/Default)
|
||||
TITLE+= client
|
||||
DEPENDS:= +samba4-libs
|
||||
endef
|
||||
|
||||
define Package/samba4-client/description
|
||||
installs: smbclient cifsdd
|
||||
|
||||
The smbclient program implements a simple ftp-like client for accessing SMB shares
|
||||
endef
|
||||
|
||||
define Package/samba4-admin
|
||||
$(call Package/samba4/Default)
|
||||
TITLE+= admin tools
|
||||
DEPENDS:= +samba4-libs
|
||||
endef
|
||||
|
||||
define Package/samba4-admin/description
|
||||
installs: net smbcontrol profiles rpcclient smbcacls smbcquotas
|
||||
|
||||
Administration tools collection
|
||||
endef
|
||||
|
||||
define Package/samba4-utils
|
||||
$(call Package/samba4/Default)
|
||||
TITLE+= utils
|
||||
DEPENDS:= +samba4-libs
|
||||
endef
|
||||
|
||||
define Package/samba4-utils/description
|
||||
installs: smbstatus smbtree smbget nmblookup mvxattr
|
||||
|
||||
Utilities collection
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
||||
TARGET_LDFLAGS += -Wl,--gc-sections
|
||||
|
||||
CONFIGURE_VARS += \
|
||||
CPP="$(TARGET_CROSS)cpp"
|
||||
|
||||
CONFIGURE_CMD = ./buildtools/bin/waf
|
||||
|
||||
# Strip options that WAF configure script does not recognize
|
||||
CONFIGURE_ARGS:=$(filter-out \
|
||||
--host=% \
|
||||
--build=% \
|
||||
--program-suffix=% \
|
||||
--disable-nls \
|
||||
--disable-ipv6 \
|
||||
, $(CONFIGURE_ARGS))
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--hostcc="$(HOSTCC)" \
|
||||
--cross-compile \
|
||||
--cross-answers=cross-answers.txt \
|
||||
--disable-cups \
|
||||
--disable-iprint \
|
||||
--disable-cephfs \
|
||||
--disable-fault-handling \
|
||||
--disable-glusterfs \
|
||||
--disable-rpath \
|
||||
--disable-rpath-install \
|
||||
--disable-rpath-private-install \
|
||||
--enable-fhs \
|
||||
--without-automount \
|
||||
--without-iconv \
|
||||
--without-lttng \
|
||||
--without-ntvfs-fileserver \
|
||||
--without-pam \
|
||||
--without-systemd \
|
||||
--without-utmp \
|
||||
--without-dmapi \
|
||||
--without-fam \
|
||||
--without-gettext \
|
||||
--without-regedit \
|
||||
--without-gpgme
|
||||
|
||||
# Optional AES-NI support - https://lists.samba.org/archive/samba-technical/2017-September/122738.html
|
||||
# Support for Nettle wasn't comitted
|
||||
ifdef CONFIG_TARGET_x86_64
|
||||
CONFIGURE_ARGS += --accel-aes=intelaesni
|
||||
else
|
||||
CONFIGURE_ARGS += --accel-aes=none
|
||||
endif
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--with-lockdir=/var/lock \
|
||||
--with-logfilebase=/var/log \
|
||||
--with-piddir=/var/run \
|
||||
--with-privatedir=/etc/samba
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--with-system-mitkrb5 "$(STAGING_DIR)/usr" \
|
||||
--with-system-mitkdc=/usr/sbin/krb5kdc
|
||||
|
||||
## embedded-heimdal
|
||||
# --bundled-libraries=talloc,tevent,tdb,ldb,com_err,cmocka,roken,wind,hx509,asn1,heimbase,hcrypto,krb5,gssapi,heimntlm,hdb,kdc,NONE
|
||||
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AVAHI),y)
|
||||
CONFIGURE_ARGS += --enable-avahi
|
||||
else
|
||||
CONFIGURE_ARGS += --disable-avahi
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_QUOTAS),y)
|
||||
CONFIGURE_ARGS += --with-quotas
|
||||
else
|
||||
CONFIGURE_ARGS += --without-quotas
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_ACL),y)
|
||||
CONFIGURE_ARGS += --with-acl-support
|
||||
else
|
||||
CONFIGURE_ARGS += --without-acl-support
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
|
||||
CONFIGURE_ARGS += --enable-gnutls --with-dnsupdate --with-ads --with-ldap
|
||||
TARGET_CFLAGS := -I$(STAGING_DIR)/usr/include/python2.7 $(TARGET_CFLAGS)
|
||||
else
|
||||
CONFIGURE_ARGS += --without-ad-dc --without-json-audit --without-libarchive --disable-python --nopyc --nopyo --disable-gnutls --without-dnsupdate --without-ads --without-ldap
|
||||
CONFIGURE_VARS += \
|
||||
python_LDFLAGS="" \
|
||||
python_LIBDIR=""
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_WINBIND),y)
|
||||
CONFIGURE_ARGS += --with-winbind
|
||||
else
|
||||
CONFIGURE_ARGS += --without-winbind
|
||||
endif
|
||||
|
||||
SAMBA4_IDMAP_MODULES :=
|
||||
SAMBA4_IDMAP_MODULES_SHARED :=
|
||||
SAMBA4_PDB_MODULES :=pdb_smbpasswd,pdb_tdbsam,
|
||||
SAMBA4_AUTH_MODULES :=auth_builtin,auth_sam,auth_unix,auth_script,
|
||||
SAMBA4_VFS_MODULES :=vfs_default,
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_VFS),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_fruit,vfs_shadow_copy2,vfs_recycle,vfs_fake_perms,vfs_readonly,vfs_cap,vfs_offline,vfs_crossrename,vfs_catia,vfs_streams_xattr,vfs_xattr_tdb,
|
||||
ifeq ($(CONFIG_PACKAGE_kmod-fs-btrfs),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_btrfs,
|
||||
endif
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_VFSX),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_virusfilter,vfs_shell_snap,vfs_commit,vfs_worm,vfs_aio_fork,vfs_aio_pthread,vfs_netatalk,vfs_dirsort,vfs_fileid,
|
||||
ifeq ($(CONFIG_PACKAGE_kmod-fs-xfs),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_linux_xfs_sgid,
|
||||
endif
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_QUOTAS),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_default_quota,
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_ACL),y)
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_posixacl,vfs_acl_xattr,vfs_acl_tdb,
|
||||
# vfs_zfsacl needs https://github.com/zfsonlinux/zfs/tree/master/include/sys/zfs_acl.h
|
||||
# vfs_nfs4acl_xattr needs https://github.com/notriddle/libdrpc/blob/master/rpc/xdr.h
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
|
||||
SAMBA4_PDB_MODULES :=$(SAMBA4_PDB_MODULES)pdb_samba_dsdb,
|
||||
SAMBA4_AUTH_MODULES :=$(SAMBA4_AUTH_MODULES)auth_samba4,
|
||||
SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_audit,vfs_extd_audit,vfs_full_audit,
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_WINBIND),y)
|
||||
SAMBA4_IDMAP_MODULES :=$(SAMBA4_IDMAP_MODULES)idmap_passdb,idmap_nss,idmap_tdb,idmap_tdb2,idmap_script,nss_info_template,
|
||||
SAMBA4_IDMAP_MODULES_SHARED :=$(SAMBA4_IDMAP_MODULES_SHARED)idmap_autorid,idmap_rid,idmap_ad,idmap_rfc2307,
|
||||
# idmap_ad needs --with-ads
|
||||
# idmap_rfc2307 needs ldap headers
|
||||
SAMBA4_AUTH_MODULES :=$(SAMBA4_AUTH_MODULES)auth_winbind,
|
||||
endif
|
||||
|
||||
SAMBA4_MODULES :=${SAMBA4_AUTH_MODULES}${SAMBA4_PDB_MODULES}${SAMBA4_IDMAP_MODULES}${SAMBA4_VFS_MODULES}
|
||||
SAMBA4_MODULES_SHARDED :=${SAMBA4_IDMAP_MODULES_SHARED}
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--with-static-modules=$(SAMBA4_MODULES)!DEFAULT,!FORCED \
|
||||
--with-shared-modules=$(SAMBA4_MODULES_SHARDED)!DEFAULT,!FORCED
|
||||
|
||||
# Setup build/install targets
|
||||
# CONFIG_PACKAGE_samba4-server
|
||||
BUILD_TARGETS_SERVER :=smbd/smbd,smbpasswd,pdbedit,testparm
|
||||
# Optional server targets
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_ACL),y)
|
||||
BUILD_TARGETS_SERVER :=$(BUILD_TARGETS_SERVER),sharesec
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_NETBIOS),y)
|
||||
BUILD_TARGETS_SERVER :=$(BUILD_TARGETS_SERVER),nmbd
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
|
||||
BUILD_TARGETS_SERVER :=$(BUILD_TARGETS_SERVER),samba,nsstest,ntlm_auth
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_WINBIND),y)
|
||||
BUILD_TARGETS_SERVER :=$(BUILD_TARGETS_SERVER),winbindd,wbinfo,winbind_krb5_locator
|
||||
endif
|
||||
# CONFIG_PACKAGE_samba4-client
|
||||
BUILD_TARGETS_CLIENT :=client/smbclient,client/cifsdd
|
||||
# CONFIG_PACKAGE_samba4-admin
|
||||
BUILD_TARGETS_ADMIN :=net,smbcontrol,profiles,rpcclient,smbcacls,smbcquotas
|
||||
# CONFIG_PACKAGE_samba4-utils
|
||||
BUILD_TARGETS_UTILS :=smbstatus,smbtree,smbget,mvxattr,nmblookup
|
||||
|
||||
# lib bundling
|
||||
# NOTE: bundle + make private, we want to avoid version configuration (build, link) conflicts
|
||||
CONFIGURE_ARGS += --builtin-libraries=talloc,tevent,texpect,tdb,ldb,tdr,cmocka,replace
|
||||
#CONFIGURE_ARGS += --nonshared-binary=$(BUILD_TARGETS_SERVER)
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
|
||||
CONFIGURE_ARGS += --bundled-libraries=talloc,tevent,texpect,tdb,ldb,tdr,cmocka,replace,pytalloc-util,pyldb-util,NONE
|
||||
else
|
||||
CONFIGURE_ARGS += --bundled-libraries=talloc,tevent,texpect,tdb,ldb,tdr,cmocka,replace,NONE
|
||||
endif
|
||||
CONFIGURE_ARGS += --private-libraries=talloc,tevent,texpect,tdb,ldb,tdr,cmocka,replace
|
||||
|
||||
define Build/Prepare
|
||||
$(Build/Prepare/Default)
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),)
|
||||
# un-bundle dnspython
|
||||
$(SED) '/"dns.resolver":/d' $(PKG_BUILD_DIR)/third_party/wscript
|
||||
# unbundle iso8601
|
||||
$(SED) '/"iso8601":/d' $(PKG_BUILD_DIR)/third_party/wscript
|
||||
endif
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
$(CP) ./waf-cross-answers/$(ARCH).txt $(PKG_BUILD_DIR)/cross-answers.txt
|
||||
echo 'Checking uname machine type: "$(ARCH)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
|
||||
echo 'Checking uname release type: "$(LINUX_VERSION)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
|
||||
echo 'Checking uname version type: "$(VERSION_DIST) Linux-$(LINUX_VERSION) $(shell date +%Y-%m-%d)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
|
||||
# NOTE: For some unknown reason this answer is not needed on some hosts/distros, yet needed on others?
|
||||
echo 'Checking whether POSIX capabilities are available: OK' >> $(PKG_BUILD_DIR)/cross-answers.txt
|
||||
$(call Build/Configure/Default,configure)
|
||||
endef
|
||||
|
||||
# BUG: We need to use "waf install --targets=" otherwise a "make install" or "waf install" will retrigger a full recompile of all possible targets!
|
||||
define Build/Compile
|
||||
(cd $(PKG_BUILD_DIR); \
|
||||
./buildtools/bin/waf install -j$(shell nproc) \
|
||||
--targets=$(SAMBA4_MODULES)$(SAMBA4_MODULES_SHARDED)$(BUILD_TARGETS_SERVER),$(BUILD_TARGETS_UTILS),$(BUILD_TARGETS_ADMIN),$(BUILD_TARGETS_CLIENT) \
|
||||
--destdir="$(PKG_INSTALL_DIR)" \
|
||||
)
|
||||
endef
|
||||
|
||||
# No default install see above
|
||||
define Build/Install
|
||||
endef
|
||||
|
||||
define Package/samba4-libs/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/samba/*.so* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/samba4-client/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{smbclient,cifsdd} $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Package/samba4-admin/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{net,smbcontrol,profiles,rpcclient,smbcacls,smbcquotas} $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Package/samba4-utils/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{smbstatus,smbtree,smbget,mvxattr,nmblookup} $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
define Package/samba4-server/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/samba
|
||||
if [ -d $(PKG_INSTALL_DIR)/usr/lib/samba/idmap ]; then \
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/samba/idmap $(1)/usr/lib/samba/; \
|
||||
fi
|
||||
if [ -d $(PKG_INSTALL_DIR)/usr/lib/samba/auth ]; then \
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/samba/auth $(1)/usr/lib/samba/; \
|
||||
fi
|
||||
if [ -d $(PKG_INSTALL_DIR)/usr/lib/samba/vfs ]; then \
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/samba/vfs $(1)/usr/lib/samba/; \
|
||||
fi
|
||||
if [ -d $(PKG_INSTALL_DIR)/usr/lib/samba/pdb ]; then \
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/samba/pdb $(1)/usr/lib/samba/; \
|
||||
fi
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{smbpasswd,pdbedit,testparm} $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/smbd $(1)/usr/sbin/
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/python2.7 $(1)/usr/lib/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{samba-tool,ntlm_auth,smbtar} $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{samba,samba-gpupdate,samba_dnsupdate,samba_kcc,samba_spnupdate,samba_upgradedns} $(1)/usr/sbin/
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_NETBIOS),y)
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/nmbd $(1)/usr/sbin/
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_WINBIND),y)
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/wbinfo $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/winbindd $(1)/usr/sbin/
|
||||
endif
|
||||
ifeq ($(CONFIG_SAMBA4_SERVER_ACL),y)
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sharesec $(1)/usr/bin/
|
||||
endif
|
||||
$(INSTALL_DIR) $(1)/etc/config $(1)/etc/samba $(1)/etc/init.d
|
||||
$(INSTALL_DATA) ./files/samba.config $(1)/etc/config/samba4
|
||||
$(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/samba
|
||||
$(INSTALL_BIN) ./files/samba.init $(1)/etc/init.d/samba4
|
||||
endef
|
||||
|
||||
define Package/samba4-server/conffiles
|
||||
/etc/config/samba4
|
||||
/etc/samba/smb.conf.template
|
||||
/etc/samba/smb.conf
|
||||
/etc/samba/smbpasswd
|
||||
/etc/samba/secrets.tdb
|
||||
/etc/samba/passdb.tdb
|
||||
/etc/samba/idmap.ldb
|
||||
/etc/samba/lmhosts
|
||||
/etc/nsswitch.conf
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,samba4-libs))
|
||||
$(eval $(call BuildPackage,samba4-server))
|
||||
$(eval $(call BuildPackage,samba4-client))
|
||||
$(eval $(call BuildPackage,samba4-admin))
|
||||
$(eval $(call BuildPackage,samba4-utils))
|
6
package/lean/samba4/files/samba.config
Normal file
6
package/lean/samba4/files/samba.config
Normal file
@ -0,0 +1,6 @@
|
||||
config samba
|
||||
option 'workgroup' 'WORKGROUP'
|
||||
option 'description' 'Samba on OpenWrt'
|
||||
option 'charset' 'UTF-8'
|
||||
option 'homes' '0'
|
||||
|
200
package/lean/samba4/files/samba.init
Normal file
200
package/lean/samba4/files/samba.init
Normal file
@ -0,0 +1,200 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=98
|
||||
USE_PROCD=1
|
||||
|
||||
smb_header() {
|
||||
config_get samba_iface $1 interface "loopback lan"
|
||||
|
||||
# resolve interfaces
|
||||
local interfaces=$(
|
||||
. /lib/functions/network.sh
|
||||
|
||||
local net
|
||||
for net in $samba_iface; do
|
||||
local device
|
||||
network_is_up $net || continue
|
||||
network_get_device device "$net"
|
||||
echo -n "${device:-$net} "
|
||||
done
|
||||
)
|
||||
|
||||
local workgroup description charset
|
||||
# we dont use netbios anymore as default and wsd/avahi is dns based
|
||||
local hostname="$(cat /proc/sys/kernel/hostname)"
|
||||
|
||||
config_get workgroup $1 workgroup "WORKGROUP"
|
||||
config_get description $1 description "Samba on OpenWrt"
|
||||
config_get charset $1 charset "UTF-8"
|
||||
|
||||
config_get_bool MACOS $1 macos 0
|
||||
config_get_bool DISABLE_NETBIOS $1 disable_netbios 0
|
||||
config_get_bool DISABLE_AD_DC $1 disable_ad_dc 0
|
||||
config_get_bool DISABLE_WINBIND $1 disable_winbind 0
|
||||
|
||||
mkdir -p /var/etc
|
||||
sed -e "s#|NAME|#$hostname#g" \
|
||||
-e "s#|WORKGROUP|#$workgroup#g" \
|
||||
-e "s#|DESCRIPTION|#$description#g" \
|
||||
-e "s#|INTERFACES|#$interfaces#g" \
|
||||
-e "s#|CHARSET|#$charset#g" \
|
||||
/etc/samba/smb.conf.template > /var/etc/smb.conf
|
||||
|
||||
echo -e "\n######### Dynamic written config options #########\n" >> /var/etc/smb.conf
|
||||
if [ "$DISABLE_NETBIOS" -eq 1 ] || [ ! -x /usr/sbin/nmbd ]; then
|
||||
echo -e "\tdisable netbios = yes" >> /var/etc/smb.conf
|
||||
fi
|
||||
|
||||
local homes
|
||||
config_get_bool homes $1 homes 0
|
||||
[ $homes -gt 0 ] && {
|
||||
cat <<EOT >> /var/etc/smb.conf
|
||||
|
||||
[homes]
|
||||
comment = Home Directories
|
||||
browsable = no
|
||||
writable = yes
|
||||
read only = no
|
||||
create mask = 0750
|
||||
EOT
|
||||
}
|
||||
|
||||
[ -L /etc/samba/smb.conf ] || ln -nsf /var/etc/smb.conf /etc/samba/smb.conf
|
||||
}
|
||||
|
||||
smb_add_share() {
|
||||
local name
|
||||
local path
|
||||
local users
|
||||
local create_mask
|
||||
local dir_mask
|
||||
local browseable
|
||||
local read_only
|
||||
local guest_ok
|
||||
local guest_only
|
||||
local inherit_owner
|
||||
local vfs_objects
|
||||
local timemachine
|
||||
local timemachine_maxsize
|
||||
local force_root
|
||||
|
||||
config_get name $1 name
|
||||
config_get path $1 path
|
||||
config_get users $1 users
|
||||
config_get create_mask $1 create_mask
|
||||
config_get dir_mask $1 dir_mask
|
||||
config_get browseable $1 browseable
|
||||
config_get read_only $1 read_only
|
||||
config_get guest_ok $1 guest_ok
|
||||
config_get guest_only $1 guest_only
|
||||
config_get inherit_owner $1 inherit_owner
|
||||
config_get vfs_objects $1 vfs_objects
|
||||
config_get_bool timemachine $1 timemachine 0
|
||||
config_get timemachine_maxsize $1 timemachine_maxsize
|
||||
config_get_bool force_root $1 force_root 0
|
||||
|
||||
[ -z "$name" -o -z "$path" ] && return
|
||||
|
||||
echo -e "\n[$name]\n\tpath = $path" >> /var/etc/smb.conf
|
||||
|
||||
if [ "$force_root" -eq 1 ]; then
|
||||
echo -e "\tforce user = root" >> /var/etc/smb.conf
|
||||
echo -e "\tforce group = root" >> /var/etc/smb.conf
|
||||
else
|
||||
[ -n "$users" ] && echo -e "\tvalid users = $users" >> /var/etc/smb.conf
|
||||
fi
|
||||
|
||||
[ -n "$create_mask" ] && echo -e "\tcreate mask = $create_mask" >> /var/etc/smb.conf
|
||||
[ -n "$dir_mask" ] && echo -e "\tdirectory mask = $dir_mask" >> /var/etc/smb.conf
|
||||
|
||||
[ -n "$browseable" ] && echo -e "\tbrowseable = $browseable" >> /var/etc/smb.conf
|
||||
[ -n "$read_only" ] && echo -e "\tread only = $read_only" >> /var/etc/smb.conf
|
||||
[ -n "$guest_ok" ] && echo -e "\tguest ok = $guest_ok" >> /var/etc/smb.conf
|
||||
[ -n "$guest_only" ] && echo -e "\tguest only = $guest_only" >> /var/etc/smb.conf
|
||||
[ -n "$inherit_owner" ] && echo -e "\tinherit owner = $inherit_owner" >> /var/etc/smb.conf
|
||||
|
||||
if [ "$MACOS" -eq 1 ]; then
|
||||
vfs_objects="catia fruit streams_xattr $vfs_objects"
|
||||
echo -e "\tfruit:encoding = native" >> /var/etc/smb.conf
|
||||
echo -e "\tfruit:metadata = stream" >> /var/etc/smb.conf
|
||||
echo -e "\tfruit:veto_appledouble = no" >> /var/etc/smb.conf
|
||||
# avoid mixed shares order for aapl
|
||||
if [ "$timemachine" -eq 1 ]; then
|
||||
echo -e "\tfruit:time machine = yes" >> /var/etc/smb.conf
|
||||
[ -n "$timemachine_maxsize" ] && echo -e "\tfruit:time machine max size = ${timemachine_maxsize}G" >> /var/etc/smb.conf
|
||||
fi
|
||||
fi
|
||||
|
||||
[ -n "$vfs_objects" ] && echo -e "\tvfs objects = $vfs_objects" >> /var/etc/smb.conf
|
||||
}
|
||||
|
||||
init_config() {
|
||||
# Create samba dirs
|
||||
[ -d /var/lib/samba ] || mkdir -p /var/lib/samba
|
||||
[ -d /var/cache/samba ] || mkdir -p /var/cache/samba
|
||||
[ -d /var/run/samba ] || mkdir -p /var/run/samba
|
||||
[ -d /var/log/samba ] || mkdir -p /var/log/samba
|
||||
[ -d /var/lock ] && chmod 0755 /var/lock || {
|
||||
mkdir -p /var/lock
|
||||
chmod 0755 /var/lock
|
||||
}
|
||||
|
||||
config_load samba4
|
||||
config_foreach smb_header samba
|
||||
config_foreach smb_add_share sambashare
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
PROCD_RELOAD_DELAY=2000
|
||||
|
||||
procd_add_reload_trigger "dhcp" "system" "samba4"
|
||||
|
||||
local i
|
||||
for i in $samba_iface; do
|
||||
procd_add_reload_interface_trigger $i
|
||||
done
|
||||
}
|
||||
|
||||
start_service() {
|
||||
init_config
|
||||
|
||||
# start main AD-DC daemon, will spawn (smbd,nmbd,winbindd) as needed/configured.
|
||||
if [ "$DISABLE_AD_DC" -ne 1 ] && [ -x /usr/sbin/samba ]; then
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/samba -F
|
||||
procd_set_param respawn
|
||||
procd_set_param file /var/etc/smb.conf
|
||||
procd_close_instance
|
||||
else
|
||||
# start fileserver daemon
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/smbd -F
|
||||
procd_set_param respawn
|
||||
procd_set_param file /var/etc/smb.conf
|
||||
procd_close_instance
|
||||
|
||||
# start netbios daemon
|
||||
if [ "$DISABLE_NETBIOS" -ne 1 ] && [ -x /usr/sbin/nmbd ]; then
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/nmbd -F
|
||||
procd_set_param respawn
|
||||
procd_set_param file /var/etc/smb.conf
|
||||
procd_close_instance
|
||||
fi
|
||||
# start winbind daemon
|
||||
if [ "$DISABLE_WINBIND" -ne 1 ] && [ -x /usr/sbin/winbindd ]; then
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/winbindd -F
|
||||
procd_set_param respawn
|
||||
procd_set_param file /var/etc/smb.conf
|
||||
procd_close_instance
|
||||
fi
|
||||
fi
|
||||
# lower priority using renice (if found)
|
||||
if [ -x /usr/bin/renice ]; then
|
||||
[ -x /usr/sbin/samba ] && renice -n 2 $(pidof samba)
|
||||
[ -x /usr/sbin/smbd ] && renice -n 2 $(pidof smbd)
|
||||
[ -x /usr/sbin/nmbd ] && renice -n 2 $(pidof nmbd)
|
||||
[ -x /usr/sbin/winbindd ] && renice -n 2 $(pidof winbindd)
|
||||
fi
|
||||
}
|
107
package/lean/samba4/files/smb.conf.template
Normal file
107
package/lean/samba4/files/smb.conf.template
Normal file
@ -0,0 +1,107 @@
|
||||
[global]
|
||||
netbios name = |NAME|
|
||||
interfaces = |INTERFACES|
|
||||
server string = |DESCRIPTION|
|
||||
unix charset = |CHARSET|
|
||||
workgroup = |WORKGROUP|
|
||||
|
||||
## This global parameter allows the Samba admin to limit what interfaces on a machine will serve SMB requests.
|
||||
bind interfaces only = yes
|
||||
|
||||
## time for inactive connections to-be closed in minutes
|
||||
deadtime = 15
|
||||
|
||||
## disable core dumps
|
||||
enable core files = no
|
||||
|
||||
## set security (auto, user, domain, ads)
|
||||
security = user
|
||||
|
||||
## This parameter controls whether a remote client is allowed or required to use SMB encryption.
|
||||
## It has different effects depending on whether the connection uses SMB1 or SMB2 and newer:
|
||||
## If the connection uses SMB1, then this option controls the use of a Samba-specific extension to the SMB protocol introduced in Samba 3.2 that makes use of the Unix extensions.
|
||||
## If the connection uses SMB2 or newer, then this option controls the use of the SMB-level encryption that is supported in SMB version 3.0 and above and available in Windows 8 and newer.
|
||||
##(default/auto,desired,required,off)
|
||||
#smb encrypt = default
|
||||
|
||||
## set invalid users
|
||||
invalid users = root
|
||||
|
||||
## map unknow users to guest
|
||||
map to guest = Bad User
|
||||
|
||||
## allow client access to accounts that have null passwords.
|
||||
null passwords = yes
|
||||
|
||||
## The old plaintext passdb backend. Some Samba features will not work if this passdb backend is used. (NOTE: enabled for size reasons)
|
||||
## (tdbsam,smbpasswd,ldapsam)
|
||||
passdb backend = smbpasswd
|
||||
|
||||
## Set location of smbpasswd ('smbd -b' will show default compiled location)
|
||||
#smb passwd file = /etc/samba/smbpasswd
|
||||
|
||||
## LAN/WAN options (IPTOS_LOWDELAY TCP_NODELAY) WAN (IPTOS_THROUGHPUT)
|
||||
socket options = IPTOS_LOWDELAY TCP_NODELAY
|
||||
|
||||
## lower CPU useage if supported
|
||||
use sendfile = yes
|
||||
|
||||
## samba will behave as previous versions of Samba would and will fail the lock request immediately if the lock range cannot be obtained.
|
||||
#blocking locks = No
|
||||
|
||||
## disable loading of all printcap printers by default (iprint, cups, lpstat)
|
||||
load printers = No
|
||||
printcap name = /dev/null
|
||||
|
||||
## Enabling this parameter will disable Samba's support for the SPOOLSS set of MS-RPC's.
|
||||
disable spoolss = yes
|
||||
|
||||
## This parameters controls how printer status information is interpreted on your system.
|
||||
## (BSD, AIX, LPRNG, PLP, SYSV, HPUX, QNX, SOFTQ)
|
||||
printing = bsd
|
||||
|
||||
## Disable that nmbd is acting as a WINS server for unknow netbios names
|
||||
#dns proxy = No
|
||||
|
||||
## win/unix user mapping backend
|
||||
#idmap config * : backend = tdb
|
||||
|
||||
## Allows the server name that is advertised through MDNS to be set to the hostname rather than the Samba NETBIOS name.
|
||||
## This allows an administrator to make Samba registered MDNS records match the case of the hostname rather than being in all capitals.
|
||||
## (netbios, mdns)
|
||||
mdns name = mdns
|
||||
|
||||
## Clients that only support netbios won't be able to see your samba server when netbios support is disabled.
|
||||
#disable netbios = Yes
|
||||
|
||||
## Setting this value to no will cause nmbd never to become a local master browser.
|
||||
#local master = no
|
||||
|
||||
## (auto, yes) If this is set to yes, on startup, nmbd will force an election, and it will have a slight advantage in winning the election. It is recommended that this parameter is used in conjunction with domain master = yes, so that nmbd can guarantee becoming a domain master.
|
||||
#preferred master = yes
|
||||
|
||||
## (445 139) Specifies which ports the server should listen on for SMB traffic.
|
||||
## 139 is netbios/nmbd
|
||||
#smb ports = 445 139
|
||||
|
||||
## This is a list of files and directories that are neither visible nor accessible.
|
||||
## Each entry in the list must be separated by a '/', which allows spaces to be included in the entry. '*' and '?' can be used to specify multiple files or directories as in DOS wildcards.
|
||||
veto files = /Thumbs.db/.DS_Store/._.DS_Store/.apdisk/
|
||||
|
||||
## If a directory that is to be deleted contains nothing but veto files this deletion will fail unless you also set the delete veto files parameter to yes.
|
||||
delete veto files = yes
|
||||
|
||||
################ Filesystem and creation rules ################
|
||||
## reported filesystem type (NTFS,Samba,FAT)
|
||||
#fstype = FAT
|
||||
|
||||
## Allows a user who has write access to the file (by whatever means, including an ACL permission) to modify the permissions (including ACL) on it.
|
||||
#dos filemode = Yes
|
||||
|
||||
## file/dir creating rules
|
||||
#create mask = 0666
|
||||
#directory mask = 0777
|
||||
#force group = root
|
||||
#force user = root
|
||||
#inherit owner = windows and unix
|
||||
################################################################
|
29
package/lean/samba4/patches/001-samba-4.4.0-pam.patch
Normal file
29
package/lean/samba4/patches/001-samba-4.4.0-pam.patch
Normal file
@ -0,0 +1,29 @@
|
||||
--- a/source3/wscript
|
||||
+++ b/source3/wscript
|
||||
@@ -843,7 +843,7 @@ msg.msg_accrightslen = sizeof(fd);
|
||||
if conf.env.with_iconv:
|
||||
conf.DEFINE('HAVE_ICONV', 1)
|
||||
|
||||
- if Options.options.with_pam:
|
||||
+ if Options.options.with_pam != False:
|
||||
use_pam=True
|
||||
conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
|
||||
if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
|
||||
@@ -920,6 +920,17 @@ int i; i = PAM_RADIO_TYPE;
|
||||
"or headers not found. Use --without-pam to disable "
|
||||
"PAM support.");
|
||||
|
||||
+ else:
|
||||
+ Logs.warn("PAM disabled")
|
||||
+ use_pam=False
|
||||
+ conf.undefine('WITH_PAM')
|
||||
+ conf.undefine('WITH_PAM_MODULES')
|
||||
+ conf.undefine('HAVE_SECURITY_PAM_APPL_H')
|
||||
+ conf.undefine('PAM_RHOST')
|
||||
+ conf.undefine('PAM_TTY')
|
||||
+ conf.undefine('HAVE_PAM_PAM_APPL_H')
|
||||
+
|
||||
+
|
||||
seteuid = False
|
||||
|
||||
#
|
19
package/lean/samba4/patches/002-dnsserver-4.7.0.patch
Normal file
19
package/lean/samba4/patches/002-dnsserver-4.7.0.patch
Normal file
@ -0,0 +1,19 @@
|
||||
samba: build dnsserver_common code
|
||||
|
||||
Just 'install' does not seem to do it.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
||||
|
||||
--- a/source4/dns_server/wscript_build
|
||||
+++ b/source4/dns_server/wscript_build
|
||||
@@ -4,7 +4,7 @@ bld.SAMBA_LIBRARY('dnsserver_common',
|
||||
source='dnsserver_common.c',
|
||||
deps='samba-util samba-errors ldbsamba clidns',
|
||||
private_library=True,
|
||||
- install=bld.AD_DC_BUILD_IS_ENABLED()
|
||||
+ enabled=bld.AD_DC_BUILD_IS_ENABLED()
|
||||
)
|
||||
|
||||
bld.SAMBA_MODULE('service_dns',
|
@ -0,0 +1,20 @@
|
||||
--- a/source3/lib/messages.c
|
||||
+++ b/source3/lib/messages.c
|
||||
@@ -518,7 +518,7 @@ static NTSTATUS messaging_init_internal(
|
||||
return NT_STATUS_ACCESS_DENIED;
|
||||
}
|
||||
|
||||
- priv_path = private_path("msg.sock");
|
||||
+ priv_path = lock_path("msg.sock");
|
||||
if (priv_path == NULL) {
|
||||
return NT_STATUS_NO_MEMORY;
|
||||
}
|
||||
@@ -662,7 +662,7 @@ NTSTATUS messaging_reinit(struct messagi
|
||||
|
||||
msg_ctx->msg_dgm_ref = messaging_dgm_ref(
|
||||
msg_ctx, msg_ctx->event_ctx, &msg_ctx->id.unique_id,
|
||||
- private_path("msg.sock"), lck_path,
|
||||
+ lock_path("msg.sock"), lck_path,
|
||||
messaging_recv_cb, msg_ctx, &ret);
|
||||
|
||||
if (msg_ctx->msg_dgm_ref == NULL) {
|
@ -0,0 +1,11 @@
|
||||
--- a/source4/lib/messaging/messaging.c
|
||||
+++ b/source4/lib/messaging/messaging.c
|
||||
@@ -350,7 +350,7 @@ static struct imessaging_context *imessa
|
||||
goto fail;
|
||||
}
|
||||
|
||||
- msg->sock_dir = lpcfg_private_path(msg, lp_ctx, "msg.sock");
|
||||
+ msg->sock_dir = lpcfg_lock_path(msg, lp_ctx, "msg.sock");
|
||||
if (msg->sock_dir == NULL) {
|
||||
goto fail;
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
Some modules such as dynamic library maybe cann't be imported while cross compile,
|
||||
we just check whether does the module exist.
|
||||
|
||||
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
|
||||
|
||||
--- a/buildtools/wafsamba/samba_bundled.py
|
||||
+++ b/buildtools/wafsamba/samba_bundled.py
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import sys
|
||||
import Build, Options, Logs
|
||||
+import imp, os
|
||||
from Configure import conf
|
||||
from samba_utils import TO_LIST
|
||||
|
||||
@@ -249,17 +250,32 @@ def CHECK_BUNDLED_SYSTEM_PYTHON(conf, li
|
||||
# versions
|
||||
minversion = minimum_library_version(conf, libname, minversion)
|
||||
|
||||
- try:
|
||||
- m = __import__(modulename)
|
||||
- except ImportError:
|
||||
- found = False
|
||||
- else:
|
||||
+ # Find module in PYTHONPATH
|
||||
+ stuff = imp.find_module(modulename, [os.environ["PYTHONPATH"]])
|
||||
+ if stuff:
|
||||
try:
|
||||
- version = m.__version__
|
||||
- except AttributeError:
|
||||
+ m = imp.load_module(modulename, stuff[0], stuff[1], stuff[2])
|
||||
+ except ImportError:
|
||||
found = False
|
||||
+
|
||||
+ if conf.env.CROSS_COMPILE:
|
||||
+ # Some modules such as dynamic library maybe cann't be imported
|
||||
+ # while cross compile, we just check whether the module exist
|
||||
+ Logs.warn('Cross module[%s] has been found, but can not be loaded.' % (stuff[1]))
|
||||
+ found = True
|
||||
else:
|
||||
- found = tuplize_version(version) >= tuplize_version(minversion)
|
||||
+ try:
|
||||
+ version = m.__version__
|
||||
+ except AttributeError:
|
||||
+ found = False
|
||||
+ else:
|
||||
+ found = tuplize_version(version) >= tuplize_version(minversion)
|
||||
+ finally:
|
||||
+ if stuff[0]:
|
||||
+ stuff[0].close()
|
||||
+ else:
|
||||
+ found = False
|
||||
+
|
||||
if not found and not conf.LIB_MAY_BE_BUNDLED(libname):
|
||||
Logs.error('ERROR: Python module %s of version %s not found, and bundling disabled' % (libname, minversion))
|
||||
sys.exit(1)
|
@ -0,0 +1,37 @@
|
||||
Don't check xsltproc manpages
|
||||
|
||||
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
|
||||
|
||||
--- a/lib/ldb/wscript
|
||||
+++ b/lib/ldb/wscript
|
||||
@@ -152,7 +152,7 @@ def configure(conf):
|
||||
conf.DEFINE('EXPECTED_SYSTEM_LDB_VERSION_RELEASE', int(v[2]))
|
||||
|
||||
if conf.env.standalone_ldb:
|
||||
- conf.CHECK_XSLTPROC_MANPAGES()
|
||||
+ #conf.CHECK_XSLTPROC_MANPAGES()
|
||||
|
||||
# we need this for the ldap backend
|
||||
if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'):
|
||||
--- a/lib/talloc/wscript
|
||||
+++ b/lib/talloc/wscript
|
||||
@@ -49,7 +49,7 @@ def configure(conf):
|
||||
conf.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
|
||||
conf.env.TALLOC_VERSION = VERSION
|
||||
|
||||
- conf.CHECK_XSLTPROC_MANPAGES()
|
||||
+ #conf.CHECK_XSLTPROC_MANPAGES()
|
||||
|
||||
conf.CHECK_HEADERS('sys/auxv.h')
|
||||
conf.CHECK_FUNCS('getauxval')
|
||||
--- a/lib/tdb/wscript
|
||||
+++ b/lib/tdb/wscript
|
||||
@@ -89,7 +89,7 @@ def configure(conf):
|
||||
not conf.env.disable_tdb_mutex_locking):
|
||||
conf.define('USE_TDB_MUTEX_LOCKING', 1)
|
||||
|
||||
- conf.CHECK_XSLTPROC_MANPAGES()
|
||||
+ #conf.CHECK_XSLTPROC_MANPAGES()
|
||||
|
||||
if not conf.env.disable_python:
|
||||
# also disable if we don't have the python libs installed
|
@ -0,0 +1,21 @@
|
||||
--- a/libcli/smbreadline/wscript_configure
|
||||
+++ b/libcli/smbreadline/wscript_configure
|
||||
@@ -1,11 +1,13 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
|
||||
-conf.CHECK_HEADERS('readline.h history.h readline/readline.h readline/history.h')
|
||||
-for termlib in ['ncurses', 'curses', 'termcap', 'terminfo', 'termlib', 'tinfo']:
|
||||
- if conf.CHECK_FUNCS_IN('tgetent', termlib):
|
||||
- conf.env['READLINE_TERMLIB'] = termlib
|
||||
- break
|
||||
+#conf.CHECK_HEADERS('readline.h history.h readline/readline.h readline/history.h')
|
||||
+#for termlib in ['ncurses', 'curses', 'termcap', 'terminfo', 'termlib', 'tinfo']:
|
||||
+# if conf.CHECK_FUNCS_IN('tgetent', termlib):
|
||||
+# conf.env['READLINE_TERMLIB'] = termlib
|
||||
+# break
|
||||
+
|
||||
+conf.undefine('HAVE_READLINE_READLINE_H')
|
||||
|
||||
#
|
||||
# Check if we need to work around readline/readline.h
|
@ -0,0 +1,77 @@
|
||||
--- a/lib/crypto/wscript_configure
|
||||
+++ b/lib/crypto/wscript_configure
|
||||
@@ -2,11 +2,11 @@
|
||||
import Options
|
||||
import Utils
|
||||
|
||||
-if not conf.CHECK_FUNCS_IN('MD5Init', 'bsd', headers='bsd/md5.h',
|
||||
- checklibc=True):
|
||||
- conf.CHECK_FUNCS_IN('MD5Init', 'md5', headers='sys/md5.h',
|
||||
- checklibc=True)
|
||||
- conf.CHECK_FUNCS_IN('MD5Init', 'md', headers='sys/md5.h',
|
||||
+# if not conf.CHECK_FUNCS_IN('MD5Init', 'bsd', headers='bsd/md5.h',
|
||||
+ # checklibc=True):
|
||||
+conf.CHECK_FUNCS_IN('MD5Init', 'md5', headers='sys/md5.h',
|
||||
+ checklibc=True)
|
||||
+conf.CHECK_FUNCS_IN('MD5Init', 'md', headers='sys/md5.h',
|
||||
checklibc=True)
|
||||
conf.CHECK_FUNCS_IN('CC_MD5_Init', '', headers='CommonCrypto/CommonDigest.h',
|
||||
checklibc=True)
|
||||
--- a/lib/replace/wscript
|
||||
+++ b/lib/replace/wscript
|
||||
@@ -340,22 +340,13 @@ def configure(conf):
|
||||
|
||||
conf.CHECK_FUNCS('prctl dirname basename')
|
||||
|
||||
- strlcpy_in_bsd = False
|
||||
+ # Not checking for libbsd
|
||||
+ conf.CHECK_FUNCS('strlcpy strlcat')
|
||||
+ conf.CHECK_FUNCS('getpeereid')
|
||||
+ conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h')
|
||||
+ conf.CHECK_FUNCS('setproctitle_init')
|
||||
|
||||
- # libbsd on some platforms provides strlcpy and strlcat
|
||||
- if not conf.CHECK_FUNCS('strlcpy strlcat'):
|
||||
- if conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h',
|
||||
- checklibc=True):
|
||||
- strlcpy_in_bsd = True
|
||||
- if not conf.CHECK_FUNCS('getpeereid'):
|
||||
- conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h')
|
||||
- if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'):
|
||||
- conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h')
|
||||
- if not conf.CHECK_FUNCS('setproctitle_init'):
|
||||
- conf.CHECK_FUNCS_IN('setproctitle_init', 'bsd', headers='sys/types.h bsd/unistd.h')
|
||||
-
|
||||
- if not conf.CHECK_FUNCS('closefrom'):
|
||||
- conf.CHECK_FUNCS_IN('closefrom', 'bsd', headers='bsd/unistd.h')
|
||||
+ conf.CHECK_FUNCS('closefrom')
|
||||
|
||||
conf.CHECK_CODE('''
|
||||
struct ucred cred;
|
||||
@@ -698,9 +689,6 @@ def configure(conf):
|
||||
|
||||
# look for a method of finding the list of network interfaces
|
||||
for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
|
||||
- bsd_for_strlcpy = ''
|
||||
- if strlcpy_in_bsd:
|
||||
- bsd_for_strlcpy = ' bsd'
|
||||
if conf.CHECK_CODE('''
|
||||
#define %s 1
|
||||
#define NO_CONFIG_H 1
|
||||
@@ -713,7 +701,7 @@ def configure(conf):
|
||||
#include "test/getifaddrs.c"
|
||||
''' % method,
|
||||
method,
|
||||
- lib='nsl socket' + bsd_for_strlcpy,
|
||||
+ lib='nsl socket',
|
||||
addmain=False,
|
||||
execute=True):
|
||||
break
|
||||
@@ -761,7 +749,6 @@ def build(bld):
|
||||
break
|
||||
|
||||
extra_libs = ''
|
||||
- if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
|
||||
REPLACE_HOSTCC_SOURCE,
|
34
package/lean/samba4/waf-cross-answers/aarch64.txt
Normal file
34
package/lean/samba4/waf-cross-answers/aarch64.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: OK
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
37
package/lean/samba4/waf-cross-answers/arc.txt
Normal file
37
package/lean/samba4/waf-cross-answers/arc.txt
Normal file
@ -0,0 +1,37 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
||||
Checking whether setreuid is available: NO
|
||||
Checking whether setresuid is available: NO
|
||||
Checking whether seteuid is available: NO
|
34
package/lean/samba4/waf-cross-answers/arm.txt
Normal file
34
package/lean/samba4/waf-cross-answers/arm.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials with 32-bit system calls: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/armeb.txt
Normal file
34
package/lean/samba4/waf-cross-answers/armeb.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials with 32-bit system calls: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/i386.txt
Normal file
34
package/lean/samba4/waf-cross-answers/i386.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials with 32-bit system calls: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/mips.txt
Normal file
34
package/lean/samba4/waf-cross-answers/mips.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "128"
|
||||
Checking value of _NSIG: "128"
|
||||
Checking value of SIGRTMAX: "127"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/mips64.txt
Normal file
34
package/lean/samba4/waf-cross-answers/mips64.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "128"
|
||||
Checking value of _NSIG: "128"
|
||||
Checking value of SIGRTMAX: "127"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: OK
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/mips64el.txt
Normal file
34
package/lean/samba4/waf-cross-answers/mips64el.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "128"
|
||||
Checking value of _NSIG: "128"
|
||||
Checking value of SIGRTMAX: "127"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: OK
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/mipsel.txt
Normal file
34
package/lean/samba4/waf-cross-answers/mipsel.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "128"
|
||||
Checking value of _NSIG: "128"
|
||||
Checking value of SIGRTMAX: "127"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/powerpc.txt
Normal file
34
package/lean/samba4/waf-cross-answers/powerpc.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: NO
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
34
package/lean/samba4/waf-cross-answers/x86_64.txt
Normal file
34
package/lean/samba4/waf-cross-answers/x86_64.txt
Normal file
@ -0,0 +1,34 @@
|
||||
Checking uname sysname type: "Linux"
|
||||
Checking simple C program: "hello world"
|
||||
rpath library support: OK
|
||||
-Wl,--version-script support: OK
|
||||
Checking getconf LFS_CFLAGS: NO
|
||||
Checking for large file support without additional flags: OK
|
||||
Checking correct behavior of strtoll: OK
|
||||
Checking for working strptime: NO
|
||||
Checking for C99 vsnprintf: "1"
|
||||
Checking for HAVE_SHARED_MMAP: OK
|
||||
Checking for HAVE_MREMAP: OK
|
||||
Checking for HAVE_INCOHERENT_MMAP: NO
|
||||
Checking for HAVE_SECURE_MKSTEMP: OK
|
||||
Checking for HAVE_IFACE_GETIFADDRS: OK
|
||||
Checking value of NSIG: "65"
|
||||
Checking value of _NSIG: "65"
|
||||
Checking value of SIGRTMAX: "64"
|
||||
Checking value of SIGRTMIN: "35"
|
||||
Checking for a 64-bit host to support lmdb: NO
|
||||
Checking whether the WRFILE -keytab is supported: OK
|
||||
Checking errno of iconv for illegal multibyte sequence: OK
|
||||
Checking for kernel change notify support: OK
|
||||
Checking for Linux kernel oplocks: OK
|
||||
Checking for kernel share modes: OK
|
||||
Checking if can we convert from CP850 to UCS-2LE: OK
|
||||
Checking if can we convert from UTF-8 to UCS-2LE: OK
|
||||
vfs_fileid checking for statfs() and struct statfs.f_fsid: OK
|
||||
Checking whether we can use Linux thread-specific credentials: "OK"
|
||||
Checking whether fcntl locking is available: OK
|
||||
Checking whether fcntl lock supports open file description locks: NO
|
||||
Checking for the maximum value of the 'time_t' type: OK
|
||||
Checking whether the realpath function allows a NULL argument: OK
|
||||
Checking for ftruncate extend: OK
|
||||
getcwd takes a NULL argument: OK
|
Loading…
Reference in New Issue
Block a user