diff options
Diffstat (limited to 'applications/luci-app-cifsd')
32 files changed, 2972 insertions, 0 deletions
diff --git a/applications/luci-app-cifsd/Makefile b/applications/luci-app-cifsd/Makefile new file mode 100644 index 0000000000..ef725a7050 --- /dev/null +++ b/applications/luci-app-cifsd/Makefile @@ -0,0 +1,10 @@ +# This is free software, licensed under the Apache License, Version 2.0 . + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=Network Shares - CIFSD CIFS/SMB kernel fileserver +LUCI_DEPENDS:=+cifsd-tools + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js b/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js new file mode 100644 index 0000000000..7c75b85d71 --- /dev/null +++ b/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js @@ -0,0 +1,96 @@ +'use strict'; +'require fs'; +'require form'; +'require tools.widgets as widgets'; + +return L.view.extend({ + load: function() { + return Promise.all([ + L.resolveDefault(fs.stat('/sbin/block'), null), + L.resolveDefault(fs.stat('/etc/config/fstab'), null), + ]); + }, + render: function(stats) { + var m, s, o; + + m = new form.Map('cifsd', _('Network Shares')); + + s = m.section(form.TypedSection, 'globals'); + s.anonymous = true; + + s.tab('general', _('General Settings')); + s.tab('template', _('Edit Template')); + + s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'), + _('Listen only on the given interface or, if unspecified, on lan')); + + o = s.taboption('general', form.Value, 'workgroup', _('Workgroup')); + o.placeholder = 'WORKGROUP'; + + o = s.taboption('general', form.Value, 'description', _('Description')); + o.placeholder = 'Cifsd on OpenWrt'; + + o = s.taboption('template', form.TextValue, '_tmpl', + _('Edit the template that is used for generating the cifsd configuration.'), + _("This is the content of the file '/etc/cifs/smb.conf.template' from which your cifsd configuration will be generated. \ + Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab.")); + o.rows = 20; + o.cfgvalue = function(section_id) { + return fs.trimmed('/etc/cifs/smb.conf.template'); + }; + o.write = function(section_id, formvalue) { + return fs.write('/etc/cifs/smb.conf.template', formvalue.trim().replace(/\r\n/g, '\n') + '\n'); + }; + + + s = m.section(form.TableSection, 'share', _('Shared Directories'), + _('Please add directories to share. Each directory refers to a folder on a mounted device.')); + s.anonymous = true; + s.addremove = true; + + s.option(form.Value, 'name', _('Name')); + o = s.option(form.Value, 'path', _('Path')); + if (stats[0] && stats[1]) { + o.titleref = L.url('admin', 'system', 'mounts'); + } + + o = s.option(form.Flag, 'browseable', _('Browse-able')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'yes'; + + o = s.option(form.Flag, 'read_only', _('Read-only')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'yes'; + + s.option(form.Flag, 'force_root', _('Force Root')); + + o = s.option(form.Value, 'users', _('Allowed users')); + o.rmempty = true; + + o = s.option(form.Flag, 'guest_ok', _('Allow guests')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'no'; + + o = s.option(form.Flag, 'inherit_owner', _('Inherit owner')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'no'; + + s.option(form.Flag, 'hide_dot_files', _('Hide dot files')); + + o = s.option(form.Value, 'create_mask', _('Create mask')); + o.rmempty = true; + o.maxlength = 4; + o.placeholder = '0666'; + + o = s.option(form.Value, 'dir_mask', _('Directory mask')); + o.rmempty = true; + o.maxlength = 4; + o.placeholder = '0777'; + + return m.render(); + } +}); diff --git a/applications/luci-app-cifsd/luasrc/controller/cifsd.lua b/applications/luci-app-cifsd/luasrc/controller/cifsd.lua new file mode 100644 index 0000000000..de3f9b0f92 --- /dev/null +++ b/applications/luci-app-cifsd/luasrc/controller/cifsd.lua @@ -0,0 +1,11 @@ +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.cifsd", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/cifsd") then + return + end + + entry({"admin", "services", "cifsd"}, view("cifsd"), _("Network Shares")).dependent = true +end diff --git a/applications/luci-app-cifsd/po/ca/cifsd.po b/applications/luci-app-cifsd/po/ca/cifsd.po new file mode 100644 index 0000000000..497900c999 --- /dev/null +++ b/applications/luci-app-cifsd/po/ca/cifsd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-20 13:09+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/ca/>\n" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1-dev\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "Descripció" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "Nom" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/cs/cifsd.po b/applications/luci-app-cifsd/po/cs/cifsd.po new file mode 100644 index 0000000000..dc756a6fd4 --- /dev/null +++ b/applications/luci-app-cifsd/po/cs/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: cs\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/de/cifsd.po b/applications/luci-app-cifsd/po/de/cifsd.po new file mode 100644 index 0000000000..e6b80a26ff --- /dev/null +++ b/applications/luci-app-cifsd/po/de/cifsd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-20 01:49+0000\n" +"Last-Translator: Paul Spooren <mail@aparcar.org>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/de/>\n" +"Language: de\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1-dev\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "Gastzugang" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "Legitimierte Benutzer" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "Durchsuchbar" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "Berechtigungs-maske für neue Dateien" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "Beschreibung" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "Verzeichnis-maske" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "Template bearbeiten" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "Besitzer Erben" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "Schnittstelle" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "Name" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "Netzwerk-freigaben" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "Pfad" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "Nur Lesen" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "Freigegebene Verzeichnisse" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "Arbeitsgruppe" diff --git a/applications/luci-app-cifsd/po/el/cifsd.po b/applications/luci-app-cifsd/po/el/cifsd.po new file mode 100644 index 0000000000..28e22f5301 --- /dev/null +++ b/applications/luci-app-cifsd/po/el/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: el\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/en/cifsd.po b/applications/luci-app-cifsd/po/en/cifsd.po new file mode 100644 index 0000000000..c56c14bed5 --- /dev/null +++ b/applications/luci-app-cifsd/po/en/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/es/cifsd.po b/applications/luci-app-cifsd/po/es/cifsd.po new file mode 100644 index 0000000000..16c01530c4 --- /dev/null +++ b/applications/luci-app-cifsd/po/es/cifsd.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-16 16:58-0300\n" +"PO-Revision-Date: 2019-10-16 17:07-0300\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "Permitir invitados" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "Usuarios permitidos" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "Navegable" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "Crear máscara" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "Descripción" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "Máscara de directorio" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "Editar plantilla" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Edite la plantilla que se utiliza para generar la configuración de samba." + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "Forzar Root" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "Configuración general" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "Ocultar archivos pequeños" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "Heredar propietario" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "Escuche solo en la interfaz dada o, si no se especifica, en lan" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "Nombre" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "CIFSD" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "Ruta" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Por favor agregue directorios para compartir. Cada directorio hace " +"referencia a una carpeta en un dispositivo montado." + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "Solo lectura" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "Directorios compartidos" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Este es el contenido del archivo '/etc/cifs/smb.conf.template' a partir del " +"cual se generará su configuración de samba. Los valores encerrados por " +"símbolos de tubería ('|') no deben cambiarse. Obtienen sus valores de la " +"pestaña 'Configuración general'." + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "Grupo de trabajo" diff --git a/applications/luci-app-cifsd/po/fr/cifsd.po b/applications/luci-app-cifsd/po/fr/cifsd.po new file mode 100644 index 0000000000..80958ecb09 --- /dev/null +++ b/applications/luci-app-cifsd/po/fr/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: fr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/he/cifsd.po b/applications/luci-app-cifsd/po/he/cifsd.po new file mode 100644 index 0000000000..cd3a92b882 --- /dev/null +++ b/applications/luci-app-cifsd/po/he/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/hi/cifsd.po b/applications/luci-app-cifsd/po/hi/cifsd.po new file mode 100644 index 0000000000..9a55929247 --- /dev/null +++ b/applications/luci-app-cifsd/po/hi/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/hu/cifsd.po b/applications/luci-app-cifsd/po/hu/cifsd.po new file mode 100644 index 0000000000..26a5ac5965 --- /dev/null +++ b/applications/luci-app-cifsd/po/hu/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: hu\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/it/cifsd.po b/applications/luci-app-cifsd/po/it/cifsd.po new file mode 100644 index 0000000000..9ad84b62ad --- /dev/null +++ b/applications/luci-app-cifsd/po/it/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: it\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/ja/cifsd.po b/applications/luci-app-cifsd/po/ja/cifsd.po new file mode 100644 index 0000000000..99acfe4bab --- /dev/null +++ b/applications/luci-app-cifsd/po/ja/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: ja\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/ko/cifsd.po b/applications/luci-app-cifsd/po/ko/cifsd.po new file mode 100644 index 0000000000..0e43756963 --- /dev/null +++ b/applications/luci-app-cifsd/po/ko/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/ms/cifsd.po b/applications/luci-app-cifsd/po/ms/cifsd.po new file mode 100644 index 0000000000..b84606e334 --- /dev/null +++ b/applications/luci-app-cifsd/po/ms/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/nb_NO/cifsd.po b/applications/luci-app-cifsd/po/nb_NO/cifsd.po new file mode 100644 index 0000000000..99c21378ad --- /dev/null +++ b/applications/luci-app-cifsd/po/nb_NO/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/pl/cifsd.po b/applications/luci-app-cifsd/po/pl/cifsd.po new file mode 100644 index 0000000000..d00e2d346e --- /dev/null +++ b/applications/luci-app-cifsd/po/pl/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/pt/cifsd.po b/applications/luci-app-cifsd/po/pt/cifsd.po new file mode 100644 index 0000000000..7cad51fc24 --- /dev/null +++ b/applications/luci-app-cifsd/po/pt/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: pt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/pt_BR/cifsd.po b/applications/luci-app-cifsd/po/pt_BR/cifsd.po new file mode 100644 index 0000000000..75e907cefe --- /dev/null +++ b/applications/luci-app-cifsd/po/pt_BR/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: pt_BR\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/ro/cifsd.po b/applications/luci-app-cifsd/po/ro/cifsd.po new file mode 100644 index 0000000000..16c458e46a --- /dev/null +++ b/applications/luci-app-cifsd/po/ro/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/ru/cifsd.po b/applications/luci-app-cifsd/po/ru/cifsd.po new file mode 100644 index 0000000000..113441d700 --- /dev/null +++ b/applications/luci-app-cifsd/po/ru/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: ru\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/sk/cifsd.po b/applications/luci-app-cifsd/po/sk/cifsd.po new file mode 100644 index 0000000000..2851783e4a --- /dev/null +++ b/applications/luci-app-cifsd/po/sk/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: sk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/sv/cifsd.po b/applications/luci-app-cifsd/po/sv/cifsd.po new file mode 100644 index 0000000000..e0d26d929b --- /dev/null +++ b/applications/luci-app-cifsd/po/sv/cifsd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-17 20:23+0000\n" +"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/sv/>\n" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.9.1-dev\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "Tillåt gäster" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "Tillåtna användare" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "Skapa mask" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "Beskrivning" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "Mask för mapp" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "Redigera mall" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "Generella inställningar" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "Gränssnitt" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "Namn" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "Nätverksdelningar" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "Genväg" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "Endast läsbar" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "Delade mappar" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "Arbetsgrupp" diff --git a/applications/luci-app-cifsd/po/templates/cifsd.pot b/applications/luci-app-cifsd/po/templates/cifsd.pot new file mode 100644 index 0000000000..f62fa13ba1 --- /dev/null +++ b/applications/luci-app-cifsd/po/templates/cifsd.pot @@ -0,0 +1,97 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/tr/cifsd.po b/applications/luci-app-cifsd/po/tr/cifsd.po new file mode 100644 index 0000000000..b1c538f3aa --- /dev/null +++ b/applications/luci-app-cifsd/po/tr/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: tr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/uk/cifsd.po b/applications/luci-app-cifsd/po/uk/cifsd.po new file mode 100644 index 0000000000..a9e38e8303 --- /dev/null +++ b/applications/luci-app-cifsd/po/uk/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/vi/cifsd.po b/applications/luci-app-cifsd/po/vi/cifsd.po new file mode 100644 index 0000000000..8d3b48297c --- /dev/null +++ b/applications/luci-app-cifsd/po/vi/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/po/zh-cn/cifsd.po b/applications/luci-app-cifsd/po/zh-cn/cifsd.po new file mode 100644 index 0000000000..b27ba7c83e --- /dev/null +++ b/applications/luci-app-cifsd/po/zh-cn/cifsd.po @@ -0,0 +1,110 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: Richard Yu <yurichard3839@gmail.com>\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_CN\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "允许匿名用户" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "允许用户" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "可浏览" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "创建权限掩码" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "目录权限掩码" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "编辑模板" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "编辑用来生成 cifsd 设置的模板。" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "强制 Root" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "基本设置" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "继承所有者" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "接口" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "仅监听指定的接口,未指定则监听 lan" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "共享名" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "网络共享" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "目录" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "只读" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "共享目录" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"这是将从其上生成 cifsd 配置的文件“/etc/cifs/smb.conf.template”的内容。由管道" +"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "工作组" diff --git a/applications/luci-app-cifsd/po/zh-tw/cifsd.po b/applications/luci-app-cifsd/po/zh-tw/cifsd.po new file mode 100644 index 0000000000..eae5803805 --- /dev/null +++ b/applications/luci-app-cifsd/po/zh-tw/cifsd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:72 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:69 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30 +msgid "Description" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:22 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:34 +msgid "Edit the template that is used for generating the cifsd configuration." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:21 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:82 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:77 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:24 +msgid "Interface" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:25 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51 +msgid "Name" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:16 +#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52 +msgid "Path" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:47 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:46 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35 +msgid "" +"This is the content of the file '/etc/cifs/smb.conf.template' from which " +"your cifsd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json b/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json new file mode 100644 index 0000000000..6efebe98e1 --- /dev/null +++ b/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json @@ -0,0 +1,15 @@ +{ + "luci-app-cifsd": { + "description": "Grant access to LuCI app cifsd", + "read": { + "file": { + "/etc/cifs/smb.conf.template": [ "read" ] + } + }, + "write": { + "file": { + "/etc/cifs/smb.conf.template": [ "write" ] + } + } + } +} |