luci-app-cifsd: enable cifsd app

* enable luci cifsd app
* add version info
* enable guest ok default
* refresh translations

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
This commit is contained in:
Andy Walsh 2019-11-20 22:39:25 +01:00
parent c0b9fbbd9a
commit 651be92ba6
32 changed files with 710 additions and 677 deletions

View file

@ -3,7 +3,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
LUCI_TITLE:=Network Shares - CIFSD CIFS/SMB kernel fileserver LUCI_TITLE:=Network Shares - CIFSD CIFS/SMB kernel fileserver
LUCI_DEPENDS:=+cifsd-tools @BROKEN LUCI_DEPENDS:=+cifsd-tools
include ../../luci.mk include ../../luci.mk

View file

@ -8,14 +8,19 @@ return L.view.extend({
return Promise.all([ return Promise.all([
L.resolveDefault(fs.stat('/sbin/block'), null), L.resolveDefault(fs.stat('/sbin/block'), null),
L.resolveDefault(fs.stat('/etc/config/fstab'), null), L.resolveDefault(fs.stat('/etc/config/fstab'), null),
L.resolveDefault(fs.exec("cifsd", ["-h"]), {}).then(function(res) { return L.toArray((res.stderr || '').match(/version : (\S+ \S+)/))[1] }),
]); ]);
}, },
render: function(stats) { render: function(stats) {
var m, s, o; var m, s, o, v;
v = '';
m = new form.Map('cifsd', _('Network Shares')); m = new form.Map('cifsd', _('Network Shares'));
s = m.section(form.TypedSection, 'globals'); if (stats[2]) {
v = 'Version ' + stats[2].trim();
}
s = m.section(form.TypedSection, 'globals', 'Cifsd ' + v);
s.anonymous = true; s.anonymous = true;
s.tab('general', _('General Settings')); s.tab('general', _('General Settings'));
@ -72,7 +77,7 @@ return L.view.extend({
o = s.option(form.Flag, 'guest_ok', _('Allow guests')); o = s.option(form.Flag, 'guest_ok', _('Allow guests'));
o.enabled = 'yes'; o.enabled = 'yes';
o.disabled = 'no'; o.disabled = 'no';
o.default = 'no'; o.default = 'yes';
o = s.option(form.Flag, 'inherit_owner', _('Inherit owner')); o = s.option(form.Flag, 'inherit_owner', _('Inherit owner'));
o.enabled = 'yes'; o.enabled = 'yes';

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -10,90 +10,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Descripció" msgstr "Descripció"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -101,6 +101,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -1,85 +1,90 @@
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2019-10-23 09:54+0000\n" "PO-Revision-Date: 2019-11-07 08:28+0000\n"
"Last-Translator: Paul Spooren <mail@aparcar.org>\n" "Last-Translator: Kiste <christian.buschau+weblate@mailbox.org>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscifsd/de/>\n" "luciapplicationscifsd/de/>\n"
"Language: de\n" "Language: de\n"
"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"
"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.10-dev\n"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "Gastzugang" msgstr "Gastzugang"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "Legitimierte Benutzer" msgstr "Legitimierte Benutzer"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "Durchsuchbar" msgstr "Durchsuchbar"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "Berechtigungs-maske für neue Dateien" msgstr "Berechtigungs-maske für neue Dateien"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "Verzeichnis-maske" msgstr "Verzeichnis-maske"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "Template bearbeiten" msgstr "Template bearbeiten"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
"Bearbeite die Vorlage, die für die Erstellung der cifsd-Konfiguration "
"verwendet wird."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr "Root erzwingen"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Allgemeine Einstellungen" msgstr "Allgemeine Einstellungen"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr "Dotfiles ausblenden"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "Besitzer Erben" msgstr "Besitzer Erben"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Schnittstelle" msgstr "Schnittstelle"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
#, fuzzy
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
"Nur an die gegebene Schnittstelle binden, wenn nicht spezifiziert an lan "
"binden"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "Netzwerk-freigaben" msgstr "Netzwerk-freigaben"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "Pfad" msgstr "Pfad"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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."
@ -87,22 +92,26 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "Nur Lesen" msgstr "Nur Lesen"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "Freigegebene Verzeichnisse" msgstr "Freigegebene Verzeichnisse"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd 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 ""
"Dies ist der Inhalt der Datei '/etc/cifs/smb.conf.template', aus der die "
"cifsd-Konfiguration generiert wird. Werte, die durch Pipes ('|') "
"eingeschlossen sind, sollten nicht verändert werden. Sie erhalten ihre Werte "
"vom Tab 'Allgemeine Einstellungen'."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "Arbeitsgruppe" msgstr "Arbeitsgruppe"

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"POT-Creation-Date: 2019-10-16 16:58-0300\n" "POT-Creation-Date: 2019-10-16 16:58-0300\n"
"PO-Revision-Date: 2019-10-31 02:45+0000\n" "PO-Revision-Date: 2019-11-13 23:05+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscifsd/es/>\n" "luciapplicationscifsd/es/>\n"
@ -13,76 +13,76 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "Permitir invitados" msgstr "Permitir invitados"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "Usuarios permitidos" msgstr "Usuarios permitidos"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "Navegable" msgstr "Navegable"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "Crear máscara" msgstr "Crear máscara"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Descripción" msgstr "Descripción"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "Máscara de directorio" msgstr "Máscara de directorio"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "Editar plantilla" msgstr "Editar plantilla"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr "Edite la plantilla que se utiliza para generar la configuración cifsd."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "Forzar Root" msgstr "Forzar Root"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Configuración general" msgstr "Configuración general"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "Ocultar archivos pequeños" msgstr "Ocultar archivos pequeños"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "Heredar propietario" msgstr "Heredar propietario"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Interfaz" msgstr "Interfaz"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "Escuche solo en la interfaz dada o, si no se especifica, en lan" msgstr "Escuche solo en la interfaz dada o, si no se especifica, en lan"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "Samba" msgstr "Samba"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "Ruta" msgstr "Ruta"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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."
@ -90,23 +90,27 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "Solo lectura" msgstr "Solo lectura"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "Directorios compartidos" msgstr "Directorios compartidos"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd 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 ""
"Este es el contenido del archivo '/etc/cifs/smb.conf.template' desde el cual "
"se generará su configuración cifsd. Los valores encerrados por símbolos de "
"tubería ('|') no deben cambiarse. Obtienen sus valores de la pestaña "
"'Configuración general'."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "Grupo de trabajo" msgstr "Grupo de trabajo"

View file

@ -10,80 +10,80 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "Autoriser les invités" msgstr "Autoriser les invités"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "Utilisateurs autorisés" msgstr "Utilisateurs autorisés"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
#, fuzzy #, fuzzy
msgid "Browse-able" msgid "Browse-able"
msgstr "Autorisé à parcourir" msgstr "Autorisé à parcourir"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "Créer un masque" msgstr "Créer un masque"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Description" msgstr "Description"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "Masque de répertoire" msgstr "Masque de répertoire"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "Modifier le modèle" msgstr "Modifier le modèle"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
"Modifier le modèle qui est utilisé pour la génération de a configuration de " "Modifier le modèle qui est utilisé pour la génération de a configuration de "
"cifsd." "cifsd."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "Forcer le Root" msgstr "Forcer le Root"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Paramètres généraux" msgstr "Paramètres généraux"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Interface" msgstr "Interface"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
"Écoute uniquement l'interface donnée, ou si non spécifiée, le réseau local" "Écoute uniquement l'interface donnée, ou si non spécifiée, le réseau local"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "Partages réseau" msgstr "Partages réseau"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "Chemin" msgstr "Chemin"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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."
@ -91,15 +91,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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "Lecture seule" msgstr "Lecture seule"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "Répertoires partagés" msgstr "Répertoires partagés"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -107,6 +107,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "Groupe de travail" msgstr "Groupe de travail"

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -10,90 +10,90 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1\n" "X-Generator: Weblate 3.9.1\n"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Beskrivelse" msgstr "Beskrivelse"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -101,6 +101,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -1,100 +1,113 @@
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2019-11-13 21:11+0000\n"
"Last-Translator: Michal L <michalrmsmi@wp.pl>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscifsd/pl/>\n"
"Language: pl\n" "Language: pl\n"
"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"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr "Zezwalaj Gościom"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr "Użytkownicy z prawem dostępu"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
msgid "Create mask"
msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Description"
msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask"
msgstr "Utwórz maskę"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description"
msgstr "Opis"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr "Maska katalogu"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr "Edytuj szablon"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr "Edytuj szablon, który jest używany do generowania konfiguracji cifsd."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr "Ustawienia główne"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr "Interfejs"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr "Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na LANie"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr "Nazwa"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr "Udziały sieciowe"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path"
msgstr "Ścieżka"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
msgid "Path"
msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47
msgid "" 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 ""
"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu "
"w zamontowanym urządzeniu."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr "Tylko do odczytu"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr "Udostępniane katalogi"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd 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 ""
"To jest zawartość pliku '/etc/cifs/smb.conf.template', na podstawie którego "
"zostanie wygenerowana konfiguracja cifsd. Wartości otoczone symbolem kreski "
"pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną pobrane z "
"zakładki \"Ustawienia ogólne\"."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr "Grupa robocza"

View file

@ -10,76 +10,76 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "Permitir Convidados" msgstr "Permitir Convidados"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "Utilizadores Permitidos" msgstr "Utilizadores Permitidos"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "Navegável" msgstr "Navegável"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "Criar máscara" msgstr "Criar máscara"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "Máscara do diretório" msgstr "Máscara do diretório"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "Editar Modelo" msgstr "Editar Modelo"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "Editar o modelo que é usado para gerar a configuração cifsd." msgstr "Editar o modelo que é usado para gerar a configuração cifsd."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "Forçar Root" msgstr "Forçar Root"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Configurações Gerais" msgstr "Configurações Gerais"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "Ocultar ficheiros de ponto" msgstr "Ocultar ficheiros de ponto"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "Herdar proprietário" msgstr "Herdar proprietário"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Interface" msgstr "Interface"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "Ouvir apenas na interface indicada ou, se não especificado, na LAN" msgstr "Ouvir apenas na interface indicada ou, se não especificado, na LAN"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "Partilhas da Rede" msgstr "Partilhas da Rede"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "Caminho" msgstr "Caminho"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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."
@ -87,15 +87,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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "Apenas Leitura" msgstr "Apenas Leitura"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "Directórios Partilhados" msgstr "Directórios Partilhados"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -107,6 +107,6 @@ msgstr ""
"tubos ('|') não devem ser alterados. Eles obtêm os seus valores da aba " "tubos ('|') não devem ser alterados. Eles obtêm os seus valores da aba "
"'Configurações Gerais'." "'Configurações Gerais'."
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "Grupo de trabalho" msgstr "Grupo de trabalho"

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -10,90 +10,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "Tillåt gäster" msgstr "Tillåt gäster"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "Tillåtna användare" msgstr "Tillåtna användare"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "Skapa mask" msgstr "Skapa mask"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "Mask för mapp" msgstr "Mask för mapp"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "Redigera mall" msgstr "Redigera mall"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Generella inställningar" msgstr "Generella inställningar"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Gränssnitt" msgstr "Gränssnitt"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Namn" msgstr "Namn"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "Nätverksdelningar" msgstr "Nätverksdelningar"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "Genväg" msgstr "Genväg"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "Endast läsbar" msgstr "Endast läsbar"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "Delade mappar" msgstr "Delade mappar"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -101,6 +101,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "Arbetsgrupp" msgstr "Arbetsgrupp"

View file

@ -1,90 +1,90 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -92,6 +92,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -11,90 +11,90 @@ msgstr ""
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.9.1-dev\n" "X-Generator: Weblate 3.9.1-dev\n"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "Загальні параметри" msgstr "Загальні параметри"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "Інтерфейс" msgstr "Інтерфейс"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "Ім'я" msgstr "Ім'я"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -102,6 +102,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -1,101 +1,102 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: \n" "Project-Id-Version: \n"
"POT-Creation-Date: \n" "POT-Creation-Date: \n"
"PO-Revision-Date: \n" "PO-Revision-Date: 2019-11-13 23:05+0000\n"
"Language-Team: \n" "Last-Translator: Chen Minqiang <ptpt52@gmail.com>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationscifsd/zh_Hans/>\n"
"Language: zh-cn\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.4\n"
"Last-Translator: Richard Yu <yurichard3839@gmail.com>\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"Language: zh_CN\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "允许匿名用户" msgstr "允许匿名用户"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "允许用户" msgstr "允许用户"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "可浏览" msgstr "可浏览"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "创建权限掩码" msgstr "创建权限掩码"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "目录权限掩码" msgstr "目录权限掩码"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "编辑模板" msgstr "编辑模板"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "编辑用来生成 cifsd 设置的模板。" msgstr "编辑用来生成 cifsd 设置的模板。"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "强制 Root" msgstr "强制 Root"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "基本设置" msgstr "基本设置"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "继承所有者" msgstr "继承所有者"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "接口" msgstr "接口"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "仅监听指定的接口,未指定则监听 lan" msgstr "仅监听指定的接口,未指定则监听 lan"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "共享名" msgstr "名"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "网络共享" msgstr "网络共享"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "目录" msgstr "目录"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "只读" msgstr "只读"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "共享目录" msgstr "共享目录"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -105,6 +106,6 @@ msgstr ""
"这是将从其上生成 cifsd 配置的文件“/etc/cifs/smb.conf.template”的内容。由管道" "这是将从其上生成 cifsd 配置的文件“/etc/cifs/smb.conf.template”的内容。由管道"
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。" "符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "工作组" msgstr "工作组"

View file

@ -4,90 +4,90 @@ 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-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77
msgid "Allow guests" msgid "Allow guests"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:74
msgid "Allowed users" msgid "Allowed users"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
msgid "Browse-able" msgid "Browse-able"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
msgid "Create mask" msgid "Create mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
msgid "Directory mask" msgid "Directory mask"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
msgid "Edit Template" msgid "Edit Template"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
msgid "Edit the template that is used for generating the cifsd configuration." msgid "Edit the template that is used for generating the cifsd configuration."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72
msgid "Force Root" msgid "Force Root"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:87
msgid "Hide dot files" msgid "Hide dot files"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82
msgid "Inherit owner" msgid "Inherit owner"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
msgid "Interface" msgid "Interface"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
msgid "Listen only on the given interface or, if unspecified, on lan" msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 #: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
msgid "Network Shares" msgid "Network Shares"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
msgid "Path" msgid "Path"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
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-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
msgid "Read-only" msgid "Read-only"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
msgid "Shared Directories" msgid "Shared Directories"
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
msgid "" msgid ""
"This is the content of the file '/etc/cifs/smb.conf.template' from which " "This is the content of the file '/etc/cifs/smb.conf.template' from which "
"your cifsd configuration will be generated. Values enclosed by pipe symbols " "your cifsd configuration will be generated. Values enclosed by pipe symbols "
@ -95,6 +95,6 @@ msgid ""
"Settings' tab." "Settings' tab."
msgstr "" msgstr ""
#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 #: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
msgid "Workgroup" msgid "Workgroup"
msgstr "" msgstr ""

View file

@ -3,7 +3,8 @@
"description": "Grant access to LuCI app cifsd", "description": "Grant access to LuCI app cifsd",
"read": { "read": {
"file": { "file": {
"/etc/cifs/smb.conf.template": [ "read" ] "/etc/cifs/smb.conf.template": [ "read" ],
"/usr/sbin/cifsd": [ "exec" ]
} }
}, },
"write": { "write": {