From d69428691b5c49818ae6e61c09e24d534bf2409d Mon Sep 17 00:00:00 2001 From: RISCi_ATOM Date: Thu, 13 Feb 2020 15:19:53 -0500 Subject: [PATCH] Add luci-app-samba --- luci/luci-app-samba/Makefile | 14 ++ .../luasrc/controller/samba.lua | 16 +++ .../luci-app-samba/luasrc/model/cbi/samba.lua | 80 +++++++++++ luci/luci-app-samba/po/ca/samba.po | 126 +++++++++++++++++ luci/luci-app-samba/po/cs/samba.po | 114 ++++++++++++++++ luci/luci-app-samba/po/de/samba.po | 118 ++++++++++++++++ luci/luci-app-samba/po/el/samba.po | 109 +++++++++++++++ luci/luci-app-samba/po/en/samba.po | 113 ++++++++++++++++ luci/luci-app-samba/po/es/samba.po | 123 +++++++++++++++++ luci/luci-app-samba/po/fr/samba.po | 115 ++++++++++++++++ luci/luci-app-samba/po/he/samba.po | 104 ++++++++++++++ luci/luci-app-samba/po/hu/samba.po | 115 ++++++++++++++++ luci/luci-app-samba/po/it/samba.po | 118 ++++++++++++++++ luci/luci-app-samba/po/ja/samba.po | 114 ++++++++++++++++ luci/luci-app-samba/po/ms/samba.po | 103 ++++++++++++++ luci/luci-app-samba/po/no/samba.po | 103 ++++++++++++++ luci/luci-app-samba/po/pl/samba.po | 114 ++++++++++++++++ luci/luci-app-samba/po/pt-br/samba.po | 126 +++++++++++++++++ luci/luci-app-samba/po/pt/samba.po | 124 +++++++++++++++++ luci/luci-app-samba/po/ro/samba.po | 113 ++++++++++++++++ luci/luci-app-samba/po/ru/samba.po | 119 ++++++++++++++++ luci/luci-app-samba/po/sk/samba.po | 104 ++++++++++++++ luci/luci-app-samba/po/sv/samba.po | 106 +++++++++++++++ luci/luci-app-samba/po/templates/samba.pot | 97 +++++++++++++ luci/luci-app-samba/po/tr/samba.po | 104 ++++++++++++++ luci/luci-app-samba/po/uk/samba.po | 115 ++++++++++++++++ luci/luci-app-samba/po/vi/samba.po | 127 ++++++++++++++++++ luci/luci-app-samba/po/zh-cn/samba.po | 117 ++++++++++++++++ luci/luci-app-samba/po/zh-tw/samba.po | 117 ++++++++++++++++ 29 files changed, 3068 insertions(+) create mode 100644 luci/luci-app-samba/Makefile create mode 100644 luci/luci-app-samba/luasrc/controller/samba.lua create mode 100644 luci/luci-app-samba/luasrc/model/cbi/samba.lua create mode 100644 luci/luci-app-samba/po/ca/samba.po create mode 100644 luci/luci-app-samba/po/cs/samba.po create mode 100644 luci/luci-app-samba/po/de/samba.po create mode 100644 luci/luci-app-samba/po/el/samba.po create mode 100644 luci/luci-app-samba/po/en/samba.po create mode 100644 luci/luci-app-samba/po/es/samba.po create mode 100644 luci/luci-app-samba/po/fr/samba.po create mode 100644 luci/luci-app-samba/po/he/samba.po create mode 100644 luci/luci-app-samba/po/hu/samba.po create mode 100644 luci/luci-app-samba/po/it/samba.po create mode 100644 luci/luci-app-samba/po/ja/samba.po create mode 100644 luci/luci-app-samba/po/ms/samba.po create mode 100644 luci/luci-app-samba/po/no/samba.po create mode 100644 luci/luci-app-samba/po/pl/samba.po create mode 100644 luci/luci-app-samba/po/pt-br/samba.po create mode 100644 luci/luci-app-samba/po/pt/samba.po create mode 100644 luci/luci-app-samba/po/ro/samba.po create mode 100644 luci/luci-app-samba/po/ru/samba.po create mode 100644 luci/luci-app-samba/po/sk/samba.po create mode 100644 luci/luci-app-samba/po/sv/samba.po create mode 100644 luci/luci-app-samba/po/templates/samba.pot create mode 100644 luci/luci-app-samba/po/tr/samba.po create mode 100644 luci/luci-app-samba/po/uk/samba.po create mode 100644 luci/luci-app-samba/po/vi/samba.po create mode 100644 luci/luci-app-samba/po/zh-cn/samba.po create mode 100644 luci/luci-app-samba/po/zh-tw/samba.po diff --git a/luci/luci-app-samba/Makefile b/luci/luci-app-samba/Makefile new file mode 100644 index 0000000..d2c2e04 --- /dev/null +++ b/luci/luci-app-samba/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=Network Shares - Samba SMB/CIFS module +LUCI_DEPENDS:=+samba36-server + +include $(TOPDIR)/package/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/luci/luci-app-samba/luasrc/controller/samba.lua b/luci/luci-app-samba/luasrc/controller/samba.lua new file mode 100644 index 0000000..397af6a --- /dev/null +++ b/luci/luci-app-samba/luasrc/controller/samba.lua @@ -0,0 +1,16 @@ +-- Copyright 2008 Steven Barth +-- Copyright 2008 Jo-Philipp Wich +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.samba", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/samba") then + return + end + + local page + + page = entry({"admin", "services", "samba"}, cbi("samba"), _("Network Shares")) + page.dependent = true +end diff --git a/luci/luci-app-samba/luasrc/model/cbi/samba.lua b/luci/luci-app-samba/luasrc/model/cbi/samba.lua new file mode 100644 index 0000000..2e533c3 --- /dev/null +++ b/luci/luci-app-samba/luasrc/model/cbi/samba.lua @@ -0,0 +1,80 @@ +-- Copyright 2008 Steven Barth +-- Copyright 2008 Jo-Philipp Wich +-- Licensed to the public under the Apache License 2.0. + +m = Map("samba", translate("Network Shares")) + +s = m:section(TypedSection, "samba", "Samba") +s.anonymous = true + +s:tab("general", translate("General Settings")) +s:tab("template", translate("Edit Template")) + +s:taboption("general", Value, "name", translate("Hostname")) +s:taboption("general", Value, "description", translate("Description")) +s:taboption("general", Value, "workgroup", translate("Workgroup")) +h = s:taboption("general", Flag, "homes", translate("Share home-directories"), + translate("Allow system users to reach their home directories via " .. + "network shares")) +h.rmempty = false + +tmpl = s:taboption("template", Value, "_tmpl", + translate("Edit the template that is used for generating the samba configuration."), + translate("This is the content of the file '/etc/samba/smb.conf.template' from which your samba configuration will be generated. " .. + "Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab.")) + +tmpl.template = "cbi/tvalue" +tmpl.rows = 20 + +function tmpl.cfgvalue(self, section) + return nixio.fs.readfile("/etc/samba/smb.conf.template") +end + +function tmpl.write(self, section, value) + value = value:gsub("\r\n?", "\n") + nixio.fs.writefile("//etc/samba/smb.conf.template", value) +end + + +s = m:section(TypedSection, "sambashare", translate("Shared Directories") + , translate("Please add directories to share. Each directory refers to a folder on a mounted device.")) +s.anonymous = true +s.addremove = true +s.template = "cbi/tblsection" + +s:option(Value, "name", translate("Name")) +pth = s:option(Value, "path", translate("Path")) +if nixio.fs.access("/etc/config/fstab") then + pth.titleref = luci.dispatcher.build_url("admin", "system", "fstab") +end + +s:option(Value, "users", translate("Allowed users")).rmempty = true + +ro = s:option(Flag, "read_only", translate("Read-only")) +ro.rmempty = false +ro.enabled = "yes" +ro.disabled = "no" + +br = s:option(Flag, "browseable", translate("Browseable")) +br.rmempty = false +br.default = "yes" +br.enabled = "yes" +br.disabled = "no" + +go = s:option(Flag, "guest_ok", translate("Allow guests")) +go.rmempty = false +go.enabled = "yes" +go.disabled = "no" + +cm = s:option(Value, "create_mask", translate("Create mask"), + translate("Mask for new files")) +cm.rmempty = true +cm.size = 4 + +dm = s:option(Value, "dir_mask", translate("Directory mask"), + translate("Mask for new directories")) +dm.rmempty = true +dm.size = 4 + + +return m diff --git a/luci/luci-app-samba/po/ca/samba.po b/luci/luci-app-samba/po/ca/samba.po new file mode 100644 index 0000000..e85da7a --- /dev/null +++ b/luci/luci-app-samba/po/ca/samba.po @@ -0,0 +1,126 @@ +# samba.pot +# generated from ./applications/luci-samba/luasrc/i18n/samba.en.lua +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:40+0200\n" +"PO-Revision-Date: 2014-07-01 05:47+0200\n" +"Last-Translator: Alex \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permet convidats" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Permet que els usuaris del sistema pugin arribar als seus directoris d'inici " +"via comparticions de xarxa" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Usuaris permesos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Crea màscara" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descripció" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Màscara de directori" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Edita plantilla" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Edita la plantilla que s'usa per generar la configuració de samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Ajusts generals" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nom de màquina" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Màscara per directoris nous" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Màscara per fitxers nous" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nom" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Comparticions de xarxa" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Ruta" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Només lectura" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Comparteix directoris d'inici" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Directoris compartits" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Això és el contingut del fitxer '/etc/samba/smb.conf.template' del qual la " +"vostra configuració de samba es generarà. Valors encerclats per símbols de " +"barra ('|') no es deuen canviar. Reben els seus valors de la pestanya " +"'Ajusts generals'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Grup de treball" + +#~ msgid "Shared Directory" +#~ msgstr "Directori compartit" + +#~ msgid "Physical Path" +#~ msgstr "Ruta física" + +#~ msgid "optional" +#~ msgstr "opcional" diff --git a/luci/luci-app-samba/po/cs/samba.po b/luci/luci-app-samba/po/cs/samba.po new file mode 100644 index 0000000..9de7783 --- /dev/null +++ b/luci/luci-app-samba/po/cs/samba.po @@ -0,0 +1,114 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-05-31 13:56+0200\n" +"Last-Translator: koli \n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Pootle 2.0.6\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Povolení hosté" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Povoluje systémovým uživatelům přístup do jejich domácích adresářů skrze " +"sdílení přes síť." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Povolení uživatelé" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Vytvořit masku" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Popis" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Maska adresáře" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Editovat šablonu" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Editovat šablonu, která je použita pro generování konfiguračního souboru pro " +"sambu." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Obecné nastavení" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Název počítače." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Maska pro nové adresáře" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Maska pro nové soubory" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Jméno" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Síťová sdílení" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Cesta" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Pouze pro čtení" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Sdílet domácí adresáře" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Sdílené adresáře" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Toto je obsah souboru \"/etc/samba/smb.conf.template\", ze kterého je " +"konfigurace samby generována. Hodnoty uzavřené rourou (\"|\"), by se neměly " +"měnit. Tyto hodnoty jsou brány ze záložky \"Obecná nastavení\"." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Skupina" diff --git a/luci/luci-app-samba/po/de/samba.po b/luci/luci-app-samba/po/de/samba.po new file mode 100644 index 0000000..d8b57b1 --- /dev/null +++ b/luci/luci-app-samba/po/de/samba.po @@ -0,0 +1,118 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 17:57+0200\n" +"PO-Revision-Date: 2011-10-18 13:13+0200\n" +"Last-Translator: Manuel \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Gastzugang" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Systembenutzer dürfen ihre Heimatverzeichnis über Netzwerkfreigaben " +"erreichen." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Legitimierte Benutzer" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Berechtigungsmaske für neue Dateien" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Beschreibung" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Verzeichnismaske" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Template bearbeiten" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-" +"Konfigurationsdateien verwendet wird." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Hostname" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Maske für neue Verzeichnisse" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Maske für neue Dateien" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Name" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Netzwerkfreigaben" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Pfad" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Nur Lesen" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Heimatverzeichnisse freigeben" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Freigegebene Verzeichnisse" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Dieses Fenster zeigt den Inhalt der Datei '/etc/samba/smb.conf.template', " +"die als Template zum Erstellen der Samba-Konfiguration verwendet wird. Werte " +"die von Pipe Symbolen (|) eingeschlossen sind sollten nicht verändert " +"werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab " +"'Allgemeine Einstellungen' ersetzt werden." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Arbeitsgruppe" diff --git a/luci/luci-app-samba/po/el/samba.po b/luci/luci-app-samba/po/el/samba.po new file mode 100644 index 0000000..014632a --- /dev/null +++ b/luci/luci-app-samba/po/el/samba.po @@ -0,0 +1,109 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-28 02:08+0200\n" +"PO-Revision-Date: 2012-03-18 15:31+0200\n" +"Last-Translator: Vasilis \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Όνομα" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/en/samba.po b/luci/luci-app-samba/po/en/samba.po new file mode 100644 index 0000000..1a9ed39 --- /dev/null +++ b/luci/luci-app-samba/po/en/samba.po @@ -0,0 +1,113 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-03-22 15:23+0100\n" +"PO-Revision-Date: 2011-10-25 21:26+0200\n" +"Last-Translator: awm1 \n" +"Language-Team: LANGUAGE \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Allow guests" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "Allow system users to reach their home directories via network shares" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Allowed users" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Create mask" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Description" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Directory mask" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Edit template" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Edit the template that is used for generating the Samba configuration." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "General settings" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Hostname" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Mask for new directories" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Mask for new files" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Name" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Network Shares" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Path" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Read-only" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Share home-directories" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Shared Directories" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your Samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"settings' tab." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Workgroup" diff --git a/luci/luci-app-samba/po/es/samba.po b/luci/luci-app-samba/po/es/samba.po new file mode 100644 index 0000000..c88b9b7 --- /dev/null +++ b/luci/luci-app-samba/po/es/samba.po @@ -0,0 +1,123 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:41+0200\n" +"PO-Revision-Date: 2019-03-05 20:45-0300\n" +"Last-Translator: José Vicente \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: Poedit 2.2.1\n" +"Language-Team: \n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permitir invitados" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "Permitir a los usuarios acceder a sus carpetas de inicio vía Samba" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Usuarios permitidos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "Navegable" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Crear máscara" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descripción" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Máscara de carpeta" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Editar plantilla" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Editar la plantilla usada para generar la configuración de samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Configuración general" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nombre de host" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Máscara para carpetas nuevas" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Máscara para archivos nuevos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nombre" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Samba" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Dirección" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +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 se refiere a " +"una carpeta en un dispositivo montado." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Solo lectura" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Compartir carpetas personales" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Carpetas compartidas" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Contenido del archivo '/etc/samba/smb.conf.template' desde el que se " +"generará la configuración de samba. Los valores entre tuberías ('|') no " +"deben cambiarse. Su valor se toma desde la pestaña 'Configuración general'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Grupo de trabajo" + +#~ msgid "Shared Directory" +#~ msgstr "Directorio compatido" + +#~ msgid "Physical Path" +#~ msgstr "Ruta Física" + +#~ msgid "optional" +#~ msgstr "opcional" diff --git a/luci/luci-app-samba/po/fr/samba.po b/luci/luci-app-samba/po/fr/samba.po new file mode 100644 index 0000000..77aa873 --- /dev/null +++ b/luci/luci-app-samba/po/fr/samba.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2011-11-23 22:36+0200\n" +"Last-Translator: fredb \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Invités autorisés" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Autoriser les utilisateurs système à atteindre leurs dossiers personnels via " +"les partages réseau" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Utilisateurs autorisés" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Maque de création" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Description" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Masque des dossiers" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Éditer le modèle" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Éditer le modèle utilisé pour générer la configuration Samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Paramètres généraux" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nom d'hôte" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Masque pour les nouveaux dossiers" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Masque pour les nouveaux fichiers" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nom" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Partages réseau" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Chemin" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Lecture seule" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Partager les dossiers personnels" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Dossiers partagés" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Voici le contenu du fichier '/etc/samba/smb.conf.template' d'où sera généré " +"votre configuration Samba. Les valeurs entre les symboles barre-verticale " +" (« | ») ne doivent pas être modifiées, elles proviennent de l'onglet " +"« Paramètres généraux »." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Groupe de travail" diff --git a/luci/luci-app-samba/po/he/samba.po b/luci/luci-app-samba/po/he/samba.po new file mode 100644 index 0000000..5eca060 --- /dev/null +++ b/luci/luci-app-samba/po/he/samba.po @@ -0,0 +1,104 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/hu/samba.po b/luci/luci-app-samba/po/hu/samba.po new file mode 100644 index 0000000..8eac23f --- /dev/null +++ b/luci/luci-app-samba/po/hu/samba.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-04-06 10:56+0200\n" +"Last-Translator: juhosg \n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Vendég hozzáférés" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"A rendszerfelhasználók hálózati megosztáson keresztül hozzáférhetnek a home " +"könyvtárukhoz." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Engedélyezett felhasználók" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Létrehozási maszk" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Leírás" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Könyvtár maszk" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Sablon szerkesztése" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Itt szerkesztheti a sablont, ami a végleges samba konfiguráció " +"elkészítéséhez kerül felhasználásra." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Általános beállítások" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Gépnév" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Új könyvtárak maszkja" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Új fájlok maszkja" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Név" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Hálózati megosztások" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Elérési út" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Csak olvasható" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Home könyvtárak megosztása" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Megosztott könyvtárak" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Itt látható a /etc/samba/smb.conf.template file tartalma, ami a samba " +"konfiguráció előállításához kerül felhasználásra. A pipe szimbólumok ('|') " +"közé zárt értékek módosítása nem szükséges, az értéküket az általános " +"beállítások fülről kapják." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Munkacsoport" diff --git a/luci/luci-app-samba/po/it/samba.po b/luci/luci-app-samba/po/it/samba.po new file mode 100644 index 0000000..9e4fdf1 --- /dev/null +++ b/luci/luci-app-samba/po/it/samba.po @@ -0,0 +1,118 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2017-09-06 01:28+0200\n" +"Last-Translator: bubu83 \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permetti ospiti" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Autorizza gli utenti del sistema a raggiungere la loro cartella home " +"attraverso le condivisioni di rete" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Utenti ammessi" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "Sfogliabile" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Crea maschera" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descrizione" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Maschera della cartella" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Modifica Template" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Modifica il template utilizzato per generare la configurazione di samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Opzioni Generali" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Hostname" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Maschera per le nuove cartelle" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Maschera per i nuovi files" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Condivisioni di rete" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Percorso" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Per favore aggiungi le directory da condividere. Ogni directory si riferisce " +"a una cartella su un dispositivo montato." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Solo lettura" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Condividi cartelle home" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Cartelle Condivise" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Questo è il contenuto del file '/etc/samba/smb.conf.template' dal quale sarà " +"generata la tua configurazione di samba. I valori racchiusi tra il simbolo " +"('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata " +"'Opzioni Generali'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Gruppo di lavoro" diff --git a/luci/luci-app-samba/po/ja/samba.po b/luci/luci-app-samba/po/ja/samba.po new file mode 100644 index 0000000..bae4dad --- /dev/null +++ b/luci/luci-app-samba/po/ja/samba.po @@ -0,0 +1,114 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2017-08-16 00:41+0900\n" +"Last-Translator: INAGAKI Hiroshi \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 2.0.3\n" +"Language-Team: \n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "ゲストアクセスを許可" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "sambaを介してユーザーのホームディレクトリへのアクセスを許可します" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "許可されたユーザー" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "マスクの作成" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "説明" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "ディレクトリのマスク" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "テンプレートの編集" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "samba設定を生成するテンプレートを編集します。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "一般設定" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "ホスト名" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "新規ディレクトリのマスク" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "新規ファイルのマスク" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "名前" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "ネットワーク共有" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "パス" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"共有するディレクトリを追加してください。マウントされたデバイス等のディレクト" +"リを設定し、公開することができます。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "読み込みのみ" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "ホームディレクトリの共有" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "共有ディレクトリ" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"これは、samba設定を生成するための'/etc/samba/smb.conf.template' ファイルの内" +"容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設" +"定'タブ内の値によって置き換えられます。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "ワークグループ" diff --git a/luci/luci-app-samba/po/ms/samba.po b/luci/luci-app-samba/po/ms/samba.po new file mode 100644 index 0000000..22959a1 --- /dev/null +++ b/luci/luci-app-samba/po/ms/samba.po @@ -0,0 +1,103 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/no/samba.po b/luci/luci-app-samba/po/no/samba.po new file mode 100644 index 0000000..25874b8 --- /dev/null +++ b/luci/luci-app-samba/po/no/samba.po @@ -0,0 +1,103 @@ +msgid "" +msgstr "" +"Last-Translator: Lars Hardy \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Tillat gjester" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "Tillat systembrukere å nå sine hjemmekataloger via nettverks mapper." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Tillatte brukere" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Opprett Maske" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Beskrivelse" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Katalog maske" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Rediger Mal" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Rediger malen som brukes til å generere samba konfigurasjonen." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Generelle Innstillinger" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Vertsnavn" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Maske for nye kataloger" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Maske for nye filer" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Navn" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Nettverks Mapper" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Fysisk bane" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Skrivebeskyttet" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Del Hjemmekataloger" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Delte Kataloger" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Dette er innholdet av filen '/etc/samba/smb.conf.template' som din samba " +"konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke " +"endres. De får sine verdier fra 'Generelle Innstillinger' fanen." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Arbeidsgruppe" diff --git a/luci/luci-app-samba/po/pl/samba.po b/luci/luci-app-samba/po/pl/samba.po new file mode 100644 index 0000000..8eb3ef3 --- /dev/null +++ b/luci/luci-app-samba/po/pl/samba.po @@ -0,0 +1,114 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2011-08-26 09:51+0200\n" +"Last-Translator: Staszek \n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Zezwalaj Gościom" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Użytkownicy systemu mogą dostać się do swoich katalogów domowych za " +"pośrednictwem udziałów sieciowych." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Użytkownicy z prawem dostępu" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Utwórz maskę" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Opis" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Maska katalogu" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Edytuj szablon" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Ustawienia ogólne" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nazwa hosta" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Maska dla nowych katalogów" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Maska dla nowych plików" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nazwa" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Udziały sieciowe" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Ścieżka" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Tylko do odczytu" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Udostępniaj katalogi domowe" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Udostępniane katalogi" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"To jest zawartość pliku '/etc/samba/smb.conf.template\", na podstawie " +"którego zostanie wygenerowana konfiguracja samby. Wartości otoczone symbolem " +"kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną " +"pobrane z zakładki \"Ustawienia ogólne\"." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Grupa robocza" diff --git a/luci/luci-app-samba/po/pt-br/samba.po b/luci/luci-app-samba/po/pt-br/samba.po new file mode 100644 index 0000000..da0f8f4 --- /dev/null +++ b/luci/luci-app-samba/po/pt-br/samba.po @@ -0,0 +1,126 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:41+0200\n" +"PO-Revision-Date: 2018-09-20 19:33-0300\n" +"Last-Translator: Luiz Angelo Daros de Luca \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.1.1\n" +"Language-Team: \n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permitir convidados" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Usuários do sistema poderão acessar seu diretório home através dos " +"compartilhamentos de rede" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Usuários permitidos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "Navegável" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Máscara de criação" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Máscara do diretório" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Editar modelo" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Edita o modelo que é usado para gerar a configuração do samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nome do equipamento" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Máscara para novos diretórios" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Máscara para novos arquivos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Compartilhamentos de Rede" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Caminho" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Por favor, adicione diretórios para serem compartilhados. Cada diretório se " +"refere a uma pasta em um dispositivo montado." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Somente leitura" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Compartilhar diretórios home" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Diretórios Compartilhados" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Este é o conteúdo do arquivo '/etc/samba/smb.conf.template' a partir do qual " +"sua configuração do samba será gerada. Valores entre simbolos de pipe ('|') " +"não devem ser alterados. Estes valores serão obtidos a partir da aba " +"'Configurações Gerais'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Grupo de trabalho" + +#~ msgid "Shared Directory" +#~ msgstr "Diretório Compartilhado" + +#~ msgid "Physical Path" +#~ msgstr "Caminho Físico" + +#~ msgid "optional" +#~ msgstr "opcional" diff --git a/luci/luci-app-samba/po/pt/samba.po b/luci/luci-app-samba/po/pt/samba.po new file mode 100644 index 0000000..f74fc47 --- /dev/null +++ b/luci/luci-app-samba/po/pt/samba.po @@ -0,0 +1,124 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 19:03+0200\n" +"PO-Revision-Date: 2013-05-01 01:13+0200\n" +"Last-Translator: pedromrgoncalves \n" +"Language-Team: LANGUAGE \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permitir Convidados" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Utilizadores do sistema poderão aceder ao seu directório home através das " +"partilhas de rede." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Utilizadores Permitidos" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Criar Máscara" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descrição" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Máscara do Directório" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Editar Template" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Editar a template que é utilizada para gerar a configuração samba" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Definições Gerais" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Nome do host" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Máscara para novos directórios" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Máscara para novos ficheiros" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nome" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Partilhas da Rede" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Caminho" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Apenas Leitura" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Partilha de directórios home" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Directórios Partilhados" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Isto é o conteúdo do ficheiro 'etc/samba/smb.conf.template' a partir do qual " +"será gerado o ficheiro de configuração do samba. Os valores entre o símbolo " +"| não devem ser alterados. Eles recebem os valores do separador 'Definições " +"Gerais'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Grupo de trabalho" + +#~ msgid "Shared Directory" +#~ msgstr "Diretório Compartilhado" + +#~ msgid "Physical Path" +#~ msgstr "Caminho Físico" + +#~ msgid "optional" +#~ msgstr "opcional" diff --git a/luci/luci-app-samba/po/ro/samba.po b/luci/luci-app-samba/po/ro/samba.po new file mode 100644 index 0000000..3c344f0 --- /dev/null +++ b/luci/luci-app-samba/po/ro/samba.po @@ -0,0 +1,113 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2011-10-07 17:16+0200\n" +"Last-Translator: Daniel \n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Permite oaspeti" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Permite utilizatorii de sistem sa acceseze directoarele lor peste " +"partajarile de retea" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Utilizatori acceptati" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Creaza masca" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Descriere" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Masca director" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Editeaza sablon" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Editeaza sablonul care e folosit pentru generarea configuratiei samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Setari generale" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Numele de host" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Masca pentru directoarele noi" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Masca pentru fisierele noi" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Nume" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Partajari pe retea" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Cale" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Doar citire" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Partajeaza directoarele proprii" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Directoare partajate" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Acesta este continutul fisierului '/etc/samba/smb.conf.template' din care se " +"genereaza configuratia samba. Valorile dintre liniuta verticala ('|') n-ar " +"trebui schimbate, ele iau valorile direct din tab-ul de \"Setari generale\"." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Workgroup" diff --git a/luci/luci-app-samba/po/ru/samba.po b/luci/luci-app-samba/po/ru/samba.po new file mode 100644 index 0000000..e65241c --- /dev/null +++ b/luci/luci-app-samba/po/ru/samba.po @@ -0,0 +1,119 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: LuCI: samba\n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2018-01-19 15:28+0300\n" +"Language-Team: http://cyber-place.ru\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.7.1\n" +"Last-Translator: Vladimir aka sunny \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: ru\n" +"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " +"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Разрешить гостевой вход" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Разрешить пользователям получать доступ к их домашним папкам, через " +"локальную сеть." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Разрешенные пользователи" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "Виден в списке доступных ресурсов" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Создать маску" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Описание" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Маска папок" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Настройка шаблона" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "Настройка config
файла samba" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Основные настройки" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Имя хоста" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Маска для новых папок" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Маска для новых файлов" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Имя" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Сетевые ресурсы" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Путь" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" +"Добавьте папки для совместного доступа. Каждая папка - соответствует разделу " +"на подключенном устройстве." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Только для чтения" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Совместно использовать домашние папки" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Совместно используемые папки" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Это содержимое файла '/etc/samba/smb.conf.template', из которого " +"генерируется config файл - samba.
Значения, заключенные в символы " +"('|'), не должны быть изменены.
Они будут автоматически заменены на " +"значения со страницы 'Основные настройки'." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Рабочая группа" diff --git a/luci/luci-app-samba/po/sk/samba.po b/luci/luci-app-samba/po/sk/samba.po new file mode 100644 index 0000000..393b5f9 --- /dev/null +++ b/luci/luci-app-samba/po/sk/samba.po @@ -0,0 +1,104 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/sv/samba.po b/luci/luci-app-samba/po/sv/samba.po new file mode 100644 index 0000000..34157a8 --- /dev/null +++ b/luci/luci-app-samba/po/sv/samba.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Tillåt gäster" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "Tillåt systemanvändare att nå deras hem-mappar via nätverksdelningar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Tillåtna användare" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Skapa mask" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Beskrivning" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Mask för mapp" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Redigera mall" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Redigera mallen som används för att generera konfigurationen för samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Generella inställningar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Värdnamn" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Mask för nya mappar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Mask för nya filer" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Namn" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Nätverksdelningar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Genväg" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Endast läsbar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Dela hem-mappar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Delade mappar" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Arbetsgrupp" diff --git a/luci/luci-app-samba/po/templates/samba.pot b/luci/luci-app-samba/po/templates/samba.pot new file mode 100644 index 0000000..395928a --- /dev/null +++ b/luci/luci-app-samba/po/templates/samba.pot @@ -0,0 +1,97 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/tr/samba.po b/luci/luci-app-samba/po/tr/samba.po new file mode 100644 index 0000000..583b35a --- /dev/null +++ b/luci/luci-app-samba/po/tr/samba.po @@ -0,0 +1,104 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "" diff --git a/luci/luci-app-samba/po/uk/samba.po b/luci/luci-app-samba/po/uk/samba.po new file mode 100644 index 0000000..843d883 --- /dev/null +++ b/luci/luci-app-samba/po/uk/samba.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-03-18 20:35+0200\n" +"Last-Translator: YuriPet \n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.4\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "Дозволити гостьовий вхід" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Дозволити користувачам системи досягати своїх домашніх каталогів через " +"загальні мережеві ресурси" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "Дозволені користувачі" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "Створити маску" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Опис" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "Маска каталогу" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "Редагувати шаблон" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" +"Редагувати шаблон, який використовується для створення конфігурації samba." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "Загальні настройки" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "Назва (ім'я) вузла" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Маска для нових каталогів" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Маска для нових файлів" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "Ім'я" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Загальні мережеві ресурси" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "Шлях" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "Тільки читання" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Спільно використовувати домашні каталоги" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Загальні каталоги" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"Це вміст файлу '/etc/samba/smb.conf.template', з якого буде генеруватися " +"ваша конфігурація samba. Значення, укладені в символи \"вертикальна риска" +"\" (\"|\") не повинні змінюватися. Вони отримують свої значення з вкладки " +"\"Загальні налаштування\"." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Робоча група" diff --git a/luci/luci-app-samba/po/vi/samba.po b/luci/luci-app-samba/po/vi/samba.po new file mode 100644 index 0000000..a3f65cf --- /dev/null +++ b/luci/luci-app-samba/po/vi/samba.po @@ -0,0 +1,127 @@ +# samba.pot +# generated from ./applications/luci-samba/luasrc/i18n/samba.en.lua +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-08-16 06:59+0200\n" +"PO-Revision-Date: 2009-08-13 03:54+0200\n" +"Last-Translator: Hong Phuc Dang \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +#, fuzzy +msgid "Allow guests" +msgstr "Cho phép khách" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +#, fuzzy +msgid "Allow system users to reach their home directories via network shares" +msgstr "" +"Những người sử dụng hệ thống có thể tiếp cận những thư mục tại nhà thông qua " +"mạng lưới chia sẻ trực tuyến." + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +#, fuzzy +msgid "Allowed users" +msgstr "Người sử dụng được cho phép" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +#, fuzzy +msgid "Create mask" +msgstr "Tạo Mask" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "Mô tả" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +#, fuzzy +msgid "Directory mask" +msgstr "Thư mục Mask" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "tên máy chủ" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "Mask cho thư mục mới" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "Mask cho tập tin mới" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "Mạng chia sẻ" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +#, fuzzy +msgid "Read-only" +msgstr "Chỉ đọc " + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "Chia sẻ danh bạ chính" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "Thư mục chia sẻ" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "Nhóm làm việc " + +#~ msgid "Shared Directory" +#~ msgstr "Đã chia sẻ thư mục" + +#~ msgid "Physical Path" +#~ msgstr "Đường dẫn vật lý" + +#~ msgid "optional" +#~ msgstr "Tùy thích" diff --git a/luci/luci-app-samba/po/zh-cn/samba.po b/luci/luci-app-samba/po/zh-cn/samba.po new file mode 100644 index 0000000..3307bf8 --- /dev/null +++ b/luci/luci-app-samba/po/zh-cn/samba.po @@ -0,0 +1,117 @@ +# +# Yangfl , 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:40+0200\n" +"PO-Revision-Date: 2017-10-29 15:36+0800\n" +"Last-Translator: Yangfl \n" +"Language-Team: \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Gtranslator 2.91.7\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "允许匿名用户" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "允许系统用户通过网络共享访问他们的家目录" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "允许用户" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "可浏览" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "创建权限掩码" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "目录权限掩码" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "编辑模板" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "编辑用来生成 samba 设置的模板" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "基本设置" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "主机名" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "新目录权限掩码" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "新文件权限掩码" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "共享名" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "网络共享" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "目录" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "只读" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "共享家目录" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "共享目录" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道" +"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "工作组" + +#~ msgid "Physical Path" +#~ msgstr "物理路径" diff --git a/luci/luci-app-samba/po/zh-tw/samba.po b/luci/luci-app-samba/po/zh-tw/samba.po new file mode 100644 index 0000000..fa644b7 --- /dev/null +++ b/luci/luci-app-samba/po/zh-tw/samba.po @@ -0,0 +1,117 @@ +# +# Yangfl , 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:40+0200\n" +"PO-Revision-Date: 2017-10-29 15:36+0800\n" +"Last-Translator: Yangfl \n" +"Language-Team: \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Gtranslator 2.91.7\n" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64 +msgid "Allow guests" +msgstr "允許匿名使用者" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 +msgid "Allow system users to reach their home directories via network shares" +msgstr "允許系統使用者通過網路共享訪問他們的家目錄" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 +msgid "Allowed users" +msgstr "允許使用者" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58 +msgid "Browseable" +msgstr "可瀏覽" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69 +msgid "Create mask" +msgstr "建立權限掩碼" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14 +msgid "Description" +msgstr "描述" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 +msgid "Directory mask" +msgstr "目錄權限掩碼" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 +msgid "Edit Template" +msgstr "編輯模板" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22 +msgid "Edit the template that is used for generating the samba configuration." +msgstr "編輯用來生成 samba 設定的模板" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10 +msgid "General Settings" +msgstr "基本設定" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 +msgid "Hostname" +msgstr "主機名" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 +msgid "Mask for new directories" +msgstr "新目錄權限掩碼" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 +msgid "Mask for new files" +msgstr "新檔案權限掩碼" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45 +msgid "Name" +msgstr "共享名" + +#: applications/luci-app-samba/luasrc/controller/samba.lua:14 +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 +msgid "Network Shares" +msgstr "網路共享" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 +msgid "Path" +msgstr "目錄" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:40 +msgid "" +"Please add directories to share. Each directory refers to a folder on a " +"mounted device." +msgstr "請新增要共享的目錄。每個目錄指到已掛載裝置上的資料夾。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:53 +msgid "Read-only" +msgstr "只讀" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 +msgid "Share home-directories" +msgstr "共享家目錄" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 +msgid "Shared Directories" +msgstr "共享目錄" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 +msgid "" +"This is the content of the file '/etc/samba/smb.conf.template' from which " +"your samba configuration will be generated. Values enclosed by pipe symbols " +"('|') should not be changed. They get their values from the 'General " +"Settings' tab." +msgstr "" +"這是將從其上生成 samba 配置的檔案“/etc/samba/smb.conf.template”的內容。由管道" +"符(“|”)包圍的值不應更改。它們將從“常規設定”標籤中獲取其值。" + +#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 +msgid "Workgroup" +msgstr "工作組" + +#~ msgid "Physical Path" +#~ msgstr "物理路徑" -- 2.25.1