Merge pull request #3344 from Andy2244/luci-app-samba4-switch-js-api
luci-app-samba4: switch to luci static javascript api
This commit is contained in:
commit
9f9da52b55
34 changed files with 1750 additions and 1339 deletions
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
LUCI_TITLE:=Network Shares - Samba 4 SMB/CIFS module
|
LUCI_TITLE:=Network Shares - Samba 4 SMB/CIFS fileserver
|
||||||
LUCI_DEPENDS:=+luci-compat +samba4-server
|
LUCI_DEPENDS:=+samba4-server
|
||||||
|
|
||||||
include ../../luci.mk
|
include ../../luci.mk
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,132 @@
|
||||||
|
'use strict';
|
||||||
|
'require fs';
|
||||||
|
'require form';
|
||||||
|
'require tools.widgets as widgets';
|
||||||
|
|
||||||
|
return L.view.extend({
|
||||||
|
load: function() {
|
||||||
|
return Promise.all([
|
||||||
|
L.resolveDefault(fs.stat('/sbin/block'), null),
|
||||||
|
L.resolveDefault(fs.stat('/etc/config/fstab'), null),
|
||||||
|
L.resolveDefault(fs.stat('/usr/sbin/nmbd'), {}),
|
||||||
|
L.resolveDefault(fs.stat('/usr/sbin/samba'), {}),
|
||||||
|
L.resolveDefault(fs.stat('/usr/sbin/winbindd'), {}),
|
||||||
|
L.resolveDefault(fs.exec('/usr/sbin/smbd', ['-V']), null),
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
render: function(stats) {
|
||||||
|
var m, s, o, v;
|
||||||
|
v = '';
|
||||||
|
|
||||||
|
m = new form.Map('samba4', _('Network Shares'));
|
||||||
|
|
||||||
|
if (stats[5] && stats[5].code === 0) {
|
||||||
|
v = stats[5].stdout.trim();
|
||||||
|
}
|
||||||
|
s = m.section(form.TypedSection, 'samba', 'Samba ' + v);
|
||||||
|
s.anonymous = true;
|
||||||
|
|
||||||
|
s.tab('general', _('General Settings'));
|
||||||
|
s.tab('template', _('Edit Template'));
|
||||||
|
|
||||||
|
s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
|
||||||
|
_('Listen only on the given interface or, if unspecified, on lan'));
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'workgroup', _('Workgroup'));
|
||||||
|
o.placeholder = 'WORKGROUP';
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'description', _('Description'));
|
||||||
|
o.placeholder = 'Samba4 on OpenWrt';
|
||||||
|
|
||||||
|
s.taboption('general', form.Flag, 'disable_async_io', _('Force synchronous I/O'),
|
||||||
|
_('On lower-end devices may increase speeds, by forceing synchronous I/O instead of the default asynchronous.'));
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Flag, 'macos', _('Enable macOS compatible shares'),
|
||||||
|
_('Enables Apple\'s AAPL extension globally and adds macOS compatibility options to all shares.'));
|
||||||
|
|
||||||
|
if (stats[2].type === 'file') {
|
||||||
|
s.taboption('general', form.Flag, 'disable_netbios', _('Disable Netbios'))
|
||||||
|
}
|
||||||
|
if (stats[3].type === 'file') {
|
||||||
|
s.taboption('general', form.Flag, 'disable_ad_dc', _('Disable Active Directory Domain Controller'))
|
||||||
|
}
|
||||||
|
if (stats[4].type === 'file') {
|
||||||
|
s.taboption('general', form.Flag, 'disable_winbind', _('Disable Winbind'))
|
||||||
|
}
|
||||||
|
|
||||||
|
o = s.taboption('template', form.TextValue, '_tmpl',
|
||||||
|
_('Edit the template that is used for generating the samba configuration.'),
|
||||||
|
_("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."));
|
||||||
|
o.rows = 20;
|
||||||
|
o.cfgvalue = function(section_id) {
|
||||||
|
return fs.trimmed('/etc/samba/smb.conf.template');
|
||||||
|
};
|
||||||
|
o.write = function(section_id, formvalue) {
|
||||||
|
return fs.write('/etc/samba/smb.conf.template', formvalue.trim().replace(/\r\n/g, '\n') + '\n');
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
s = m.section(form.TableSection, 'sambashare', _('Shared Directories'),
|
||||||
|
_('Please add directories to share. Each directory refers to a folder on a mounted device.'));
|
||||||
|
s.anonymous = true;
|
||||||
|
s.addremove = true;
|
||||||
|
|
||||||
|
s.option(form.Value, 'name', _('Name'));
|
||||||
|
o = s.option(form.Value, 'path', _('Path'));
|
||||||
|
if (stats[0] && stats[1]) {
|
||||||
|
o.titleref = L.url('admin', 'system', 'mounts');
|
||||||
|
}
|
||||||
|
|
||||||
|
o = s.option(form.Flag, 'browseable', _('Browse-able'));
|
||||||
|
o.enabled = 'yes';
|
||||||
|
o.disabled = 'no';
|
||||||
|
o.default = 'yes';
|
||||||
|
|
||||||
|
o = s.option(form.Flag, 'read_only', _('Read-only'));
|
||||||
|
o.enabled = 'yes';
|
||||||
|
o.disabled = 'no';
|
||||||
|
o.default = 'no';
|
||||||
|
|
||||||
|
s.option(form.Flag, 'force_root', _('Force Root'));
|
||||||
|
|
||||||
|
o = s.option(form.Value, 'users', _('Allowed users'));
|
||||||
|
o.rmempty = true;
|
||||||
|
|
||||||
|
o = s.option(form.Flag, 'guest_ok', _('Allow guests'));
|
||||||
|
o.enabled = 'yes';
|
||||||
|
o.disabled = 'no';
|
||||||
|
o.default = 'Yes';
|
||||||
|
|
||||||
|
o = s.option(form.Flag, 'guest_only', _('Guests only'));
|
||||||
|
o.enabled = 'yes';
|
||||||
|
o.disabled = 'no';
|
||||||
|
o.default = 'no';
|
||||||
|
|
||||||
|
o = s.option(form.Flag, 'inherit_owner', _('Inherit owner'));
|
||||||
|
o.enabled = 'yes';
|
||||||
|
o.disabled = 'no';
|
||||||
|
o.default = 'no';
|
||||||
|
|
||||||
|
o = s.option(form.Value, 'create_mask', _('Create mask'));
|
||||||
|
o.rmempty = true;
|
||||||
|
o.maxlength = 4;
|
||||||
|
o.placeholder = '0666';
|
||||||
|
|
||||||
|
o = s.option(form.Value, 'dir_mask', _('Directory mask'));
|
||||||
|
o.rmempty = true;
|
||||||
|
o.maxlength = 4;
|
||||||
|
o.placeholder = '0777';
|
||||||
|
|
||||||
|
o = s.option(form.Value, 'vfs_objects', _('Vfs objects'));
|
||||||
|
o.rmempty = true;
|
||||||
|
|
||||||
|
s.option(form.Flag, 'timemachine', _('Apple Time-machine share'));
|
||||||
|
|
||||||
|
o = s.option(form.Value, 'timemachine_maxsize', _('Time-machine size in GB'));
|
||||||
|
o.rmempty = true;
|
||||||
|
o.maxlength = 5;
|
||||||
|
|
||||||
|
return m.render();
|
||||||
|
}
|
||||||
|
});
|
|
@ -7,8 +7,5 @@ function index()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local page
|
entry({"admin", "services", "samba4"}, view("samba4"), _("Network Shares")).dependent = true
|
||||||
|
|
||||||
page = entry({"admin", "services", "samba4"}, cbi("samba4"), _("Network Shares"))
|
|
||||||
page.dependent = true
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,112 +0,0 @@
|
||||||
-- 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
|
|
|
@ -13,120 +13,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -134,15 +140,15 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -16,122 +16,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 3.9.1-dev\n"
|
"X-Generator: Weblate 3.9.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permet convidats"
|
msgstr "Permet convidats"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Usuaris permesos"
|
msgstr "Usuaris permesos"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Crea màscara"
|
msgstr "Crea màscara"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripció"
|
msgstr "Descripció"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Màscara de directori"
|
msgstr "Màscara de directori"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Edita plantilla"
|
msgstr "Edita plantilla"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
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."
|
msgstr "Edita la plantilla que s'usa per generar la configuració de samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Ajusts generals"
|
msgstr "Ajusts generals"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nom de l’amfitrió"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Comparticions de xarxa"
|
msgstr "Comparticions de xarxa"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Ruta"
|
msgstr "Ruta"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Només lectura"
|
msgstr "Només lectura"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Comparteix directoris d'inici"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Directoris compartits"
|
msgstr "Directoris compartits"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -143,18 +147,30 @@ msgstr ""
|
||||||
"barra ('|') no es deuen canviar. Reben els seus valors de la pestanya "
|
"barra ('|') no es deuen canviar. Reben els seus valors de la pestanya "
|
||||||
"'Ajusts generals'."
|
"'Ajusts generals'."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Grup de treball"
|
msgstr "Grup de treball"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nom de l’amfitrió"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Comparteix directoris d'inici"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Màscara per directoris nous"
|
#~ msgstr "Màscara per directoris nous"
|
||||||
|
|
||||||
|
|
|
@ -12,124 +12,128 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 3.9\n"
|
"X-Generator: Weblate 3.9\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Povolení hosté"
|
msgstr "Povolení hosté"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Povolení uživatelé"
|
msgstr "Povolení uživatelé"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Vytvořit masku"
|
msgstr "Vytvořit masku"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Popis"
|
msgstr "Popis"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Maska adresáře"
|
msgstr "Maska adresáře"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Editovat šablonu"
|
msgstr "Editovat šablonu"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Editovat šablonu, která je použita pro generování konfiguračního souboru pro "
|
"Editovat šablonu, která je použita pro generování konfiguračního souboru pro "
|
||||||
"sambu."
|
"sambu."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Obecné nastavení"
|
msgstr "Obecné nastavení"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Název počítače"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Jméno"
|
msgstr "Jméno"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Síťová sdílení"
|
msgstr "Síťová sdílení"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Cesta"
|
msgstr "Cesta"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Pouze pro čtení"
|
msgstr "Pouze pro čtení"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Sdílet domácí adresáře"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Sdílené adresáře"
|
msgstr "Sdílené adresáře"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -140,18 +144,30 @@ msgstr ""
|
||||||
"konfigurace samby generována. Hodnoty uzavřené rourou (\"|\"), by se neměly "
|
"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í\"."
|
"měnit. Tyto hodnoty jsou brány ze záložky \"Obecná nastavení\"."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Skupina"
|
msgstr "Skupina"
|
||||||
|
|
||||||
|
#~ 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íť."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Název počítače"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Sdílet domácí adresáře"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Maska pro nové adresáře"
|
#~ msgstr "Maska pro nové adresáře"
|
||||||
|
|
||||||
|
|
|
@ -14,106 +14,114 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
"X-Generator: Weblate 3.10-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Gastzugang"
|
msgstr "Gastzugang"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Legitimierte Benutzer"
|
msgstr "Legitimierte Benutzer"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Durchsuchbar"
|
msgstr "Durchsuchbar"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Berechtigungs-maske für neue Dateien"
|
msgstr "Berechtigungs-maske für neue Dateien"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschreibung"
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Verzeichnis-maske"
|
msgstr "Verzeichnis-maske"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Deaktiviere Active Directory Domain Controller"
|
msgstr "Deaktiviere Active Directory Domain Controller"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Deaktiviere Netbios"
|
msgstr "Deaktiviere Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Deaktiviere Winbind"
|
msgstr "Deaktiviere Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Template bearbeiten"
|
msgstr "Template bearbeiten"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-"
|
"Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-"
|
||||||
"Konfigurationsdateien verwendet wird."
|
"Konfigurationsdateien verwendet wird."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Root erzwingen"
|
msgstr "Root erzwingen"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Allgemeine Einstellungen"
|
msgstr "Allgemeine Einstellungen"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "Nur Gaeste"
|
msgstr "Nur Gaeste"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Hostname"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "Besitzer Erben"
|
msgstr "Besitzer Erben"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Netzwerk-freigaben"
|
msgstr "Netzwerk-freigaben"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Pfad"
|
msgstr "Pfad"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -121,19 +129,15 @@ msgstr ""
|
||||||
"Bitte fügen Sie Verzeichnisse hinzu, die Sie freigeben möchten. Jedes "
|
"Bitte fügen Sie Verzeichnisse hinzu, die Sie freigeben möchten. Jedes "
|
||||||
"Verzeichnis bezieht sich auf einen Ordner auf einem bereitgestellten Gerät."
|
"Verzeichnis bezieht sich auf einen Ordner auf einem bereitgestellten Gerät."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Nur Lesen"
|
msgstr "Nur Lesen"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Heimatverzeichnisse freigeben"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Freigegebene Verzeichnisse"
|
msgstr "Freigegebene Verzeichnisse"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -146,18 +150,30 @@ msgstr ""
|
||||||
"werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab "
|
"werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab "
|
||||||
"'Allgemeine Einstellungen' ersetzt werden."
|
"'Allgemeine Einstellungen' ersetzt werden."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Arbeitsgruppe"
|
msgstr "Arbeitsgruppe"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Systembenutzer dürfen ihre Heimatverzeichnis über Netzwerkfreigaben "
|
||||||
|
#~ "erreichen."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Hostname"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Heimatverzeichnisse freigeben"
|
||||||
|
|
||||||
#~ msgid "Browseable"
|
#~ msgid "Browseable"
|
||||||
#~ msgstr "Suchbar"
|
#~ msgstr "Suchbar"
|
||||||
|
|
||||||
|
|
|
@ -13,120 +13,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Όνομα"
|
msgstr "Όνομα"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -134,14 +140,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -13,120 +13,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Allow guests"
|
msgstr "Allow guests"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Allowed users"
|
msgstr "Allowed users"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Create mask"
|
msgstr "Create mask"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Directory mask"
|
msgstr "Directory mask"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Edit template"
|
msgstr "Edit template"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "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
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "General settings"
|
msgstr "General settings"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Hostname"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Network Shares"
|
msgstr "Network Shares"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Path"
|
msgstr "Path"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Read-only"
|
msgstr "Read-only"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Share home-directories"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Shared Directories"
|
msgstr "Shared Directories"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -138,18 +144,29 @@ msgstr ""
|
||||||
"('|') should not be changed. They get their values from the 'General "
|
"('|') should not be changed. They get their values from the 'General "
|
||||||
"settings' tab."
|
"settings' tab."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Workgroup"
|
msgstr "Workgroup"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Hostname"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Share home-directories"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Mask for new directories"
|
#~ msgstr "Mask for new directories"
|
||||||
|
|
||||||
|
|
|
@ -14,64 +14,59 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
"X-Generator: Weblate 3.10-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permitir invitados"
|
msgstr "Permitir invitados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
msgid "Allow system users to reach their home directories via network shares"
|
|
||||||
msgstr ""
|
|
||||||
"Permitir a los usuarios acceder a sus carpetas personales a través de Samba4"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75
|
|
||||||
msgid "Allowed users"
|
msgid "Allowed users"
|
||||||
msgstr "Usuarios permitidos"
|
msgstr "Usuarios permitidos"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Compartir como Apple Time-Machine"
|
msgstr "Compartir como Apple Time-Machine"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Navegable"
|
msgstr "Navegable"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Crear máscara"
|
msgstr "Crear máscara"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripción"
|
msgstr "Descripción"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Máscara de directorio"
|
msgstr "Máscara de directorio"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Desactivar el controlador de dominio de directorio activo"
|
msgstr "Desactivar el controlador de dominio de directorio activo"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Desactivar Netbios"
|
msgstr "Desactivar Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Desactivar Winbind"
|
msgstr "Desactivar Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Editar plantilla"
|
msgstr "Editar plantilla"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Editar la plantilla usada para generar la configuración de samba."
|
msgstr "Editar la plantilla usada para generar la configuración de samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "Activar compatibilidad de Samba con macOS"
|
msgstr "Activar compatibilidad de Samba con macOS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
|
@ -79,40 +74,54 @@ msgstr ""
|
||||||
"Activa la extensión AAPL de Apple globalmente y agrega opciones de "
|
"Activa la extensión AAPL de Apple globalmente y agrega opciones de "
|
||||||
"compatibilidad de macOS a todos los recursos compartidos."
|
"compatibilidad de macOS a todos los recursos compartidos."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Forzar Root"
|
msgstr "Forzar Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Configuración general"
|
msgstr "Configuración general"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "Sólo invitados"
|
msgstr "Sólo invitados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nombre de host"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "Heredar propietario"
|
msgstr "Heredar propietario"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Samba"
|
msgstr "Samba"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Ruta"
|
msgstr "Ruta"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -120,19 +129,15 @@ msgstr ""
|
||||||
"Por favor agregue directorios para compartir. Cada directorio hace "
|
"Por favor agregue directorios para compartir. Cada directorio hace "
|
||||||
"referencia a una carpeta en un dispositivo montado."
|
"referencia a una carpeta en un dispositivo montado."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Sólo lectura"
|
msgstr "Sólo lectura"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Compartir carpetas personales"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Directorios compartidos"
|
msgstr "Directorios compartidos"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -141,21 +146,33 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Esto es el contenido del archivo «/etc/samba/smb.conf.template» a partir del "
|
"Esto es el contenido del archivo «/etc/samba/smb.conf.template» a partir del "
|
||||||
"cual se generará su configuración de Samba. No deben cambiarse los valores "
|
"cual se generará su configuración de Samba. No deben cambiarse los valores "
|
||||||
"delimitados por plecas («|»); estos reciben sus valores de la pestaña «"
|
"delimitados por plecas («|»); estos reciben sus valores de la pestaña "
|
||||||
"Configuración general»."
|
"«Configuración general»."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Tamaño del Time-Machine en GB"
|
msgstr "Tamaño del Time-Machine en GB"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "Objetos vfs"
|
msgstr "Objetos vfs"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Grupo de trabajo"
|
msgstr "Grupo de trabajo"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Permitir a los usuarios acceder a sus carpetas personales a través de "
|
||||||
|
#~ "Samba4"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nombre de host"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Compartir carpetas personales"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Máscara para directorios nuevos"
|
#~ msgstr "Máscara para directorios nuevos"
|
||||||
|
|
||||||
|
|
|
@ -14,105 +14,113 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 3.9.1-dev\n"
|
"X-Generator: Weblate 3.9.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Autoriser les invités"
|
msgstr "Autoriser les invités"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Utilisateurs autorisés"
|
msgstr "Utilisateurs autorisés"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Autorisé à parcourir"
|
msgstr "Autorisé à parcourir"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Créer un masque"
|
msgstr "Créer un masque"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Masque de répertoire"
|
msgstr "Masque de répertoire"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Modifier le modèle"
|
msgstr "Modifier le modèle"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
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."
|
msgstr "Éditer le modèle utilisé pour générer la configuration Samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Forcer le Root"
|
msgstr "Forcer le Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Paramètres généraux"
|
msgstr "Paramètres généraux"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nom d'hôte"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Partages réseau"
|
msgstr "Partages réseau"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Chemin"
|
msgstr "Chemin"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -120,19 +128,15 @@ msgstr ""
|
||||||
"Veuillez ajouter des répertoires à partager. Chaque répertoire fait "
|
"Veuillez ajouter des répertoires à partager. Chaque répertoire fait "
|
||||||
"référence à un dossier sur un périphérique monté."
|
"référence à un dossier sur un périphérique monté."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Lecture seule"
|
msgstr "Lecture seule"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Partager les dossiers personnels"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Répertoires partagés"
|
msgstr "Répertoires partagés"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -144,18 +148,30 @@ msgstr ""
|
||||||
" (« | ») ne doivent pas être modifiées, elles proviennent de l'onglet "
|
" (« | ») ne doivent pas être modifiées, elles proviennent de l'onglet "
|
||||||
"« Paramètres généraux »."
|
"« Paramètres généraux »."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Groupe de travail"
|
msgstr "Groupe de travail"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nom d'hôte"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Partager les dossiers personnels"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Masque pour les nouveaux dossiers"
|
#~ msgstr "Masque pour les nouveaux dossiers"
|
||||||
|
|
||||||
|
|
|
@ -8,120 +8,126 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -129,14 +135,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -13,120 +13,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -134,15 +140,15 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -11,124 +11,128 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Vendég hozzáférés"
|
msgstr "Vendég hozzáférés"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Engedélyezett felhasználók"
|
msgstr "Engedélyezett felhasználók"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Létrehozási maszk"
|
msgstr "Létrehozási maszk"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Leírás"
|
msgstr "Leírás"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Könyvtár maszk"
|
msgstr "Könyvtár maszk"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Sablon szerkesztése"
|
msgstr "Sablon szerkesztése"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Itt szerkesztheti a sablont, ami a végleges samba konfiguráció "
|
"Itt szerkesztheti a sablont, ami a végleges samba konfiguráció "
|
||||||
"elkészítéséhez kerül felhasználásra."
|
"elkészítéséhez kerül felhasználásra."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Általános beállítások"
|
msgstr "Általános beállítások"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Gépnév"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Név"
|
msgstr "Név"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Hálózati megosztások"
|
msgstr "Hálózati megosztások"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Elérési út"
|
msgstr "Elérési út"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Csak olvasható"
|
msgstr "Csak olvasható"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Home könyvtárak megosztása"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Megosztott könyvtárak"
|
msgstr "Megosztott könyvtárak"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -140,18 +144,30 @@ msgstr ""
|
||||||
"közé zárt értékek módosítása nem szükséges, az értéküket az általános "
|
"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."
|
"beállítások fülről kapják."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Munkacsoport"
|
msgstr "Munkacsoport"
|
||||||
|
|
||||||
|
#~ 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."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Gépnév"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Home könyvtárak megosztása"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Új könyvtárak maszkja"
|
#~ msgstr "Új könyvtárak maszkja"
|
||||||
|
|
||||||
|
|
|
@ -13,105 +13,113 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permetti ospiti"
|
msgstr "Permetti ospiti"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Utenti ammessi"
|
msgstr "Utenti ammessi"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Crea maschera"
|
msgstr "Crea maschera"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrizione"
|
msgstr "Descrizione"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Maschera della cartella"
|
msgstr "Maschera della cartella"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Modifica Template"
|
msgstr "Modifica Template"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Modifica il template utilizzato per generare la configurazione di samba."
|
"Modifica il template utilizzato per generare la configurazione di samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Opzioni Generali"
|
msgstr "Opzioni Generali"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Hostname"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Condivisioni di rete"
|
msgstr "Condivisioni di rete"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Percorso"
|
msgstr "Percorso"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -119,19 +127,15 @@ msgstr ""
|
||||||
"Per favore aggiungi le directory da condividere. Ogni directory si riferisce "
|
"Per favore aggiungi le directory da condividere. Ogni directory si riferisce "
|
||||||
"a una cartella su un dispositivo montato."
|
"a una cartella su un dispositivo montato."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Solo lettura"
|
msgstr "Solo lettura"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Condividi cartelle home"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Cartelle Condivise"
|
msgstr "Cartelle Condivise"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -143,18 +147,30 @@ msgstr ""
|
||||||
"('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata "
|
"('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata "
|
||||||
"'Opzioni Generali'."
|
"'Opzioni Generali'."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Gruppo di lavoro"
|
msgstr "Gruppo di lavoro"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Hostname"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Condividi cartelle home"
|
||||||
|
|
||||||
#~ msgid "Browseable"
|
#~ msgid "Browseable"
|
||||||
#~ msgstr "Sfogliabile"
|
#~ msgstr "Sfogliabile"
|
||||||
|
|
||||||
|
|
|
@ -13,102 +13,112 @@ msgstr ""
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.1.1\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "ゲストアクセスを許可"
|
msgstr "ゲストアクセスを許可"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "許可されたユーザー"
|
msgstr "許可されたユーザー"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "マスクの作成"
|
msgstr "マスクの作成"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "説明"
|
msgstr "説明"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "ディレクトリのマスク"
|
msgstr "ディレクトリのマスク"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Active Directory ドメインコントローラを無効化"
|
msgstr "Active Directory ドメインコントローラを無効化"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Netbios を無効化"
|
msgstr "Netbios を無効化"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Winbind を無効化"
|
msgstr "Winbind を無効化"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "テンプレートの編集"
|
msgstr "テンプレートの編集"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "samba設定を生成するテンプレートを編集します。"
|
msgstr "samba設定を生成するテンプレートを編集します。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "一般設定"
|
msgstr "一般設定"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "ゲストのみ"
|
msgstr "ゲストのみ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "ホスト名"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "オーナーの継承"
|
msgstr "オーナーの継承"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名前"
|
msgstr "名前"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "ネットワーク共有"
|
msgstr "ネットワーク共有"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "パス"
|
msgstr "パス"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -116,19 +126,15 @@ msgstr ""
|
||||||
"共有するディレクトリを追加してください。マウントされたデバイス等のディレクト"
|
"共有するディレクトリを追加してください。マウントされたデバイス等のディレクト"
|
||||||
"リを設定し、公開することができます。"
|
"リを設定し、公開することができます。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "読み込みのみ"
|
msgstr "読み込みのみ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "ホームディレクトリの共有"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "共有ディレクトリ"
|
msgstr "共有ディレクトリ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -139,18 +145,28 @@ msgstr ""
|
||||||
"容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設"
|
"容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設"
|
||||||
"定'タブ内の値によって置き換えられます。"
|
"定'タブ内の値によって置き換えられます。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "ワークグループ"
|
msgstr "ワークグループ"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr "sambaを介してユーザーのホームディレクトリへのアクセスを許可します"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "ホスト名"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "ホームディレクトリの共有"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "新規ディレクトリのマスク"
|
#~ msgstr "新規ディレクトリのマスク"
|
||||||
|
|
||||||
|
|
|
@ -13,120 +13,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -134,15 +140,15 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -7,120 +7,126 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -128,14 +134,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,120 +4,126 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Tillat gjester"
|
msgstr "Tillat gjester"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Tillatte brukere"
|
msgstr "Tillatte brukere"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Opprett Maske"
|
msgstr "Opprett Maske"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivelse"
|
msgstr "Beskrivelse"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Katalog maske"
|
msgstr "Katalog maske"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Rediger Mal"
|
msgstr "Rediger Mal"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Rediger malen som brukes til å generere samba konfigurasjonen."
|
msgstr "Rediger malen som brukes til å generere samba konfigurasjonen."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Generelle Innstillinger"
|
msgstr "Generelle Innstillinger"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Vertsnavn"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Nettverks Mapper"
|
msgstr "Nettverks Mapper"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Fysisk bane"
|
msgstr "Fysisk bane"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Skrivebeskyttet"
|
msgstr "Skrivebeskyttet"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Del Hjemmekataloger"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Delte Kataloger"
|
msgstr "Delte Kataloger"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -128,18 +134,29 @@ msgstr ""
|
||||||
"konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke "
|
"konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke "
|
||||||
"endres. De får sine verdier fra 'Generelle Innstillinger' fanen."
|
"endres. De får sine verdier fra 'Generelle Innstillinger' fanen."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Arbeidsgruppe"
|
msgstr "Arbeidsgruppe"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Tillat systembrukere å nå sine hjemmekataloger via nettverks mapper."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Vertsnavn"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Del Hjemmekataloger"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Maske for nye kataloger"
|
#~ msgstr "Maske for nye kataloger"
|
||||||
|
|
||||||
|
|
|
@ -13,104 +13,112 @@ msgstr ""
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
"X-Generator: Weblate 3.10-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Zezwalaj Gościom"
|
msgstr "Zezwalaj Gościom"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Użytkownicy z prawem dostępu"
|
msgstr "Użytkownicy z prawem dostępu"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Utwórz maskę"
|
msgstr "Utwórz maskę"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Opis"
|
msgstr "Opis"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Maska katalogu"
|
msgstr "Maska katalogu"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Edytuj szablon"
|
msgstr "Edytuj szablon"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby."
|
msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Ustawienia główne"
|
msgstr "Ustawienia główne"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nazwa hosta"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nazwa"
|
msgstr "Nazwa"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Udziały sieciowe"
|
msgstr "Udziały sieciowe"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Ścieżka"
|
msgstr "Ścieżka"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -118,19 +126,15 @@ msgstr ""
|
||||||
"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu "
|
"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu "
|
||||||
"w zamontowanym urządzeniu."
|
"w zamontowanym urządzeniu."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Tylko do odczytu"
|
msgstr "Tylko do odczytu"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Udostępniaj katalogi domowe"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Udostępniane katalogi"
|
msgstr "Udostępniane katalogi"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -142,18 +146,30 @@ msgstr ""
|
||||||
"kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną "
|
"kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną "
|
||||||
"pobrane z zakładki \"Ustawienia ogólne\"."
|
"pobrane z zakładki \"Ustawienia ogólne\"."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Grupa robocza"
|
msgstr "Grupa robocza"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nazwa hosta"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Udostępniaj katalogi domowe"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Maska dla nowych katalogów"
|
#~ msgstr "Maska dla nowych katalogów"
|
||||||
|
|
||||||
|
|
|
@ -13,65 +13,59 @@ msgstr ""
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.1.1\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permitir convidados"
|
msgstr "Permitir convidados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Usuários permitidos"
|
msgstr "Usuários permitidos"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Compartilhamento Time Machine da Apple"
|
msgstr "Compartilhamento Time Machine da Apple"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Navegável"
|
msgstr "Navegável"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Máscara de criação"
|
msgstr "Máscara de criação"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Máscara do diretório"
|
msgstr "Máscara do diretório"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Desabilitar o Controlador de Domínios AD"
|
msgstr "Desabilitar o Controlador de Domínios AD"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Desabilitar o NetBIOS"
|
msgstr "Desabilitar o NetBIOS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Desabilitar o Winbind"
|
msgstr "Desabilitar o Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Editar modelo"
|
msgstr "Editar modelo"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
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."
|
msgstr "Edita o modelo que é usado para gerar a configuração do samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "Habilitar compartilhamentos compatíveis com MacOS"
|
msgstr "Habilitar compartilhamentos compatíveis com MacOS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
|
@ -79,40 +73,54 @@ msgstr ""
|
||||||
"Habilitar globalmente a extensão AAPL da Apple e adicione a opção de "
|
"Habilitar globalmente a extensão AAPL da Apple e adicione a opção de "
|
||||||
"compatibilidade com MacOS em todos os compartilhamentos."
|
"compatibilidade com MacOS em todos os compartilhamentos."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Forçar Usuário Root"
|
msgstr "Forçar Usuário Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Configurações Gerais"
|
msgstr "Configurações Gerais"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "Somente convidados"
|
msgstr "Somente convidados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nome do equipamento"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "Herdar o dono"
|
msgstr "Herdar o dono"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Compartilhamentos de Rede"
|
msgstr "Compartilhamentos de Rede"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Caminho"
|
msgstr "Caminho"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -120,19 +128,15 @@ msgstr ""
|
||||||
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
|
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
|
||||||
"uma porta em um dispositivo montado."
|
"uma porta em um dispositivo montado."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Somente leitura"
|
msgstr "Somente leitura"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Compartilhar diretórios home"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Diretórios Compartilhados"
|
msgstr "Diretórios Compartilhados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -144,18 +148,30 @@ msgstr ""
|
||||||
"não devem ser alterados. Estes valores serão obtidos a partir da aba "
|
"não devem ser alterados. Estes valores serão obtidos a partir da aba "
|
||||||
"'Configurações Gerais'."
|
"'Configurações Gerais'."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Tamanho do Time Machine em GB"
|
msgstr "Tamanho do Time Machine em GB"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "Objetos VFS"
|
msgstr "Objetos VFS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Grupo de trabalho"
|
msgstr "Grupo de trabalho"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nome do equipamento"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Compartilhar diretórios home"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Máscara para novos diretórios"
|
#~ msgstr "Máscara para novos diretórios"
|
||||||
|
|
||||||
|
|
|
@ -14,65 +14,59 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 3.10-dev\n"
|
"X-Generator: Weblate 3.10-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permitir Convidados"
|
msgstr "Permitir Convidados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Utilizadores Permitidos"
|
msgstr "Utilizadores Permitidos"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Compartilhamento da Time Machine da Apple"
|
msgstr "Compartilhamento da Time Machine da Apple"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Navegável"
|
msgstr "Navegável"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Criar máscara"
|
msgstr "Criar máscara"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Máscara do diretório"
|
msgstr "Máscara do diretório"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Desativar Controlador de Domínio de Active Directory"
|
msgstr "Desativar Controlador de Domínio de Active Directory"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Desativar Netbios"
|
msgstr "Desativar Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Desativar Winbind"
|
msgstr "Desativar Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Editar Modelo"
|
msgstr "Editar Modelo"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Editar o modelo que é utilizado para gerar a configuração do Samba."
|
msgstr "Editar o modelo que é utilizado para gerar a configuração do Samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "Ativar compartilhamentos compatíveis com macOS"
|
msgstr "Ativar compartilhamentos compatíveis com macOS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
|
@ -80,40 +74,54 @@ msgstr ""
|
||||||
"Ativa a extensão AAPL da Apple globalmente e adiciona opções de "
|
"Ativa a extensão AAPL da Apple globalmente e adiciona opções de "
|
||||||
"compatibilidade de macOS em todos os compartilhamentos."
|
"compatibilidade de macOS em todos os compartilhamentos."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Forçar Root"
|
msgstr "Forçar Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Configurações Gerais"
|
msgstr "Configurações Gerais"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "Somente convidados"
|
msgstr "Somente convidados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Nome do Host"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "Herdar proprietário"
|
msgstr "Herdar proprietário"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Partilhas da Rede"
|
msgstr "Partilhas da Rede"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Caminho"
|
msgstr "Caminho"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -121,19 +129,15 @@ msgstr ""
|
||||||
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
|
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
|
||||||
"uma pasta num aparelho montado."
|
"uma pasta num aparelho montado."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Apenas Leitura"
|
msgstr "Apenas Leitura"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Partilha de directórios home"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Directórios Partilhados"
|
msgstr "Directórios Partilhados"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -145,18 +149,30 @@ msgstr ""
|
||||||
"| não devem ser alterados. Eles recebem os valores do separador 'Definições "
|
"| não devem ser alterados. Eles recebem os valores do separador 'Definições "
|
||||||
"Gerais'."
|
"Gerais'."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Tamanho da Time Machine em GB"
|
msgstr "Tamanho da Time Machine em GB"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "Objetos Vfs"
|
msgstr "Objetos Vfs"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Grupo de trabalho"
|
msgstr "Grupo de trabalho"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Nome do Host"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Partilha de directórios home"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Máscara para novos directórios"
|
#~ msgstr "Máscara para novos directórios"
|
||||||
|
|
||||||
|
|
|
@ -12,122 +12,126 @@ msgstr ""
|
||||||
"20)) ? 1 : 2);;\n"
|
"20)) ? 1 : 2);;\n"
|
||||||
"X-Generator: Pootle 2.0.4\n"
|
"X-Generator: Pootle 2.0.4\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Permite oaspeti"
|
msgstr "Permite oaspeti"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Utilizatori acceptati"
|
msgstr "Utilizatori acceptati"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Creaza masca"
|
msgstr "Creaza masca"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descriere"
|
msgstr "Descriere"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Masca director"
|
msgstr "Masca director"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Editeaza sablon"
|
msgstr "Editeaza sablon"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Editeaza sablonul care e folosit pentru generarea configuratiei samba."
|
msgstr "Editeaza sablonul care e folosit pentru generarea configuratiei samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Setari generale"
|
msgstr "Setari generale"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Numele de host"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nume"
|
msgstr "Nume"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Partajari pe retea"
|
msgstr "Partajari pe retea"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Cale"
|
msgstr "Cale"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Doar citire"
|
msgstr "Doar citire"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Partajeaza directoarele proprii"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Directoare partajate"
|
msgstr "Directoare partajate"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -138,18 +142,30 @@ msgstr ""
|
||||||
"genereaza configuratia samba. Valorile dintre liniuta verticala ('|') n-ar "
|
"genereaza configuratia samba. Valorile dintre liniuta verticala ('|') n-ar "
|
||||||
"trebui schimbate, ele iau valorile direct din tab-ul de \"Setari generale\"."
|
"trebui schimbate, ele iau valorile direct din tab-ul de \"Setari generale\"."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Workgroup"
|
msgstr "Workgroup"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Numele de host"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Partajeaza directoarele proprii"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Masca pentru directoarele noi"
|
#~ msgstr "Masca pentru directoarele noi"
|
||||||
|
|
||||||
|
|
|
@ -15,104 +15,112 @@ msgstr ""
|
||||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Разрешить гостевой вход"
|
msgstr "Разрешить гостевой вход"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Разрешенные пользователи"
|
msgstr "Разрешенные пользователи"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Создать маску"
|
msgstr "Создать маску"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Маска папок"
|
msgstr "Маска папок"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Настройка config файла"
|
msgstr "Настройка config файла"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Настройка config<br />файла samba."
|
msgstr "Настройка config<br />файла samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Основные настройки"
|
msgstr "Основные настройки"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Имя хоста"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Имя"
|
msgstr "Имя"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Сетевые ресурсы"
|
msgstr "Сетевые ресурсы"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Путь"
|
msgstr "Путь"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -120,19 +128,15 @@ msgstr ""
|
||||||
"Добавьте папки для совместного доступа. Каждая папка - соответствует разделу "
|
"Добавьте папки для совместного доступа. Каждая папка - соответствует разделу "
|
||||||
"на подключенном устройстве."
|
"на подключенном устройстве."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Только для чтения"
|
msgstr "Только для чтения"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Совместно использовать домашние папки"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Совместно используемые папки"
|
msgstr "Совместно используемые папки"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -144,18 +148,30 @@ msgstr ""
|
||||||
"('|'), не должны быть изменены.<br />Они будут автоматически заменены на "
|
"('|'), не должны быть изменены.<br />Они будут автоматически заменены на "
|
||||||
"значения со страницы 'Основные настройки'."
|
"значения со страницы 'Основные настройки'."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Рабочая группа"
|
msgstr "Рабочая группа"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Разрешить пользователям получать доступ к их домашним папкам, через "
|
||||||
|
#~ "локальную сеть."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Имя хоста"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Совместно использовать домашние папки"
|
||||||
|
|
||||||
#~ msgid "Browseable"
|
#~ msgid "Browseable"
|
||||||
#~ msgstr "Виден в списке доступных ресурсов"
|
#~ msgstr "Виден в списке доступных ресурсов"
|
||||||
|
|
||||||
|
|
|
@ -8,120 +8,126 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -129,14 +135,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -9,121 +9,127 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Tillåt gäster"
|
msgstr "Tillåt gäster"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Tillåtna användare"
|
msgstr "Tillåtna användare"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Skapa mask"
|
msgstr "Skapa mask"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivning"
|
msgstr "Beskrivning"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Mask för mapp"
|
msgstr "Mask för mapp"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Redigera mall"
|
msgstr "Redigera mall"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Redigera mallen som används för att generera konfigurationen för samba."
|
"Redigera mallen som används för att generera konfigurationen för samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Generella inställningar"
|
msgstr "Generella inställningar"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Värdnamn"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Namn"
|
msgstr "Namn"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Nätverksdelningar"
|
msgstr "Nätverksdelningar"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Genväg"
|
msgstr "Genväg"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Endast läsbar"
|
msgstr "Endast läsbar"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Dela hem-mappar"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Delade mappar"
|
msgstr "Delade mappar"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -131,18 +137,29 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Arbetsgrupp"
|
msgstr "Arbetsgrupp"
|
||||||
|
|
||||||
|
#~ 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"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Värdnamn"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Dela hem-mappar"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Mask för nya mappar"
|
#~ msgstr "Mask för nya mappar"
|
||||||
|
|
||||||
|
|
|
@ -1,120 +1,126 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -122,14 +128,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -8,120 +8,126 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -129,14 +135,14 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -9,65 +9,59 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Дозволити гостьовий вхід"
|
msgstr "Дозволити гостьовий вхід"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "Дозволені користувачі"
|
msgstr "Дозволені користувачі"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Частина \"Машини часу\" Apple"
|
msgstr "Частина \"Машини часу\" Apple"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "Дост. для перегл."
|
msgstr "Дост. для перегл."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Створити маску"
|
msgstr "Створити маску"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Опис"
|
msgstr "Опис"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Маска каталогу"
|
msgstr "Маска каталогу"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "Вимкнути контролер домену Active Directory"
|
msgstr "Вимкнути контролер домену Active Directory"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "Вимкнути Netbios"
|
msgstr "Вимкнути Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "Вимкнути Winbind"
|
msgstr "Вимкнути Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "Редагувати шаблон"
|
msgstr "Редагувати шаблон"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "Редагувати шаблон файлу конфігурації samba."
|
msgstr "Редагувати шаблон файлу конфігурації samba."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "Увімкнути спільні папки, сумісні з macOS"
|
msgstr "Увімкнути спільні папки, сумісні з macOS"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
|
@ -75,40 +69,54 @@ msgstr ""
|
||||||
"Увімкнути розширення Apple AAPL глобально і додавати параметри сумісності з "
|
"Увімкнути розширення Apple AAPL глобально і додавати параметри сумісності з "
|
||||||
"macOS для всіх спільних ресурсів."
|
"macOS для всіх спільних ресурсів."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "Примусов. Root"
|
msgstr "Примусов. Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Загальні параметри"
|
msgstr "Загальні параметри"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "Лише гості"
|
msgstr "Лише гості"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "Назва (ім'я) вузла"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "Успадков. власник"
|
msgstr "Успадков. власник"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Ім'я"
|
msgstr "Ім'я"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Спільні мережеві ресурси"
|
msgstr "Спільні мережеві ресурси"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "Шлях"
|
msgstr "Шлях"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
|
@ -116,38 +124,46 @@ msgstr ""
|
||||||
"Додайте каталоги для спільного доступу. Кожен каталог посилається на папку "
|
"Додайте каталоги для спільного доступу. Кожен каталог посилається на папку "
|
||||||
"на підключеному пристрої."
|
"на підключеному пристрої."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Тільки читання"
|
msgstr "Тільки читання"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Спільно використовувати домашні каталоги"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Спільні каталоги"
|
msgstr "Спільні каталоги"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
"('|') should not be changed. They get their values from the 'General "
|
"('|') should not be changed. They get their values from the 'General "
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Це вміст файлу '/etc/samba/smb.conf.template', з якого буде генеруватися "
|
"Це вміст файлу '/etc/samba/smb.conf.template', з якого буде генеруватися ваш "
|
||||||
"ваш файл конфігурації samba.<br />Значення, укладені в символи (\"|\") не "
|
"файл конфігурації samba.<br />Значення, укладені в символи (\"|\") не "
|
||||||
"повинні змінюватися.<br />Вони отримують свої значення з вкладки \"Загальні "
|
"повинні змінюватися.<br />Вони отримують свої значення з вкладки \"Загальні "
|
||||||
"параметри\"."
|
"параметри\"."
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Обсяг \"Машини часу\", ГБ"
|
msgstr "Обсяг \"Машини часу\", ГБ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "Об'єкти Vfs"
|
msgstr "Об'єкти Vfs"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Робоча група"
|
msgstr "Робоча група"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Дозволити користувачам системи досягати своїх домашніх каталогів через "
|
||||||
|
#~ "спільні мережеві ресурси"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "Назва (ім'я) вузла"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Спільно використовувати домашні каталоги"
|
||||||
|
|
|
@ -14,128 +14,131 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Pootle 1.1.0\n"
|
"X-Generator: Pootle 1.1.0\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "Cho phép khách"
|
msgstr "Cho phép khách"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
#, 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
|
#, fuzzy
|
||||||
msgid "Allowed users"
|
msgid "Allowed users"
|
||||||
msgstr "Người sử dụng được cho phép"
|
msgstr "Người sử dụng được cho phép"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "Tạo Mask"
|
msgstr "Tạo Mask"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Mô tả"
|
msgstr "Mô tả"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "Thư mục Mask"
|
msgstr "Thư mục Mask"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "tên máy chủ"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "Mạng chia sẻ"
|
msgstr "Mạng chia sẻ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "Chỉ đọc "
|
msgstr "Chỉ đọc "
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "Chia sẻ danh bạ chính"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "Thư mục chia sẻ"
|
msgstr "Thư mục chia sẻ"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -143,18 +146,31 @@ msgid ""
|
||||||
"Settings' tab."
|
"Settings' tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "Nhóm làm việc "
|
msgstr "Nhóm làm việc "
|
||||||
|
|
||||||
|
#, 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."
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "tên máy chủ"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "Chia sẻ danh bạ chính"
|
||||||
|
|
||||||
#~ msgid "Mask for new directories"
|
#~ msgid "Mask for new directories"
|
||||||
#~ msgstr "Mask cho thư mục mới"
|
#~ msgstr "Mask cho thư mục mới"
|
||||||
|
|
||||||
|
|
|
@ -17,120 +17,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 3.9\n"
|
"X-Generator: Weblate 3.9\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "允许匿名用户"
|
msgstr "允许匿名用户"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "允许用户"
|
msgstr "允许用户"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Apple Time-machine 共享"
|
msgstr "Apple Time-machine 共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "可浏览"
|
msgstr "可浏览"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "创建权限掩码"
|
msgstr "创建权限掩码"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "描述"
|
msgstr "描述"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "目录权限掩码"
|
msgstr "目录权限掩码"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "禁用 Active Directory 域控制器"
|
msgstr "禁用 Active Directory 域控制器"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "禁用 Netbios"
|
msgstr "禁用 Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "禁用 Winbind"
|
msgstr "禁用 Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "编辑模板"
|
msgstr "编辑模板"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "编辑用来生成 samba 设置的模板"
|
msgstr "编辑用来生成 samba 设置的模板"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "启用 macOS 兼容共享"
|
msgstr "启用 macOS 兼容共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr "全局启用 Apple 的 AAPL 扩展,并为所有共享添加 macOS 兼容性选项。"
|
msgstr "全局启用 Apple 的 AAPL 扩展,并为所有共享添加 macOS 兼容性选项。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "强制 Root"
|
msgstr "强制 Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "基本设置"
|
msgstr "基本设置"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "仅来宾用户"
|
msgstr "仅来宾用户"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "主机名"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "继承所有者"
|
msgstr "继承所有者"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "网络共享"
|
msgstr "网络共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "目录"
|
msgstr "目录"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
|
msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "只读"
|
msgstr "只读"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "共享家目录"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "共享目录"
|
msgstr "共享目录"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -140,18 +146,28 @@ msgstr ""
|
||||||
"这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道"
|
"这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道"
|
||||||
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
|
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Time-machine 大小(GB)"
|
msgstr "Time-machine 大小(GB)"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "VFS 对象"
|
msgstr "VFS 对象"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "工作组"
|
msgstr "工作组"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr "允许系统用户通过网络共享访问他们的家目录"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "主机名"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "共享家目录"
|
||||||
|
|
||||||
#~ msgid "Browseable"
|
#~ msgid "Browseable"
|
||||||
#~ msgstr "可浏览"
|
#~ msgstr "可浏览"
|
||||||
|
|
||||||
|
|
|
@ -16,120 +16,126 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
"X-Generator: Gtranslator 2.91.7\n"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:78
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:96
|
||||||
msgid "Allow guests"
|
msgid "Allow guests"
|
||||||
msgstr "允許匿名使用者"
|
msgstr "允許匿名使用者"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
|
||||||
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"
|
msgid "Allowed users"
|
||||||
msgstr "允許使用者"
|
msgstr "允許使用者"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:124
|
||||||
msgid "Apple Time-machine share"
|
msgid "Apple Time-machine share"
|
||||||
msgstr "Apple Time-machine 共享"
|
msgstr "Apple Time-machine 共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
|
||||||
msgid "Browse-able"
|
msgid "Browse-able"
|
||||||
msgstr "可瀏覽"
|
msgstr "可瀏覽"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:93
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
|
||||||
msgid "Create mask"
|
msgid "Create mask"
|
||||||
msgstr "建立權限掩碼"
|
msgstr "建立權限掩碼"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:38
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "描述"
|
msgstr "描述"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
|
||||||
msgid "Directory mask"
|
msgid "Directory mask"
|
||||||
msgstr "目錄權限掩碼"
|
msgstr "目錄權限掩碼"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
|
||||||
msgid "Disable Active Directory Domain Controller"
|
msgid "Disable Active Directory Domain Controller"
|
||||||
msgstr "禁用 Active Directory 域控制器"
|
msgstr "禁用 Active Directory 域控制器"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:48
|
||||||
msgid "Disable Netbios"
|
msgid "Disable Netbios"
|
||||||
msgstr "禁用 Netbios"
|
msgstr "禁用 Netbios"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:30
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
|
||||||
msgid "Disable Winbind"
|
msgid "Disable Winbind"
|
||||||
msgstr "禁用 Winbind"
|
msgstr "禁用 Winbind"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:9
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
|
||||||
msgid "Edit Template"
|
msgid "Edit Template"
|
||||||
msgstr "編輯模板"
|
msgstr "編輯模板"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:34
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
|
||||||
msgid "Edit the template that is used for generating the samba configuration."
|
msgid "Edit the template that is used for generating the samba configuration."
|
||||||
msgstr "編輯用來生成 samba 設定的模板"
|
msgstr "編輯用來生成 samba 設定的模板"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:44
|
||||||
msgid "Enable macOS compatible shares"
|
msgid "Enable macOS compatible shares"
|
||||||
msgstr "啟用 macOS 相容共享"
|
msgstr "啟用 macOS 相容共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
|
||||||
"to all shares."
|
"to all shares."
|
||||||
msgstr "全域性啟用 Apple 的 AAPL 擴充套件,併為所有共享新增 macOS 相容性選項。"
|
msgstr "全域性啟用 Apple 的 AAPL 擴充套件,併為所有共享新增 macOS 相容性選項。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:73
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:91
|
||||||
msgid "Force Root"
|
msgid "Force Root"
|
||||||
msgstr "強制 Root"
|
msgstr "強制 Root"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:8
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:41
|
||||||
|
msgid "Force synchronous I/O"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:29
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "基本設定"
|
msgstr "基本設定"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:101
|
||||||
msgid "Guests only"
|
msgid "Guests only"
|
||||||
msgstr "僅來賓使用者"
|
msgstr "僅來賓使用者"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:106
|
||||||
msgid "Hostname"
|
|
||||||
msgstr "主機名"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88
|
|
||||||
msgid "Inherit owner"
|
msgid "Inherit owner"
|
||||||
msgstr "繼承所有者"
|
msgstr "繼承所有者"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:57
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
|
||||||
|
msgid "Listen only on the given interface or, if unspecified, on lan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:75
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "共享名"
|
msgstr "共享名"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:12
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:21
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3
|
#: applications/luci-app-samba4/luasrc/controller/samba4.lua:10
|
||||||
msgid "Network Shares"
|
msgid "Network Shares"
|
||||||
msgstr "網路共享"
|
msgstr "網路共享"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
|
||||||
|
msgid ""
|
||||||
|
"On lower-end devices may increase speeds, by forceing synchronous I/O "
|
||||||
|
"instead of the default asynchronous."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:76
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
msgstr "目錄"
|
msgstr "目錄"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:52
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please add directories to share. Each directory refers to a folder on a "
|
"Please add directories to share. Each directory refers to a folder on a "
|
||||||
"mounted device."
|
"mounted device."
|
||||||
msgstr "請新增要共享的目錄。每個目錄指到已掛載裝置上的資料夾。"
|
msgstr "請新增要共享的目錄。每個目錄指到已掛載裝置上的資料夾。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:86
|
||||||
msgid "Read-only"
|
msgid "Read-only"
|
||||||
msgstr "只讀"
|
msgstr "只讀"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:70
|
||||||
msgid "Share home-directories"
|
|
||||||
msgstr "共享家目錄"
|
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51
|
|
||||||
msgid "Shared Directories"
|
msgid "Shared Directories"
|
||||||
msgstr "共享目錄"
|
msgstr "共享目錄"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the content of the file '/etc/samba/smb.conf.template' from which "
|
"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 "
|
"your samba configuration will be generated. Values enclosed by pipe symbols "
|
||||||
|
@ -139,18 +145,28 @@ msgstr ""
|
||||||
"這是將從其上生成 samba 配置的檔案“/etc/samba/smb.conf.template”的內容。由管道"
|
"這是將從其上生成 samba 配置的檔案“/etc/samba/smb.conf.template”的內容。由管道"
|
||||||
"符(“|”)包圍的值不應更改。它們將從“常規設定”標籤中獲取其值。"
|
"符(“|”)包圍的值不應更改。它們將從“常規設定”標籤中獲取其值。"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
|
||||||
msgid "Time-machine size in GB"
|
msgid "Time-machine size in GB"
|
||||||
msgstr "Time-machine 大小(GB)"
|
msgstr "Time-machine 大小(GB)"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
|
||||||
msgid "Vfs objects"
|
msgid "Vfs objects"
|
||||||
msgstr "VFS 物件"
|
msgstr "VFS 物件"
|
||||||
|
|
||||||
#: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:13
|
#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
|
||||||
msgid "Workgroup"
|
msgid "Workgroup"
|
||||||
msgstr "工作組"
|
msgstr "工作組"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Allow system users to reach their home directories via network shares"
|
||||||
|
#~ msgstr "允許系統使用者通過網路共享訪問他們的家目錄"
|
||||||
|
|
||||||
|
#~ msgid "Hostname"
|
||||||
|
#~ msgstr "主機名"
|
||||||
|
|
||||||
|
#~ msgid "Share home-directories"
|
||||||
|
#~ msgstr "共享家目錄"
|
||||||
|
|
||||||
#~ msgid "Browseable"
|
#~ msgid "Browseable"
|
||||||
#~ msgstr "可瀏覽"
|
#~ msgstr "可瀏覽"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"luci-app-samba4": {
|
||||||
|
"description": "Grant access to LuCI app samba4",
|
||||||
|
"read": {
|
||||||
|
"file": {
|
||||||
|
"/etc/samba/smb.conf.template": [ "read" ],
|
||||||
|
"/usr/sbin/smbd": [ "exec" ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"write": {
|
||||||
|
"file": {
|
||||||
|
"/etc/samba/smb.conf.template": [ "write" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue