Merge pull request #4032 from stintel/drop_samba36
authorHannu Nyman <hannu.nyman@iki.fi>
Fri, 8 May 2020 15:01:59 +0000 (18:01 +0300)
committerGitHub <noreply@github.com>
Fri, 8 May 2020 15:01:59 +0000 (18:01 +0300)
luci-app-samba: drop package

35 files changed:
applications/luci-app-samba/Makefile [deleted file]
applications/luci-app-samba/luasrc/model/cbi/samba.lua [deleted file]
applications/luci-app-samba/po/bg/samba.po [deleted file]
applications/luci-app-samba/po/bn_BD/samba.po [deleted file]
applications/luci-app-samba/po/ca/samba.po [deleted file]
applications/luci-app-samba/po/cs/samba.po [deleted file]
applications/luci-app-samba/po/de/samba.po [deleted file]
applications/luci-app-samba/po/el/samba.po [deleted file]
applications/luci-app-samba/po/en/samba.po [deleted file]
applications/luci-app-samba/po/es/samba.po [deleted file]
applications/luci-app-samba/po/fr/samba.po [deleted file]
applications/luci-app-samba/po/he/samba.po [deleted file]
applications/luci-app-samba/po/hi/samba.po [deleted file]
applications/luci-app-samba/po/hu/samba.po [deleted file]
applications/luci-app-samba/po/it/samba.po [deleted file]
applications/luci-app-samba/po/ja/samba.po [deleted file]
applications/luci-app-samba/po/ko/samba.po [deleted file]
applications/luci-app-samba/po/mr/samba.po [deleted file]
applications/luci-app-samba/po/ms/samba.po [deleted file]
applications/luci-app-samba/po/nb_NO/samba.po [deleted file]
applications/luci-app-samba/po/pl/samba.po [deleted file]
applications/luci-app-samba/po/pt/samba.po [deleted file]
applications/luci-app-samba/po/pt_BR/samba.po [deleted file]
applications/luci-app-samba/po/ro/samba.po [deleted file]
applications/luci-app-samba/po/ru/samba.po [deleted file]
applications/luci-app-samba/po/sk/samba.po [deleted file]
applications/luci-app-samba/po/sv/samba.po [deleted file]
applications/luci-app-samba/po/templates/samba.pot [deleted file]
applications/luci-app-samba/po/tr/samba.po [deleted file]
applications/luci-app-samba/po/uk/samba.po [deleted file]
applications/luci-app-samba/po/vi/samba.po [deleted file]
applications/luci-app-samba/po/zh_Hans/samba.po [deleted file]
applications/luci-app-samba/po/zh_Hant/samba.po [deleted file]
applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json [deleted file]
applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json [deleted file]

diff --git a/applications/luci-app-samba/Makefile b/applications/luci-app-samba/Makefile
deleted file mode 100644 (file)
index 7c08c0f..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
-#
-# 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:=+luci-compat +samba36-server
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
diff --git a/applications/luci-app-samba/luasrc/model/cbi/samba.lua b/applications/luci-app-samba/luasrc/model/cbi/samba.lua
deleted file mode 100644 (file)
index e972874..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
--- Copyright 2008 Steven Barth <steven@midlink.org>
--- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
--- 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", "mounts")
-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/applications/luci-app-samba/po/bg/samba.po b/applications/luci-app-samba/po/bg/samba.po
deleted file mode 100644 (file)
index 178c14f..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-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: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bg\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/bn_BD/samba.po b/applications/luci-app-samba/po/bn_BD/samba.po
deleted file mode 100644 (file)
index 1a2c851..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-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: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bn_BD\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/ca/samba.po b/applications/luci-app-samba/po/ca/samba.po
deleted file mode 100644 (file)
index 2649423..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-#  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: 2019-10-21 07:49+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/ca/>\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: Weblate 3.9.1-dev\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13
-msgid "Hostname"
-msgstr "Nom de l’amfitrió"
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/cs/samba.po b/applications/luci-app-samba/po/cs/samba.po
deleted file mode 100644 (file)
index 203f884..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2019-12-05 17:06+0000\n"
-"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/cs/>\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: Weblate 3.10-dev\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 "Prohledávatelný"
-
-#: 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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 "Název"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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 ""
-"Přidejte adresáře, které chcete sdílet. Každý adresář odkazuje na složku na "
-"připojeném zařízení."
-
-#: 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/applications/luci-app-samba/po/de/samba.po b/applications/luci-app-samba/po/de/samba.po
deleted file mode 100644 (file)
index c1a9e7e..0000000
+++ /dev/null
@@ -1,125 +0,0 @@
-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: 2019-12-12 15:06+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/de/>\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: Weblate 3.10-dev\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 Heimatverzeichnisse ü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 "Durchsuchbar"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69
-msgid "Create mask"
-msgstr "Berechtigungs-maske 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 "Verzeichnis-maske"
-
-#: 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-msgid "Network Shares"
-msgstr "Netzwerk-freigaben"
-
-#: 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 ""
-"Bitte fügen Sie Verzeichnisse hinzu, die Sie freigeben möchten. Jedes "
-"Verzeichnis bezieht sich auf einen Ordner auf einem bereitgestellten Gerät."
-
-#: applications/luci-app-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/applications/luci-app-samba/po/el/samba.po b/applications/luci-app-samba/po/el/samba.po
deleted file mode 100644 (file)
index e259c25..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-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: 2019-11-25 13:56+0000\n"
-"Last-Translator: Kostas Lampropoulos <labrok@otenet.gr>\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/el/>\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: Weblate 3.10-dev\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/en/samba.po b/applications/luci-app-samba/po/en/samba.po
deleted file mode 100644 (file)
index 6094896..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-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 <awm1klimes8vladimir@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/es/samba.po b/applications/luci-app-samba/po/es/samba.po
deleted file mode 100644 (file)
index abb056f..0000000
+++ /dev/null
@@ -1,130 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-02-25 09:44+0000\n"
-"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/es/>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.0-dev\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 personales a través de Samba4"
-
-#: 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 directorio"
-
-#: 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13
-msgid "Hostname"
-msgstr "Nombre del 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-msgid "Network Shares"
-msgstr "Recursos compartidos de red"
-
-#: 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 ""
-"Por favor agregue directorios para compartir. Cada directorio hace "
-"referencia 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 "Directorios compartidos"
-
-#: 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 ""
-"Esto es el contenido del archivo «/etc/samba/smb.conf.template» a partir del "
-"cual se generará su configuración de Samba. No deben cambiarse los valores "
-"delimitados por plecas («|»); estos reciben sus valores de 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/applications/luci-app-samba/po/fr/samba.po b/applications/luci-app-samba/po/fr/samba.po
deleted file mode 100644 (file)
index 5c6a629..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-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: 2020-03-20 17:55+0000\n"
-"Last-Translator: Hydci <giogio59@live.fr>\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/fr/>\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: Weblate 4.0-dev\n"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64
-msgid "Allow guests"
-msgstr "Autoriser les invité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 "Parcourable"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:69
-msgid "Create mask"
-msgstr "Créer un masque"
-
-#: 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 de répertoire"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11
-msgid "Edit Template"
-msgstr "Modifier 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 "Modifiez le modèle utilisé pour générer la configuration de samba."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10
-msgid "General Settings"
-msgstr "Paramètres généraux"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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 ""
-"Veuillez ajouter des répertoires à partager. Chaque répertoire fait "
-"référence à un dossier sur un périphérique monté."
-
-#: 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 "Répertoires 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 ""
-"Il s'agit du contenu du fichier '/etc/samba/smb.conf.template' à partir "
-"duquel votre configuration samba sera générée. Les valeurs entourées de "
-"symboles de tuyau ('|') ne doivent pas être modifiées. Ils obtiennent leurs "
-"valeurs dans 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/applications/luci-app-samba/po/he/samba.po b/applications/luci-app-samba/po/he/samba.po
deleted file mode 100644 (file)
index cdfd91f..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/hi/samba.po b/applications/luci-app-samba/po/hi/samba.po
deleted file mode 100644 (file)
index bf42db9..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-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: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hi\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/hu/samba.po b/applications/luci-app-samba/po/hu/samba.po
deleted file mode 100644 (file)
index f65d295..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-01-12 19:21+0000\n"
-"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/hu/>\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: Weblate 3.10.1\n"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64
-msgid "Allow guests"
-msgstr "Vendégek engedélyezése"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17
-msgid "Allow system users to reach their home directories via network shares"
-msgstr ""
-"Annak lehetővé tétele a rendszer felhasználói számára, hogy elérhessék a "
-"saját könyvtáraikat hálózati megosztásokon keresztül"
-
-#: 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 "Tallózható"
-
-#: 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ármaszk"
-
-#: 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 ""
-"A sablon szerkesztése, amely a samba beállításainak előállításához 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-msgid "Network Shares"
-msgstr "Hálózati megosztások"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46
-msgid "Path"
-msgstr "Útvonal"
-
-#: 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 ""
-"Adja hozzá a megosztandó könyvtárakat. Minden egyes könyvtár egy csatolt "
-"eszközön lévő mappára hivatkozik."
-
-#: applications/luci-app-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 "Saját 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 ""
-"Ez az „/etc/samba/smb.conf.template” fájl tartalma, amelyből a samba "
-"beállításai előállításra kerülnek. A cső szimbólumokkal („|”) közrezárt "
-"értékeket nem szabad módosítani. Az értéküket az „Általános beállítások” "
-"lapról kapják."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15
-msgid "Workgroup"
-msgstr "Munkacsoport"
diff --git a/applications/luci-app-samba/po/it/samba.po b/applications/luci-app-samba/po/it/samba.po
deleted file mode 100644 (file)
index d32e889..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-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: 2020-02-28 00:33+0000\n"
-"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/it/>\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: Weblate 4.0-dev\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 "Impostazioni Generali"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/ja/samba.po b/applications/luci-app-samba/po/ja/samba.po
deleted file mode 100644 (file)
index b7d22ed..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-05-19 19:36+0200\n"
-"PO-Revision-Date: 2020-02-08 11:50+0000\n"
-"Last-Translator: Kazuyoshi Furuta <furuta.dg@gmail.com>\n"
-"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/ja/>\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: Weblate 3.11-dev\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
-#, fuzzy
-msgid "Create mask"
-msgstr "Create mask"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:14
-msgid "Description"
-msgstr "説明"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74
-#, fuzzy
-msgid "Directory mask"
-msgstr "Directory 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 "samba設定を生成するテンプレートを編集します。"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10
-msgid "General Settings"
-msgstr "一般設定"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/ko/samba.po b/applications/luci-app-samba/po/ko/samba.po
deleted file mode 100644 (file)
index ffa8551..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-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: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ko\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: 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/mr/samba.po b/applications/luci-app-samba/po/mr/samba.po
deleted file mode 100644 (file)
index dec2a1a..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-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: 2019-12-28 03:17+0000\n"
-"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/mr/>\n"
-"Language: mr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.10\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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' फाईलची सामग्री आहे जिथून तुमची सांबा कॉन्फिगरेशन "
-"व्युत्पन्न केली जाईल. पाईप चिन्हाद्वारे बंद केलेली मूल्ये ('|') बदलू नयेत. त्यांना त्यांची मूल्ये "
-"'सामान्य सेटिंग्ज' टॅबमधून मिळतात."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15
-msgid "Workgroup"
-msgstr "कार्यसमूह"
diff --git a/applications/luci-app-samba/po/ms/samba.po b/applications/luci-app-samba/po/ms/samba.po
deleted file mode 100644 (file)
index bf0a96b..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2019-12-18 04:21+0000\n"
-"Last-Translator: Pusak Hitam <thegame.gamesky@gmail.com>\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/ms/>\n"
-"Language: ms\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-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 "Keterangan"
-
-#: 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/nb_NO/samba.po b/applications/luci-app-samba/po/nb_NO/samba.po
deleted file mode 100644 (file)
index 9a68d3f..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-msgid ""
-msgstr ""
-"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/pl/samba.po b/applications/luci-app-samba/po/pl/samba.po
deleted file mode 100644 (file)
index 286761b..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-01-14 15:22+0000\n"
-"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/pl/>\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: Weblate 3.11-dev\n"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64
-msgid "Allow guests"
-msgstr "Zezwól 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 ""
-"Zezwól użytkownikom systemu na dotarcie do 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 "Możliwość przeglądania"
-
-#: 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 główne"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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 ""
-"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu "
-"w zamontowanym urządzeniu."
-
-#: 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/applications/luci-app-samba/po/pt/samba.po b/applications/luci-app-samba/po/pt/samba.po
deleted file mode 100644 (file)
index 1d11a3c..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-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: 2020-05-02 10:21+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/pt/>\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: Weblate 4.1-dev\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 "Navegável"
-
-#: 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 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 "Editar o modelo que é utilizado 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr "Conceder acesso UCI ao luci-app-samba"
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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 ""
-"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
-"uma pasta num aparelho montado."
-
-#: 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/applications/luci-app-samba/po/pt_BR/samba.po b/applications/luci-app-samba/po/pt_BR/samba.po
deleted file mode 100644 (file)
index fec1d27..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-03-03 13:34+0000\n"
-"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationssamba/pt_BR/>\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: Weblate 4.0-dev\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 o 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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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 compartilhar. Cada diretório refere-se 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/applications/luci-app-samba/po/ro/samba.po b/applications/luci-app-samba/po/ro/samba.po
deleted file mode 100644 (file)
index f3d41b5..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-03-29 21:21+0000\n"
-"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n"
-"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/ro/>\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: Weblate 4.0-dev\n"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:64
-msgid "Allow guests"
-msgstr "Permite oaspeți"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17
-msgid "Allow system users to reach their home directories via network shares"
-msgstr ""
-"Permite utilizatorilor acestui sistem să ajungă la directoarele lor de "
-"domiciliu prin intermediul partajărilor de rețea"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51
-msgid "Allowed users"
-msgstr "Utilizatori permiși"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:58
-msgid "Browseable"
-msgstr "Navigabil"
-
-#: 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 "Editare sablon"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:22
-msgid "Edit the template that is used for generating the samba configuration."
-msgstr "Editati sablonul utilizat pentru generarea configuratiei samba."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10
-msgid "General Settings"
-msgstr "Setări generale"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13
-msgid "Hostname"
-msgstr "Numele gazdei ( hostname )"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75
-msgid "Mask for new directories"
-msgstr "Masca pentru directoare noi"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70
-msgid "Mask for new files"
-msgstr "Masca pentru fisiere noi"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:45
-msgid "Name"
-msgstr "Nume"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-msgid "Network Shares"
-msgstr "Rețea, partajări"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46
-msgid "Path"
-msgstr "Calea"
-
-#: 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 ""
-"Vă rugăm să adăugați directoare pentru a partaja. Fiecare director se referă "
-"la un folder de pe un dispozitiv montat."
-
-#: 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 "Partajați directoarele rădăcină personale ( home-directories)"
-
-#: 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 conținutul fișierului '/etc/samba/smb.conf.template' din care va "
-"fi generată configurația samba. Valorile incluse intre simbolurile liniuță "
-"verticala ('|') nu trebuie modificate, ele își iau valorile direct din tab-"
-"ul de \"Setări generale\"."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15
-msgid "Workgroup"
-msgstr "Workgroup"
diff --git a/applications/luci-app-samba/po/ru/samba.po b/applications/luci-app-samba/po/ru/samba.po
deleted file mode 100644 (file)
index 58e268d..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: LuCI: samba\n"
-"POT-Creation-Date: 2009-05-19 19:36+0200\n"
-"PO-Revision-Date: 2020-03-13 05:33+0000\n"
-"Last-Translator: sergio <sergio+it@outerface.net>\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/ru/>\n"
-"Language: ru\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: Weblate 4.0-dev\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 ""
-"Редактирование шаблона, который используется для генерации конфигурации "
-"Samba."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:10
-msgid "General Settings"
-msgstr "Основные настройки"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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.<br />Значения, заключенные в символы "
-"('|'), не должны быть изменены.<br />Они будут автоматически заменены на "
-"значения со страницы 'Основные настройки'."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15
-msgid "Workgroup"
-msgstr "Рабочая группа"
diff --git a/applications/luci-app-samba/po/sk/samba.po b/applications/luci-app-samba/po/sk/samba.po
deleted file mode 100644 (file)
index 45f00e6..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-04-04 17:34+0000\n"
-"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
-"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/sk/>\n"
-"Language: sk\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: Weblate 4.0-dev\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 "Popis"
-
-#: 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 "Všeobecné nastavenia"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13
-msgid "Hostname"
-msgstr "Názov hostiteľa"
-
-#: 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 "Názov"
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/sv/samba.po b/applications/luci-app-samba/po/sv/samba.po
deleted file mode 100644 (file)
index e3edbc7..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-msgstr ""
-
-#: 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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/templates/samba.pot b/applications/luci-app-samba/po/templates/samba.pot
deleted file mode 100644 (file)
index 461c315..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/tr/samba.po b/applications/luci-app-samba/po/tr/samba.po
deleted file mode 100644 (file)
index 6fa96d0..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/uk/samba.po b/applications/luci-app-samba/po/uk/samba.po
deleted file mode 100644 (file)
index e8fa025..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"PO-Revision-Date: 2020-02-19 13:29+0000\n"
-"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationssamba/uk/>\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: Weblate 3.11\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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.<br />Значення, укладені в символи (\"|\") не "
-"повинні змінюватися.<br />Вони отримують свої значення з вкладки \"Загальні "
-"параметри\"."
-
-#: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15
-msgid "Workgroup"
-msgstr "Робоча група"
diff --git a/applications/luci-app-samba/po/vi/samba.po b/applications/luci-app-samba/po/vi/samba.po
deleted file mode 100644 (file)
index 24f6d48..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-#  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 <dhppat@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/zh_Hans/samba.po b/applications/luci-app-samba/po/zh_Hans/samba.po
deleted file mode 100644 (file)
index 5135a00..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-#
-# Yangfl <mmyangfl@gmail.com>, 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: 2020-05-07 07:11+0000\n"
-"Last-Translator: 孤爺仔 <7312140@qq.com>\n"
-"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationssamba/zh_Hans/>\n"
-"Language: zh_Hans\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.1-dev\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
-#, fuzzy
-msgid "General Settings"
-msgstr "常规设置"
-
-#: applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/po/zh_Hant/samba.po b/applications/luci-app-samba/po/zh_Hant/samba.po
deleted file mode 100644 (file)
index 83a41c6..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-#
-# Yangfl <mmyangfl@gmail.com>, 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: 2020-03-09 14:34+0000\n"
-"Last-Translator: Trevor <wowpapa3232@gmail.com>\n"
-"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationssamba/zh_Hant/>\n"
-"Language: zh_Hant\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.0-dev\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/root/usr/share/rpcd/acl.d/luci-app-samba.json:3
-msgid "Grant UCI access for luci-app-samba"
-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/model/cbi/samba.lua:5
-#: applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json:3
-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/applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json b/applications/luci-app-samba/root/usr/share/luci/menu.d/luci-app-samba.json
deleted file mode 100644 (file)
index 1c38f51..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-       "admin/services/samba": {
-               "title": "Network Shares",
-               "action": {
-                       "type": "cbi",
-                       "path": "samba",
-                       "post": { "cbi.submit": true }
-               },
-               "depends": {
-                       "acl": [ "luci-app-samba" ],
-                       "uci": { "samba": true }
-               }
-       }
-}
diff --git a/applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json b/applications/luci-app-samba/root/usr/share/rpcd/acl.d/luci-app-samba.json
deleted file mode 100644 (file)
index c261084..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-       "luci-app-samba": {
-               "description": "Grant UCI access for luci-app-samba",
-               "read": {
-                       "uci": [ "samba" ]
-               },
-               "write": {
-                       "uci": [ "samba" ]
-               }
-       }
-}