diff options
Diffstat (limited to 'applications/luci-app-smbd')
34 files changed, 3364 insertions, 0 deletions
diff --git a/applications/luci-app-smbd/Makefile b/applications/luci-app-smbd/Makefile new file mode 100644 index 0000000000..641bbd4764 --- /dev/null +++ b/applications/luci-app-smbd/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 - SMBD the SMB kernel fileserver +LUCI_DEPENDS:=+smbd-server + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js b/applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js new file mode 100644 index 0000000000..f1d8cf4808 --- /dev/null +++ b/applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js @@ -0,0 +1,112 @@ +'use strict'; +'require fs'; +'require form'; +'require tools.widgets as widgets'; + +return L.view.extend({ + load: function() { + return Promise.all([ + L.resolveDefault(fs.stat('/sbin/block'), null), + L.resolveDefault(fs.stat('/etc/config/fstab'), null), + L.resolveDefault(fs.exec('/usr/sbin/usmbd', ['-V']), {}).then(function(res) { return L.toArray((res.stdout || '').match(/version : (\S+)/))[1] }), + L.resolveDefault(fs.exec('/sbin/modinfo', ['smbd']), {}).then(function(res) { return L.toArray((res.stdout || '').match(/version:\t(\S+)/))[1] }), + ]); + }, + render: function(stats) { + var m, s, o, v; + v = ''; + + m = new form.Map('smbd', _('Network Shares')); + + if (stats[2]) { + v = stats[2].trim(); + } + if (stats[3]) { + v = v + ' Kmod: ' + stats[3].trim(); + } + s = m.section(form.TypedSection, 'globals', 'Smbd: ' + v); + s.anonymous = true; + + s.tab('general', _('General Settings')); + s.tab('template', _('Edit Template')); + + s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'), + _('Listen only on the given interface or, if unspecified, on lan')); + + o = s.taboption('general', form.Value, 'workgroup', _('Workgroup')); + o.placeholder = 'WORKGROUP'; + + o = s.taboption('general', form.Value, 'description', _('Description')); + o.placeholder = 'Smbd on OpenWrt'; + + o = s.taboption('template', form.TextValue, '_tmpl', + _('Edit the template that is used for generating the smbd configuration.'), + _("This is the content of the file '/etc/smbd/smb.conf.template' from which your smbd 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/smbd/smb.conf.template'); + }; + o.write = function(section_id, formvalue) { + return fs.write('/etc/smbd/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 = 'no'; // smb.conf default is 'yes' + o.rmempty = false; + + s.option(form.Flag, 'force_root', _('Force Root')); + + o = s.option(form.Value, 'users', _('Allowed users')); + o.rmempty = true; + + o = s.option(form.Flag, 'guest_ok', _('Allow guests')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'yes'; // smb.conf default is 'no' + o.rmempty = false; + + o = s.option(form.Flag, 'inherit_owner', _('Inherit owner')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'no'; + + o = s.option(form.Flag, 'hide_dot_files', _('Hide dot files')); + o.enabled = 'yes'; + o.disabled = 'no'; + o.default = 'yes'; + + o = s.option(form.Value, 'create_mask', _('Create mask')); + o.maxlength = 4; + o.default = '0666'; // smb.conf default is '0744' + o.placeholder = '0666'; + o.rmempty = false; + + o = s.option(form.Value, 'dir_mask', _('Directory mask')); + o.maxlength = 4; + o.default = '0777'; // smb.conf default is '0755' + o.placeholder = '0777'; + o.rmempty = false; + + return m.render(); + } +}); diff --git a/applications/luci-app-smbd/luasrc/controller/smbd.lua b/applications/luci-app-smbd/luasrc/controller/smbd.lua new file mode 100644 index 0000000000..2bf1b15780 --- /dev/null +++ b/applications/luci-app-smbd/luasrc/controller/smbd.lua @@ -0,0 +1,11 @@ +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.smbd", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/smbd") then + return + end + + entry({"admin", "services", "smbd"}, view("smbd"), _("Network Shares")).dependent = true +end diff --git a/applications/luci-app-smbd/po/bg/smbd.po b/applications/luci-app-smbd/po/bg/smbd.po new file mode 100644 index 0000000000..4638141cc6 --- /dev/null +++ b/applications/luci-app-smbd/po/bg/smbd.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/ca/smbd.po b/applications/luci-app-smbd/po/ca/smbd.po new file mode 100644 index 0000000000..e8ac0038f0 --- /dev/null +++ b/applications/luci-app-smbd/po/ca/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-10 12:24+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssmbd/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.10.1\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Descripció" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interfície" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nom" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/cs/smbd.po b/applications/luci-app-smbd/po/cs/smbd.po new file mode 100644 index 0000000000..bf46ce0b43 --- /dev/null +++ b/applications/luci-app-smbd/po/cs/smbd.po @@ -0,0 +1,111 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-03 08:26+0000\n" +"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/cs/>\n" +"Language: cs\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Povolení hosté" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Povolení uživatelé" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Možnost procházení" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Vytvořit masku" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Popis" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Maska adresáře" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Editovat šablonu" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "Editovat šablonu, která je použita pro generování konfigurace CIFSD." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Vynutit superuživatelský přístup" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Obecné nastavení" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Skrýt soubory začínající tečkou" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Zdědit vlastníka" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Rozhraní" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "Naslouchat pouze na daném rozhraní nebo, pokud není zadáno, v síti LAN" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Název" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Síťová sdílení" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Cesta" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Přidejte adresáře, které chcete sdílet. Každý adresář odkazuje na složku na " +"připojeném zařízení." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Pouze pro čtení" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Sdílené adresáře" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Toto je obsah souboru '/etc/smbd/smb.conf.template', ze kterého bude " +"vygenerována konfigurace CIFSD. Hodnoty ohraničené symbolem roury ('|') by " +"neměly být měněny, protože získají hodnoty ze záložky 'Obecná nastavení'." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Skupina" diff --git a/applications/luci-app-smbd/po/de/smbd.po b/applications/luci-app-smbd/po/de/smbd.po new file mode 100644 index 0000000000..cb2cd1dc79 --- /dev/null +++ b/applications/luci-app-smbd/po/de/smbd.po @@ -0,0 +1,116 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-25 13:58+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\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.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Gastzugang" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Legitimierte Benutzer" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Durchsuchbar" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Berechtigungs-maske für neue Dateien" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Beschreibung" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Verzeichnis-maske" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Template bearbeiten" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" +"Bearbeite die Vorlage, die für die Erstellung der smbd-Konfiguration " +"verwendet wird." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Root erzwingen" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Dotfiles ausblenden" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Besitzer Erben" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Schnittstelle" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" +"Nur auf die angegebene Schnittstelle reagieren oder, wenn nicht " +"spezifiziert, auf LAN" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Name" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Netzwerk-freigaben" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Pfad" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Bitte fügen Sie Verzeichnisse hinzu, die Sie freigeben möchten. Jedes " +"Verzeichnis bezieht sich auf einen Ordner auf einem bereitgestellten Gerät." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Nur Lesen" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Freigegebene Verzeichnisse" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Dies ist der Inhalt der Datei '/etc/smbd/smb.conf.template', aus der die " +"smbd-Konfiguration generiert wird. Werte, die durch Pipes ('|') " +"eingeschlossen sind, sollten nicht verändert werden. Sie erhalten ihre Werte " +"vom Tab 'Allgemeine Einstellungen'." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Arbeitsgruppe" diff --git a/applications/luci-app-smbd/po/el/smbd.po b/applications/luci-app-smbd/po/el/smbd.po new file mode 100644 index 0000000000..4423ff1189 --- /dev/null +++ b/applications/luci-app-smbd/po/el/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-25 13:58+0000\n" +"Last-Translator: Kostas Lampropoulos <labrok@otenet.gr>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/el/>\n" +"Language: el\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.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Περιγραφή" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Διεπαφή" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/en/smbd.po b/applications/luci-app-smbd/po/en/smbd.po new file mode 100644 index 0000000000..5ff2bcfa9e --- /dev/null +++ b/applications/luci-app-smbd/po/en/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/es/smbd.po b/applications/luci-app-smbd/po/es/smbd.po new file mode 100644 index 0000000000..94b07b24f3 --- /dev/null +++ b/applications/luci-app-smbd/po/es/smbd.po @@ -0,0 +1,131 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-16 16:58-0300\n" +"PO-Revision-Date: 2019-12-03 08:26+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/es/>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Permitir invitados" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Usuarios permitidos" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Navegable" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Crear máscara" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Descripción" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Máscara de directorio" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Editar plantilla" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "Edite la plantilla que se utiliza para generar la configuración smbd." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Forzar Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Configuración general" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Ocultar archivos pequeños" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Heredar propietario" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +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-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nombre" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Recursos compartidos de red" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Ruta" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +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-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Solo lectura" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Directorios compartidos" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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/smbd/smb.conf.template' desde el cual " +"se generará su configuración smbd. 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Grupo de trabajo" + +#~ 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." + +#~ msgid "" +#~ "This is the content of the file '/etc/smbd/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/smbd/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'." diff --git a/applications/luci-app-smbd/po/fr/smbd.po b/applications/luci-app-smbd/po/fr/smbd.po new file mode 100644 index 0000000000..c6aa3bb2fe --- /dev/null +++ b/applications/luci-app-smbd/po/fr/smbd.po @@ -0,0 +1,112 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-24 13:55+0000\n" +"Last-Translator: Nathan <bonnemainsnathan@gmail.com>\n" +"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/fr/>\n" +"Language: fr\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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Autoriser les invités" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Utilisateurs autorisés" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +#, fuzzy +msgid "Browse-able" +msgstr "Autorisé à parcourir" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Créer un masque" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Description" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Masque de répertoire" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Modifier le modèle" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" +"Modifier le modèle qui est utilisé pour la génération de a configuration de " +"smbd." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Forcer le Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Paramètres généraux" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" +"Écoute uniquement l'interface donnée, ou si non spécifiée, le réseau local" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nom" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Partages réseau" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Chemin" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Veuillez ajouter des répertoires à partager. Chaque répertoire fait " +"référence à un dossier sur un périphérique monté." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Lecture seule" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Répertoires partagés" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Groupe de travail" diff --git a/applications/luci-app-smbd/po/he/smbd.po b/applications/luci-app-smbd/po/he/smbd.po new file mode 100644 index 0000000000..0d8d339c35 --- /dev/null +++ b/applications/luci-app-smbd/po/he/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/hi/smbd.po b/applications/luci-app-smbd/po/hi/smbd.po new file mode 100644 index 0000000000..c412ea1026 --- /dev/null +++ b/applications/luci-app-smbd/po/hi/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/hu/smbd.po b/applications/luci-app-smbd/po/hu/smbd.po new file mode 100644 index 0000000000..d9517f5d14 --- /dev/null +++ b/applications/luci-app-smbd/po/hu/smbd.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-15 02:11+0000\n" +"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssmbd/hu/>\n" +"Language: hu\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.11-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Vendégek engedélyezése" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Engedélyezett felhasználók" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Tallózható" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Létrehozási maszk" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Leírás" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Könyvtármaszk" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Sablon szerkesztése" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" +"A sablon szerkesztése, amely az smbd beállítások előállításához lesz " +"használva." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Rendszergazda kényszerítése" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Általános beállítások" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Rejtett fájlok elrejtése" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Tulajdonos öröklése" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Csatoló" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" +"Figyelés csak a megadott csatolón, vagy a helyi hálózaton, ha nincs megadva" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Név" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Hálózati megosztások" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Útvonal" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Adja hozzá a megosztandó könyvtárakat. Minden egyes könyvtár egy csatolt " +"eszközön lévő mappára hivatkozik." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Csak olvasható" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Megosztott könyvtárak" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Ez az „/etc/smbd/smb.conf.template” fájl tartalma, amelyből a smbd " +"beállítások előállításra kerülnek. A csőszimbólumok („|”) között lévő " +"értékeket nem szabad megváltoztatni. Azok az „Általános beállítások” lapról " +"kapják az értékeiket." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Munkacsoport" diff --git a/applications/luci-app-smbd/po/it/smbd.po b/applications/luci-app-smbd/po/it/smbd.po new file mode 100644 index 0000000000..e2c8a3229d --- /dev/null +++ b/applications/luci-app-smbd/po/it/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-25 13:58+0000\n" +"Last-Translator: Ansuel Smith <ansuelsmth@gmail.com>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/it/>\n" +"Language: it\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.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/ja/smbd.po b/applications/luci-app-smbd/po/ja/smbd.po new file mode 100644 index 0000000000..908f821701 --- /dev/null +++ b/applications/luci-app-smbd/po/ja/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/ko/smbd.po b/applications/luci-app-smbd/po/ko/smbd.po new file mode 100644 index 0000000000..757f69ac2f --- /dev/null +++ b/applications/luci-app-smbd/po/ko/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/mr/smbd.po b/applications/luci-app-smbd/po/mr/smbd.po new file mode 100644 index 0000000000..fe8a7c11fe --- /dev/null +++ b/applications/luci-app-smbd/po/mr/smbd.po @@ -0,0 +1,108 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-28 03:17+0000\n" +"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" +"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/mr/>\n" +"Language: mr\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.10\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "अतिथींना परवानगी द्या" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "अनुमत वापरकर्ते" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "ब्राउझ-सक्षम" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "मुखवटा तयार करा" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "वर्णन" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "निर्देशिका मास्क" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "टेम्पलेट संपादित करा" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "सामान्य सेटिंग्ज" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "नाव" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "नेटवर्क शेअर्स" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "पथ" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"कृपया सामायिक करण्यासाठी निर्देशिका जोडा. प्रत्येक निर्देशिका माउंट केलेल्या डिव्हाइसवरील " +"फोल्डरचा संदर्भ देते." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "केवळ-वाचनीय" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "सामायिक निर्देशिका" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "कार्यसमूह" diff --git a/applications/luci-app-smbd/po/ms/smbd.po b/applications/luci-app-smbd/po/ms/smbd.po new file mode 100644 index 0000000000..367293c28e --- /dev/null +++ b/applications/luci-app-smbd/po/ms/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-18 04:21+0000\n" +"Last-Translator: Pusak Hitam <thegame.gamesky@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/ms/>\n" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Keterangan" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/nb_NO/smbd.po b/applications/luci-app-smbd/po/nb_NO/smbd.po new file mode 100644 index 0000000000..a5efb7fe9e --- /dev/null +++ b/applications/luci-app-smbd/po/nb_NO/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-10-30 03:22+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/nb_NO/>\n" +"Language: nb_NO\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\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Beskrivelse" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/pl/smbd.po b/applications/luci-app-smbd/po/pl/smbd.po new file mode 100644 index 0000000000..8caf7fdac0 --- /dev/null +++ b/applications/luci-app-smbd/po/pl/smbd.po @@ -0,0 +1,113 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-14 15:23+0000\n" +"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssmbd/pl/>\n" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.11-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Zezwól gościom" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Użytkownicy z prawem dostępu" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Możliwe do przeglądania" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Utwórz maskę" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Opis" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Maska katalogu" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Edytuj szablon" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "Edytuj szablon, który jest używany do generowania konfiguracji smbd." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Wymuszanie Roota" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Ustawienia główne" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Ukryj pliki zaczynające się od kropki" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Właściciel spadku" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interfejs" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na LANie" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nazwa" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Udziały sieciowe" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Ścieżka" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu " +"w zamontowanym urządzeniu." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Tylko do odczytu" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Udostępniane katalogi" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"To jest zawartość pliku '/etc/smbd/smb.conf.template', na podstawie którego " +"zostanie wygenerowana konfiguracja smbd. Wartości otoczone symbolem kreski " +"pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną pobrane z " +"zakładki \"Ustawienia ogólne\"." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Grupa robocza" diff --git a/applications/luci-app-smbd/po/pt/smbd.po b/applications/luci-app-smbd/po/pt/smbd.po new file mode 100644 index 0000000000..9cb53f1e3a --- /dev/null +++ b/applications/luci-app-smbd/po/pt/smbd.po @@ -0,0 +1,112 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-02 16:06+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/pt/>\n" +"Language: pt\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.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Permitir Convidados" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Utilizadores Permitidos" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Navegável" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Criar máscara" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Máscara do diretório" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Editar Modelo" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "Editar o modelo que é usado para gerar a configuração smbd." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Forçar Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Ocultar ficheiros de ponto" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Herdar proprietário" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "Ouvir apenas na interface indicada ou, se não especificado, na LAN" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Partilhas da Rede" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Caminho" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a " +"uma pasta num aparelho montado." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Apenas Leitura" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Directórios Partilhados" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Este é o conteúdo do ficheiro '/etc/smbd/smb.conf.template' do qual a sua " +"configuração smbd será gerada. Os valores incluídos pelos símbolos dos tubos " +"('|') não devem ser alterados. Eles obtêm os seus valores da aba " +"'Configurações Gerais'." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Grupo de trabalho" diff --git a/applications/luci-app-smbd/po/pt_BR/smbd.po b/applications/luci-app-smbd/po/pt_BR/smbd.po new file mode 100644 index 0000000000..aea1956605 --- /dev/null +++ b/applications/luci-app-smbd/po/pt_BR/smbd.po @@ -0,0 +1,113 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-26 17:10+0000\n" +"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationscifsd/pt_BR/>\n" +"Language: pt_BR\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.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Permitir convidados" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Usuários permitidos" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Navegável" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Máscara de criação" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Máscara do diretório" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Editar modelo" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "Edita o modelo que é usado para gerar a configuração smbd." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Forçar Usuário Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "Ocultar arquivos-ponto (dotfiles)" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Herdar o dono" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" +"Ouvir apenas na interface fornecida ou, se não for especificado, na LAN" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Compartilhamentos de Rede" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Caminho" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a " +"uma pasta em um dispositivo montado." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Somente leitura" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Diretórios Compartilhados" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Este é o conteúdo do arquivo \"/etc/smbd/smb.conf.template\" a partir do " +"qual sua configuração smbd será gerada. Os valores delimitados por símbolos " +"de tubulação (\"|\") não devem ser alterados. Eles obtêm seus valores na " +"guia \"Configurações Gerais\"." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Grupo de trabalho" diff --git a/applications/luci-app-smbd/po/ro/smbd.po b/applications/luci-app-smbd/po/ro/smbd.po new file mode 100644 index 0000000000..777143348e --- /dev/null +++ b/applications/luci-app-smbd/po/ro/smbd.po @@ -0,0 +1,107 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-10 12:24+0000\n" +"Last-Translator: Alexandru Stan <alex9457sn@gmail.com>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssmbd/ro/>\n" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 3.10.1\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Setări principale" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/ru/smbd.po b/applications/luci-app-smbd/po/ru/smbd.po new file mode 100644 index 0000000000..395f757583 --- /dev/null +++ b/applications/luci-app-smbd/po/ru/smbd.po @@ -0,0 +1,109 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-01-13 14:27+0000\n" +"Last-Translator: Nazym Bavbekov <joker2000joker@list.ru>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssmbd/ru/>\n" +"Language: ru\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10.1\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Разрешить гостевой вход" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Разрешенные пользователи" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Создать маску" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Описание" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Маска папок" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Настройка шаблона" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Основные настройки" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Интерфейс" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Имя" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Сетевые ресурсы" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Путь" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Добавьте папки для совместного доступа. Каждая папка - соответствует разделу " +"на подключенном устройстве." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Только для чтения" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Совместно используемые папки" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Рабочая группа" diff --git a/applications/luci-app-smbd/po/sk/smbd.po b/applications/luci-app-smbd/po/sk/smbd.po new file mode 100644 index 0000000000..1f3d03b59c --- /dev/null +++ b/applications/luci-app-smbd/po/sk/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/sv/smbd.po b/applications/luci-app-smbd/po/sv/smbd.po new file mode 100644 index 0000000000..c5119347a1 --- /dev/null +++ b/applications/luci-app-smbd/po/sv/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Tillåt gäster" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Tillåtna användare" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Skapa mask" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Beskrivning" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Mask för mapp" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Redigera mall" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Generella inställningar" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Gränssnitt" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Namn" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Nätverksdelningar" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Genväg" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Endast läsbar" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Delade mappar" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Arbetsgrupp" diff --git a/applications/luci-app-smbd/po/templates/smbd.pot b/applications/luci-app-smbd/po/templates/smbd.pot new file mode 100644 index 0000000000..3c996aca3b --- /dev/null +++ b/applications/luci-app-smbd/po/templates/smbd.pot @@ -0,0 +1,97 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/tr/smbd.po b/applications/luci-app-smbd/po/tr/smbd.po new file mode 100644 index 0000000000..347546836b --- /dev/null +++ b/applications/luci-app-smbd/po/tr/smbd.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-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/uk/smbd.po b/applications/luci-app-smbd/po/uk/smbd.po new file mode 100644 index 0000000000..7c923620a8 --- /dev/null +++ b/applications/luci-app-smbd/po/uk/smbd.po @@ -0,0 +1,111 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-30 21:06+0000\n" +"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/uk/>\n" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" +"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "Дозволити гостьовий вхід" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "Дозволені користувачі" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "Дост. для перегл." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "Створити маску" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Опис" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "Маска каталогу" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "Редагувати шаблон" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "Примусово Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "Загальні параметри" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "Успадковувати власника" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "Інтерфейс" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" +"Прослуховувати тільки на цьому інтерфейсі, якщо <em>не визначено</em> – на " +"всіх" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "Ім'я" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "Спільні мережеві ресурси" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "Шлях" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Додайте каталоги для спільного доступу. Кожен каталог посилається на папку " +"на підключеному пристрої." + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "Тільки читання" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "Спільні каталоги" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "Робоча група" diff --git a/applications/luci-app-smbd/po/vi/smbd.po b/applications/luci-app-smbd/po/vi/smbd.po new file mode 100644 index 0000000000..84c6cd9ed8 --- /dev/null +++ b/applications/luci-app-smbd/po/vi/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-11-20 17:07+0000\n" +"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n" +"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationscifsd/vi/>\n" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "Mô tả" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/po/zh-cn/smbd.po b/applications/luci-app-smbd/po/zh-cn/smbd.po new file mode 100644 index 0000000000..f48f7b7dfc --- /dev/null +++ b/applications/luci-app-smbd/po/zh-cn/smbd.po @@ -0,0 +1,111 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-11-13 23:05+0000\n" +"Last-Translator: Chen Minqiang <ptpt52@gmail.com>\n" +"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationscifsd/zh_Hans/>\n" +"Language: zh-cn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "允许匿名用户" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "允许用户" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "可浏览" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "创建权限掩码" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "目录权限掩码" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "编辑模板" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "编辑用来生成 smbd 设置的模板。" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "强制 Root" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "基本设置" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "继承所有者" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "接口" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "仅监听指定的接口,未指定则监听 lan" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "名称" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "网络共享" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "目录" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "只读" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "共享目录" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"这是将从其上生成 smbd 配置的文件“/etc/smbd/smb.conf.template”的内容。由管道符" +"(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "工作组" diff --git a/applications/luci-app-smbd/po/zh-tw/smbd.po b/applications/luci-app-smbd/po/zh-tw/smbd.po new file mode 100644 index 0000000000..e38ec67b9f --- /dev/null +++ b/applications/luci-app-smbd/po/zh-tw/smbd.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2019-12-19 19:40+0000\n" +"Last-Translator: 孤爺仔 <7312140@qq.com>\n" +"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationscifsd/zh_Hant/>\n" +"Language: zh-tw\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10-dev\n" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:82 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:79 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:66 +msgid "Browse-able" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:98 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:39 +msgid "Description" +msgstr "說明" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:104 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:31 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:43 +msgid "Edit the template that is used for generating the smbd configuration." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:77 +msgid "Force Root" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:30 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:93 +msgid "Hide dot files" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:88 +msgid "Inherit owner" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:33 +msgid "Interface" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:34 +msgid "Listen only on the given interface or, if unspecified, on lan" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:60 +msgid "Name" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:19 +#: applications/luci-app-smbd/luasrc/controller/smbd.lua:10 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:61 +msgid "Path" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:56 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:71 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:55 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-smbd/htdocs/luci-static/resources/view/smbd.js:44 +msgid "" +"This is the content of the file '/etc/smbd/smb.conf.template' from which " +"your smbd 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-smbd/htdocs/luci-static/resources/view/smbd.js:36 +msgid "Workgroup" +msgstr "" diff --git a/applications/luci-app-smbd/root/usr/share/rpcd/acl.d/luci-app-smbd.json b/applications/luci-app-smbd/root/usr/share/rpcd/acl.d/luci-app-smbd.json new file mode 100644 index 0000000000..f04985577c --- /dev/null +++ b/applications/luci-app-smbd/root/usr/share/rpcd/acl.d/luci-app-smbd.json @@ -0,0 +1,17 @@ +{ + "luci-app-smbd": { + "description": "Grant access to LuCI app smbd", + "read": { + "file": { + "/etc/smbd/smb.conf.template": [ "read" ], + "/usr/sbin/usmbd": [ "exec" ], + "/sbin/modinfo": [ "exec" ] + } + }, + "write": { + "file": { + "/etc/smbd/smb.conf.template": [ "write" ] + } + } + } +} |