summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-cifsd
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-cifsd')
-rw-r--r--applications/luci-app-cifsd/Makefile10
-rw-r--r--applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js108
-rw-r--r--applications/luci-app-cifsd/luasrc/controller/cifsd.lua11
-rw-r--r--applications/luci-app-cifsd/po/bg/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/ca/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/cs/cifsd.po111
-rw-r--r--applications/luci-app-cifsd/po/de/cifsd.po116
-rw-r--r--applications/luci-app-cifsd/po/el/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/en/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/es/cifsd.po131
-rw-r--r--applications/luci-app-cifsd/po/fr/cifsd.po112
-rw-r--r--applications/luci-app-cifsd/po/he/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/hi/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/hu/cifsd.po115
-rw-r--r--applications/luci-app-cifsd/po/it/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/ja/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/ko/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/mr/cifsd.po108
-rw-r--r--applications/luci-app-cifsd/po/ms/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/nb_NO/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/pl/cifsd.po113
-rw-r--r--applications/luci-app-cifsd/po/pt/cifsd.po112
-rw-r--r--applications/luci-app-cifsd/po/pt_BR/cifsd.po112
-rw-r--r--applications/luci-app-cifsd/po/ro/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/ru/cifsd.po107
-rw-r--r--applications/luci-app-cifsd/po/sk/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/sv/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/templates/cifsd.pot97
-rw-r--r--applications/luci-app-cifsd/po/tr/cifsd.po100
-rw-r--r--applications/luci-app-cifsd/po/uk/cifsd.po111
-rw-r--r--applications/luci-app-cifsd/po/vi/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/po/zh-cn/cifsd.po111
-rw-r--r--applications/luci-app-cifsd/po/zh-tw/cifsd.po106
-rw-r--r--applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json16
34 files changed, 0 insertions, 3349 deletions
diff --git a/applications/luci-app-cifsd/Makefile b/applications/luci-app-cifsd/Makefile
deleted file mode 100644
index ef725a705..000000000
--- a/applications/luci-app-cifsd/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# This is free software, licensed under the Apache License, Version 2.0 .
-
-include $(TOPDIR)/rules.mk
-
-LUCI_TITLE:=Network Shares - CIFSD CIFS/SMB kernel fileserver
-LUCI_DEPENDS:=+cifsd-tools
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
diff --git a/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js b/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js
deleted file mode 100644
index 0628936fd..000000000
--- a/applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js
+++ /dev/null
@@ -1,108 +0,0 @@
-'use strict';
-'require fs';
-'require form';
-'require tools.widgets as widgets';
-
-return L.view.extend({
- load: function() {
- return Promise.all([
- L.resolveDefault(fs.stat('/sbin/block'), null),
- L.resolveDefault(fs.stat('/etc/config/fstab'), null),
- L.resolveDefault(fs.exec("cifsd", ["-h"]), {}).then(function(res) { return L.toArray((res.stderr || '').match(/version : (\S+ \S+)/))[1] }),
- ]);
- },
- render: function(stats) {
- var m, s, o, v;
- v = '';
-
- m = new form.Map('cifsd', _('Network Shares'));
-
- if (stats[2]) {
- v = 'Version ' + stats[2].trim();
- }
- s = m.section(form.TypedSection, 'globals', 'Cifsd ' + v);
- s.anonymous = true;
-
- s.tab('general', _('General Settings'));
- s.tab('template', _('Edit Template'));
-
- s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
- _('Listen only on the given interface or, if unspecified, on lan'));
-
- o = s.taboption('general', form.Value, 'workgroup', _('Workgroup'));
- o.placeholder = 'WORKGROUP';
-
- o = s.taboption('general', form.Value, 'description', _('Description'));
- o.placeholder = 'Cifsd on OpenWrt';
-
- o = s.taboption('template', form.TextValue, '_tmpl',
- _('Edit the template that is used for generating the cifsd configuration.'),
- _("This is the content of the file '/etc/cifs/smb.conf.template' from which your cifsd configuration will be generated. \
- Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab."));
- o.rows = 20;
- o.cfgvalue = function(section_id) {
- return fs.trimmed('/etc/cifs/smb.conf.template');
- };
- o.write = function(section_id, formvalue) {
- return fs.write('/etc/cifs/smb.conf.template', formvalue.trim().replace(/\r\n/g, '\n') + '\n');
- };
-
-
- s = m.section(form.TableSection, 'share', _('Shared Directories'),
- _('Please add directories to share. Each directory refers to a folder on a mounted device.'));
- s.anonymous = true;
- s.addremove = true;
-
- s.option(form.Value, 'name', _('Name'));
- o = s.option(form.Value, 'path', _('Path'));
- if (stats[0] && stats[1]) {
- o.titleref = L.url('admin', 'system', 'mounts');
- }
-
- o = s.option(form.Flag, 'browseable', _('Browse-able'));
- o.enabled = 'yes';
- o.disabled = 'no';
- o.default = 'yes';
-
- o = s.option(form.Flag, 'read_only', _('Read-only'));
- o.enabled = 'yes';
- o.disabled = 'no';
- o.default = 'no'; // smb.conf default is 'yes'
- o.rmempty = false;
-
- s.option(form.Flag, 'force_root', _('Force Root'));
-
- o = s.option(form.Value, 'users', _('Allowed users'));
- o.rmempty = true;
-
- o = s.option(form.Flag, 'guest_ok', _('Allow guests'));
- o.enabled = 'yes';
- o.disabled = 'no';
- o.default = 'yes'; // smb.conf default is 'no'
- o.rmempty = false;
-
- o = s.option(form.Flag, 'inherit_owner', _('Inherit owner'));
- o.enabled = 'yes';
- o.disabled = 'no';
- o.default = 'no';
-
- o = s.option(form.Flag, 'hide_dot_files', _('Hide dot files'));
- o.enabled = 'yes';
- o.disabled = 'no';
- o.default = 'yes';
-
- o = s.option(form.Value, 'create_mask', _('Create mask'));
- o.maxlength = 4;
- o.default = '0666'; // smb.conf default is '0744'
- o.placeholder = '0666';
- o.rmempty = false;
-
- o = s.option(form.Value, 'dir_mask', _('Directory mask'));
- o.maxlength = 4;
- o.default = '0777'; // smb.conf default is '0755'
- o.placeholder = '0777';
- o.rmempty = false;
-
- return m.render();
- }
-});
diff --git a/applications/luci-app-cifsd/luasrc/controller/cifsd.lua b/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
deleted file mode 100644
index de3f9b0f9..000000000
--- a/applications/luci-app-cifsd/luasrc/controller/cifsd.lua
+++ /dev/null
@@ -1,11 +0,0 @@
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.cifsd", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/cifsd") then
- return
- end
-
- entry({"admin", "services", "cifsd"}, view("cifsd"), _("Network Shares")).dependent = true
-end
diff --git a/applications/luci-app-cifsd/po/bg/cifsd.po b/applications/luci-app-cifsd/po/bg/cifsd.po
deleted file mode 100644
index 1ee093b7f..000000000
--- a/applications/luci-app-cifsd/po/bg/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: bg\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/ca/cifsd.po b/applications/luci-app-cifsd/po/ca/cifsd.po
deleted file mode 100644
index e3b0749f1..000000000
--- a/applications/luci-app-cifsd/po/ca/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-10-20 13:09+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/ca/>\n"
-"Language: ca\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.9.1-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Descripció"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nom"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/cs/cifsd.po b/applications/luci-app-cifsd/po/cs/cifsd.po
deleted file mode 100644
index 14e96f6ab..000000000
--- a/applications/luci-app-cifsd/po/cs/cifsd.po
+++ /dev/null
@@ -1,111 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-03 08:26+0000\n"
-"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/cs/>\n"
-"Language: cs\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Povolení hosté"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Povolení uživatelé"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Možnost procházení"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Vytvořit masku"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Popis"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Maska adresáře"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Editovat šablonu"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "Editovat šablonu, která je použita pro generování konfigurace CIFSD."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Vynutit superuživatelský přístup"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Obecné nastavení"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Skrýt soubory začínající tečkou"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Zdědit vlastníka"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "Naslouchat pouze na daném rozhraní nebo, pokud není zadáno, v síti LAN"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Název"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Síťová sdílení"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Cesta"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Pouze pro čtení"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Sdílené adresáře"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Toto je obsah souboru '/etc/cifs/smb.conf.template', ze kterého bude "
-"vygenerována konfigurace CIFSD. Hodnoty ohraničené symbolem roury ('|') by "
-"neměly být měněny, protože získají hodnoty ze záložky 'Obecná nastavení'."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Skupina"
diff --git a/applications/luci-app-cifsd/po/de/cifsd.po b/applications/luci-app-cifsd/po/de/cifsd.po
deleted file mode 100644
index 5f437e347..000000000
--- a/applications/luci-app-cifsd/po/de/cifsd.po
+++ /dev/null
@@ -1,116 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-25 13:58+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/de/>\n"
-"Language: de\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Gastzugang"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Legitimierte Benutzer"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Durchsuchbar"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Berechtigungs-maske für neue Dateien"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Beschreibung"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Verzeichnis-maske"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Template bearbeiten"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-"Bearbeite die Vorlage, die für die Erstellung der cifsd-Konfiguration "
-"verwendet wird."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Root erzwingen"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Allgemeine Einstellungen"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Dotfiles ausblenden"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Besitzer Erben"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-"Nur auf die angegebene Schnittstelle reagieren oder, wenn nicht "
-"spezifiziert, auf LAN"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Name"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Netzwerk-freigaben"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Pfad"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Nur Lesen"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Freigegebene Verzeichnisse"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Dies ist der Inhalt der Datei '/etc/cifs/smb.conf.template', aus der die "
-"cifsd-Konfiguration generiert wird. Werte, die durch Pipes ('|') "
-"eingeschlossen sind, sollten nicht verändert werden. Sie erhalten ihre Werte "
-"vom Tab 'Allgemeine Einstellungen'."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Arbeitsgruppe"
diff --git a/applications/luci-app-cifsd/po/el/cifsd.po b/applications/luci-app-cifsd/po/el/cifsd.po
deleted file mode 100644
index 49d5e79be..000000000
--- a/applications/luci-app-cifsd/po/el/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-25 13:58+0000\n"
-"Last-Translator: Kostas Lampropoulos <labrok@otenet.gr>\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/el/>\n"
-"Language: el\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Διεπαφή"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/en/cifsd.po b/applications/luci-app-cifsd/po/en/cifsd.po
deleted file mode 100644
index e64973b41..000000000
--- a/applications/luci-app-cifsd/po/en/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: en\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/es/cifsd.po b/applications/luci-app-cifsd/po/es/cifsd.po
deleted file mode 100644
index 358c4bb87..000000000
--- a/applications/luci-app-cifsd/po/es/cifsd.po
+++ /dev/null
@@ -1,131 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-10-16 16:58-0300\n"
-"PO-Revision-Date: 2019-12-03 08:26+0000\n"
-"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/es/>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Permitir invitados"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Usuarios permitidos"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Navegable"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Crear máscara"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Descripción"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Máscara de directorio"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Editar plantilla"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "Edite la plantilla que se utiliza para generar la configuración cifsd."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Forzar Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Configuración general"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Ocultar archivos pequeños"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Heredar propietario"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Interfaz"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "Escuche solo en la interfaz dada o, si no se especifica, en lan"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nombre"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Recursos compartidos de red"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Ruta"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-"Por favor agregue directorios para compartir. Cada directorio hace "
-"referencia a una carpeta en un dispositivo montado."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Solo lectura"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Directorios compartidos"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Este es el contenido del archivo '/etc/cifs/smb.conf.template' desde el cual "
-"se generará su configuración cifsd. Los valores encerrados por símbolos de "
-"tubería ('|') no deben cambiarse. Obtienen sus valores de la pestaña "
-"'Configuración general'."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Grupo de trabajo"
-
-#~ msgid ""
-#~ "Edit the template that is used for generating the samba configuration."
-#~ msgstr ""
-#~ "Edite la plantilla que se utiliza para generar la configuración de samba."
-
-#~ msgid ""
-#~ "This is the content of the file '/etc/cifs/smb.conf.template' from which "
-#~ "your samba configuration will be generated. Values enclosed by pipe "
-#~ "symbols ('|') should not be changed. They get their values from the "
-#~ "'General Settings' tab."
-#~ msgstr ""
-#~ "Este es el contenido del archivo '/etc/cifs/smb.conf.template' a partir "
-#~ "del cual se generará su configuración de samba. Los valores encerrados "
-#~ "por símbolos de tubería ('|') no deben cambiarse. Obtienen sus valores de "
-#~ "la pestaña 'Configuración general'."
diff --git a/applications/luci-app-cifsd/po/fr/cifsd.po b/applications/luci-app-cifsd/po/fr/cifsd.po
deleted file mode 100644
index d1fa4a812..000000000
--- a/applications/luci-app-cifsd/po/fr/cifsd.po
+++ /dev/null
@@ -1,112 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-10-24 13:55+0000\n"
-"Last-Translator: Nathan <bonnemainsnathan@gmail.com>\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/fr/>\n"
-"Language: fr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.9.1-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Autoriser les invités"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Utilisateurs autorisés"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-#, fuzzy
-msgid "Browse-able"
-msgstr "Autorisé à parcourir"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Créer un masque"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Description"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Masque de répertoire"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Modifier le modèle"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-"Modifier le modèle qui est utilisé pour la génération de a configuration de "
-"cifsd."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Forcer le Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Paramètres généraux"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-"Écoute uniquement l'interface donnée, ou si non spécifiée, le réseau local"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nom"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Partages réseau"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Chemin"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Lecture seule"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Répertoires partagés"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Groupe de travail"
diff --git a/applications/luci-app-cifsd/po/he/cifsd.po b/applications/luci-app-cifsd/po/he/cifsd.po
deleted file mode 100644
index ae58ea1c4..000000000
--- a/applications/luci-app-cifsd/po/he/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: he\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/hi/cifsd.po b/applications/luci-app-cifsd/po/hi/cifsd.po
deleted file mode 100644
index b281fb0a1..000000000
--- a/applications/luci-app-cifsd/po/hi/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: hi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/hu/cifsd.po b/applications/luci-app-cifsd/po/hu/cifsd.po
deleted file mode 100644
index e8c92a372..000000000
--- a/applications/luci-app-cifsd/po/hu/cifsd.po
+++ /dev/null
@@ -1,115 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-16 23:26+0000\n"
-"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/hu/>\n"
-"Language: hu\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Vendégek engedélyezése"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Engedélyezett felhasználók"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Tallózható"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Létrehozási maszk"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Leírás"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Könyvtármaszk"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Sablon szerkesztése"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-"A sablon szerkesztése, amely a cifsd beállítások előállításához lesz "
-"használva."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Rendszergazda kényszerítése"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Általános beállítások"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Rejtett fájlok elrejtése"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Tulajdonos öröklése"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Csatoló"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-"Figyelés csak a megadott csatolón, vagy a helyi hálózaton, ha nincs megadva"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Név"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Hálózati megosztások"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Útvonal"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Csak olvasható"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Megosztott könyvtárak"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Ez az „/etc/cifs/smb.conf.template” fájl tartalma, amelyből a cifsd "
-"beállítások előállításra kerülnek. A csőszimbólumok („|”) között lévő "
-"értékeket nem szabad megváltoztatni. Azok az „Általános beállítások” lapról "
-"kapják az értékeiket."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Munkacsoport"
diff --git a/applications/luci-app-cifsd/po/it/cifsd.po b/applications/luci-app-cifsd/po/it/cifsd.po
deleted file mode 100644
index 0b3146587..000000000
--- a/applications/luci-app-cifsd/po/it/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-25 13:58+0000\n"
-"Last-Translator: Ansuel Smith <ansuelsmth@gmail.com>\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/it/>\n"
-"Language: it\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nome"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/ja/cifsd.po b/applications/luci-app-cifsd/po/ja/cifsd.po
deleted file mode 100644
index 66b2abfec..000000000
--- a/applications/luci-app-cifsd/po/ja/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: ja\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/ko/cifsd.po b/applications/luci-app-cifsd/po/ko/cifsd.po
deleted file mode 100644
index 3996a6853..000000000
--- a/applications/luci-app-cifsd/po/ko/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: ko\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/mr/cifsd.po b/applications/luci-app-cifsd/po/mr/cifsd.po
deleted file mode 100644
index 67a224f5b..000000000
--- a/applications/luci-app-cifsd/po/mr/cifsd.po
+++ /dev/null
@@ -1,108 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-28 03:17+0000\n"
-"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/mr/>\n"
-"Language: mr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.10\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "अतिथींना परवानगी द्या"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "अनुमत वापरकर्ते"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "ब्राउझ-सक्षम"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "मुखवटा तयार करा"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "वर्णन"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "निर्देशिका मास्क"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "टेम्पलेट संपादित करा"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "सामान्य सेटिंग्ज"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "नाव"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "नेटवर्क शेअर्स"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "पथ"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-"कृपया सामायिक करण्यासाठी निर्देशिका जोडा. प्रत्येक निर्देशिका माउंट केलेल्या "
-"डिव्हाइसवरील फोल्डरचा संदर्भ देते."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "केवळ-वाचनीय"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "सामायिक निर्देशिका"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "कार्यसमूह"
diff --git a/applications/luci-app-cifsd/po/ms/cifsd.po b/applications/luci-app-cifsd/po/ms/cifsd.po
deleted file mode 100644
index 6e667c83a..000000000
--- a/applications/luci-app-cifsd/po/ms/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-18 04:21+0000\n"
-"Last-Translator: Pusak Hitam <thegame.gamesky@gmail.com>\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/ms/>\n"
-"Language: ms\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Keterangan"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/nb_NO/cifsd.po b/applications/luci-app-cifsd/po/nb_NO/cifsd.po
deleted file mode 100644
index c42f3d0d4..000000000
--- a/applications/luci-app-cifsd/po/nb_NO/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-10-30 03:22+0000\n"
-"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/nb_NO/>\n"
-"Language: nb_NO\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.9.1\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/pl/cifsd.po b/applications/luci-app-cifsd/po/pl/cifsd.po
deleted file mode 100644
index 093d03573..000000000
--- a/applications/luci-app-cifsd/po/pl/cifsd.po
+++ /dev/null
@@ -1,113 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-15 21:23+0000\n"
-"Last-Translator: Michal L <michalrmsmi@wp.pl>\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/pl/>\n"
-"Language: pl\n"
-"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.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Zezwalaj Gościom"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Użytkownicy z prawem dostępu"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Utwórz maskę"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Opis"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Maska katalogu"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Edytuj szablon"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "Edytuj szablon, który jest używany do generowania konfiguracji cifsd."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Ustawienia główne"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Ukryj pliki zaczynające się od kropki"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Interfejs"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na LANie"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nazwa"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Udziały sieciowe"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Ścieżka"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Tylko do odczytu"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Udostępniane katalogi"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"To jest zawartość pliku '/etc/cifs/smb.conf.template', na podstawie którego "
-"zostanie wygenerowana konfiguracja cifsd. Wartości otoczone symbolem kreski "
-"pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną pobrane z "
-"zakładki \"Ustawienia ogólne\"."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Grupa robocza"
diff --git a/applications/luci-app-cifsd/po/pt/cifsd.po b/applications/luci-app-cifsd/po/pt/cifsd.po
deleted file mode 100644
index 7a8ebe771..000000000
--- a/applications/luci-app-cifsd/po/pt/cifsd.po
+++ /dev/null
@@ -1,112 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-02 16:06+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/pt/>\n"
-"Language: pt\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Permitir Convidados"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Utilizadores Permitidos"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Navegável"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Criar máscara"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Descrição"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Máscara do diretório"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Editar Modelo"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "Editar o modelo que é usado para gerar a configuração cifsd."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Forçar Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Configurações Gerais"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Ocultar ficheiros de ponto"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Herdar proprietário"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "Ouvir apenas na interface indicada ou, se não especificado, na LAN"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nome"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Partilhas da Rede"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Caminho"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Apenas Leitura"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Directórios Partilhados"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Este é o conteúdo do ficheiro '/etc/cifs/smb.conf.template' do qual a sua "
-"configuração cifsd será gerada. Os valores incluídos pelos símbolos dos "
-"tubos ('|') não devem ser alterados. Eles obtêm os seus valores da aba "
-"'Configurações Gerais'."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Grupo de trabalho"
diff --git a/applications/luci-app-cifsd/po/pt_BR/cifsd.po b/applications/luci-app-cifsd/po/pt_BR/cifsd.po
deleted file mode 100644
index 1ecc90c14..000000000
--- a/applications/luci-app-cifsd/po/pt_BR/cifsd.po
+++ /dev/null
@@ -1,112 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-26 17:10+0000\n"
-"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscifsd/pt_BR/>\n"
-"Language: pt_BR\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Permitir convidados"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Usuários permitidos"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Navegável"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Máscara de criação"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Descrição"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Máscara do diretório"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Editar modelo"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "Edita o modelo que é usado para gerar a configuração cifsd."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Forçar Usuário Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Configurações Gerais"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr "Ocultar arquivos-ponto (dotfiles)"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Herdar o dono"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "Ouvir apenas na interface fornecida ou, se não for especificado, na LAN"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Nome"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Compartilhamentos de Rede"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Caminho"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-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-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Somente leitura"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Diretórios Compartilhados"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"Este é o conteúdo do arquivo \"/etc/cifs/smb.conf.template\" a partir do "
-"qual sua configuração cifsd será gerada. Os valores delimitados por símbolos "
-"de tubulação (\"|\") não devem ser alterados. Eles obtêm seus valores na "
-"guia \"Configurações Gerais\"."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Grupo de trabalho"
diff --git a/applications/luci-app-cifsd/po/ro/cifsd.po b/applications/luci-app-cifsd/po/ro/cifsd.po
deleted file mode 100644
index f389f36f6..000000000
--- a/applications/luci-app-cifsd/po/ro/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: ro\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/ru/cifsd.po b/applications/luci-app-cifsd/po/ru/cifsd.po
deleted file mode 100644
index b3bac30cc..000000000
--- a/applications/luci-app-cifsd/po/ru/cifsd.po
+++ /dev/null
@@ -1,107 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-26 18:23+0000\n"
-"Last-Translator: Alex Ky <esthomolupus@gmail.com>\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/ru/>\n"
-"Language: ru\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
-"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 3.10\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Описание"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Основные настройки"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Имя"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/sk/cifsd.po b/applications/luci-app-cifsd/po/sk/cifsd.po
deleted file mode 100644
index 8065574e5..000000000
--- a/applications/luci-app-cifsd/po/sk/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: sk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/sv/cifsd.po b/applications/luci-app-cifsd/po/sv/cifsd.po
deleted file mode 100644
index c4ae3cb8a..000000000
--- a/applications/luci-app-cifsd/po/sv/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-10-17 20:23+0000\n"
-"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n"
-"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/sv/>\n"
-"Language: sv\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.9.1-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Tillåt gäster"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Tillåtna användare"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Skapa mask"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Beskrivning"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Mask för mapp"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Redigera mall"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Generella inställningar"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Gränssnitt"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Namn"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Nätverksdelningar"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Genväg"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Endast läsbar"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Delade mappar"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Arbetsgrupp"
diff --git a/applications/luci-app-cifsd/po/templates/cifsd.pot b/applications/luci-app-cifsd/po/templates/cifsd.pot
deleted file mode 100644
index 5bc2d2c51..000000000
--- a/applications/luci-app-cifsd/po/templates/cifsd.pot
+++ /dev/null
@@ -1,97 +0,0 @@
-msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/tr/cifsd.po b/applications/luci-app-cifsd/po/tr/cifsd.po
deleted file mode 100644
index 4497c9e72..000000000
--- a/applications/luci-app-cifsd/po/tr/cifsd.po
+++ /dev/null
@@ -1,100 +0,0 @@
-msgid ""
-msgstr ""
-"Language: tr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/uk/cifsd.po b/applications/luci-app-cifsd/po/uk/cifsd.po
deleted file mode 100644
index 65d7f4d86..000000000
--- a/applications/luci-app-cifsd/po/uk/cifsd.po
+++ /dev/null
@@ -1,111 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-30 21:06+0000\n"
-"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/uk/>\n"
-"Language: uk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
-"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "Дозволити гостьовий вхід"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "Дозволені користувачі"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "Дост. для перегл."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "Створити маску"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Опис"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "Маска каталогу"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "Редагувати шаблон"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "Примусово Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "Загальні параметри"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "Успадковувати власника"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "Інтерфейс"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-"Прослуховувати тільки на цьому інтерфейсі, якщо <em>не визначено</em> – на "
-"всіх"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "Ім'я"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "Спільні мережеві ресурси"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "Шлях"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-"Додайте каталоги для спільного доступу. Кожен каталог посилається на папку "
-"на підключеному пристрої."
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "Тільки читання"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "Спільні каталоги"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "Робоча група"
diff --git a/applications/luci-app-cifsd/po/vi/cifsd.po b/applications/luci-app-cifsd/po/vi/cifsd.po
deleted file mode 100644
index 4476fc3e1..000000000
--- a/applications/luci-app-cifsd/po/vi/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-20 17:07+0000\n"
-"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n"
-"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscifsd/vi/>\n"
-"Language: vi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "Mô tả"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/po/zh-cn/cifsd.po b/applications/luci-app-cifsd/po/zh-cn/cifsd.po
deleted file mode 100644
index 425a5dfd5..000000000
--- a/applications/luci-app-cifsd/po/zh-cn/cifsd.po
+++ /dev/null
@@ -1,111 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2019-11-13 23:05+0000\n"
-"Last-Translator: Chen Minqiang <ptpt52@gmail.com>\n"
-"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscifsd/zh_Hans/>\n"
-"Language: zh-cn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr "允许匿名用户"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr "允许用户"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr "可浏览"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr "创建权限掩码"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "描述"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr "目录权限掩码"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr "编辑模板"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr "编辑用来生成 cifsd 设置的模板。"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr "强制 Root"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr "基本设置"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr "继承所有者"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr "接口"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr "仅监听指定的接口,未指定则监听 lan"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr "名称"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr "网络共享"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr "目录"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr "只读"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr "共享目录"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-"这是将从其上生成 cifsd 配置的文件“/etc/cifs/smb.conf.template”的内容。由管道"
-"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr "工作组"
diff --git a/applications/luci-app-cifsd/po/zh-tw/cifsd.po b/applications/luci-app-cifsd/po/zh-tw/cifsd.po
deleted file mode 100644
index 27988e81d..000000000
--- a/applications/luci-app-cifsd/po/zh-tw/cifsd.po
+++ /dev/null
@@ -1,106 +0,0 @@
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-12-19 19:40+0000\n"
-"Last-Translator: 孤爺仔 <7312140@qq.com>\n"
-"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscifsd/zh_Hant/>\n"
-"Language: zh-tw\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:78
-msgid "Allow guests"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:75
-msgid "Allowed users"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:62
-msgid "Browse-able"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:94
-msgid "Create mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:35
-msgid "Description"
-msgstr "說明"
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:100
-msgid "Directory mask"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:27
-msgid "Edit Template"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:39
-msgid "Edit the template that is used for generating the cifsd configuration."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:73
-msgid "Force Root"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:26
-msgid "General Settings"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:89
-msgid "Hide dot files"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:84
-msgid "Inherit owner"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:29
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:30
-msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:56
-msgid "Name"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:18
-#: applications/luci-app-cifsd/luasrc/controller/cifsd.lua:10
-msgid "Network Shares"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:57
-msgid "Path"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:52
-msgid ""
-"Please add directories to share. Each directory refers to a folder on a "
-"mounted device."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:67
-msgid "Read-only"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:51
-msgid "Shared Directories"
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:40
-msgid ""
-"This is the content of the file '/etc/cifs/smb.conf.template' from which "
-"your cifsd configuration will be generated. Values enclosed by pipe symbols "
-"('|') should not be changed. They get their values from the 'General "
-"Settings' tab."
-msgstr ""
-
-#: applications/luci-app-cifsd/htdocs/luci-static/resources/view/cifsd.js:32
-msgid "Workgroup"
-msgstr ""
diff --git a/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json b/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json
deleted file mode 100644
index aed904862..000000000
--- a/applications/luci-app-cifsd/root/usr/share/rpcd/acl.d/luci-app-cifsd.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "luci-app-cifsd": {
- "description": "Grant access to LuCI app cifsd",
- "read": {
- "file": {
- "/etc/cifs/smb.conf.template": [ "read" ],
- "/usr/sbin/cifsd": [ "exec" ]
- }
- },
- "write": {
- "file": {
- "/etc/cifs/smb.conf.template": [ "write" ]
- }
- }
- }
-}