summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-samba4
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-samba4')
-rw-r--r--applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js41
-rw-r--r--applications/luci-app-samba4/po/ar/samba4.po82
-rw-r--r--applications/luci-app-samba4/po/bg/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/bn_BD/samba4.po83
-rw-r--r--applications/luci-app-samba4/po/ca/samba4.po80
-rw-r--r--applications/luci-app-samba4/po/cs/samba4.po82
-rw-r--r--applications/luci-app-samba4/po/de/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/el/samba4.po80
-rw-r--r--applications/luci-app-samba4/po/en/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/es/samba4.po78
-rw-r--r--applications/luci-app-samba4/po/fi/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/fr/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/he/samba4.po86
-rw-r--r--applications/luci-app-samba4/po/hi/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/hu/samba4.po80
-rw-r--r--applications/luci-app-samba4/po/it/samba4.po80
-rw-r--r--applications/luci-app-samba4/po/ja/samba4.po81
-rw-r--r--applications/luci-app-samba4/po/ko/samba4.po87
-rw-r--r--applications/luci-app-samba4/po/mr/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/ms/samba4.po80
-rw-r--r--applications/luci-app-samba4/po/nb_NO/samba4.po86
-rw-r--r--applications/luci-app-samba4/po/nl/samba4.po200
-rw-r--r--applications/luci-app-samba4/po/pl/samba4.po78
-rw-r--r--applications/luci-app-samba4/po/pt/samba4.po78
-rw-r--r--applications/luci-app-samba4/po/pt_BR/samba4.po78
-rw-r--r--applications/luci-app-samba4/po/ro/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/ru/samba4.po78
-rw-r--r--applications/luci-app-samba4/po/sk/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/sv/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/templates/samba4.pot72
-rw-r--r--applications/luci-app-samba4/po/tr/samba4.po156
-rw-r--r--applications/luci-app-samba4/po/uk/samba4.po89
-rw-r--r--applications/luci-app-samba4/po/vi/samba4.po72
-rw-r--r--applications/luci-app-samba4/po/zh_Hans/samba4.po86
-rw-r--r--applications/luci-app-samba4/po/zh_Hant/samba4.po110
35 files changed, 1589 insertions, 1334 deletions
diff --git a/applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js b/applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js
index 608be887be..268aad86d3 100644
--- a/applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js
+++ b/applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js
@@ -1,6 +1,7 @@
'use strict';
'require view';
'require fs';
+'require uci';
'require form';
'require tools.widgets as widgets';
@@ -18,7 +19,7 @@ return view.extend({
render: function(stats) {
var m, s, o, v;
v = '';
-
+
m = new form.Map('samba4', _('Network Shares'));
if (stats[5] && stats[5].code === 0) {
@@ -30,38 +31,52 @@ return view.extend({
s.tab('general', _('General Settings'));
s.tab('template', _('Edit Template'));
- s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
+ o = s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
_('Listen only on the given interface or, if unspecified, on lan'));
+ o.multiple = true;
+ o.cfgvalue = function(section_id) {
+ return L.toArray(uci.get('samba4', section_id, 'interface'));
+ };
+ o.write = function(section_id, formvalue) {
+ var cfgvalue = this.cfgvalue(section_id),
+ oldNetworks = L.toArray(cfgvalue),
+ newNetworks = L.toArray(formvalue);
+ oldNetworks.sort();
+ newNetworks.sort();
+ if (oldNetworks.join(' ') == newNetworks.join(' '))
+ return;
+ return uci.set('samba4', section_id, 'interface', newNetworks.join(' '));
+ };
o = s.taboption('general', form.Value, 'workgroup', _('Workgroup'));
o.placeholder = 'WORKGROUP';
o = s.taboption('general', form.Value, 'description', _('Description'));
o.placeholder = 'Samba4 on OpenWrt';
-
+
s.taboption('general', form.Flag, 'enable_extra_tuning', _('Enable extra Tuning'),
_('Enable some community driven tuning parameters, that may improve write speeds and better operation via WiFi.\
Not recommend if multiple clients write to the same files, at the same time!'));
-
+
s.taboption('general', form.Flag, 'disable_async_io', _('Force synchronous I/O'),
_('On lower-end devices may increase speeds, by forceing synchronous I/O instead of the default asynchronous.'));
s.taboption('general', form.Flag, 'macos', _('Enable macOS compatible shares'),
_('Enables Apple\'s AAPL extension globally and adds macOS compatibility options to all shares.'));
-
+
s.taboption('general', form.Flag, 'allow_legacy_protocols', _('Allow legacy (insecure) protocols/authentication.'),
_('Allow legacy smb(v1)/Lanman connections, needed for older devices without smb(v2.1/3) support.'));
if (stats[2].type === 'file') {
- s.taboption('general', form.Flag, 'disable_netbios', _('Disable Netbios'))
+ s.taboption('general', form.Flag, 'disable_netbios', _('Disable Netbios'))
}
if (stats[3].type === 'file') {
- s.taboption('general', form.Flag, 'disable_ad_dc', _('Disable Active Directory Domain Controller'))
+ s.taboption('general', form.Flag, 'disable_ad_dc', _('Disable Active Directory Domain Controller'))
}
if (stats[4].type === 'file') {
- s.taboption('general', form.Flag, 'disable_winbind', _('Disable Winbind'))
+ s.taboption('general', form.Flag, 'disable_winbind', _('Disable Winbind'))
}
-
+
o = s.taboption('template', form.TextValue, '_tmpl',
_('Edit the template that is used for generating the samba configuration.'),
_("This is the content of the file '/etc/samba/smb.conf.template' from which your samba configuration will be generated. \
@@ -112,7 +127,7 @@ return view.extend({
o.enabled = 'yes';
o.disabled = 'no';
o.default = 'no';
-
+
o = s.option(form.Flag, 'inherit_owner', _('Inherit owner'));
o.enabled = 'yes';
o.disabled = 'no';
@@ -129,12 +144,12 @@ return view.extend({
o.default = '0777'; // smb.conf default is '0755'
o.placeholder = '0777';
o.rmempty = false;
-
+
o = s.option(form.Value, 'vfs_objects', _('Vfs objects'));
o.rmempty = true;
-
+
s.option(form.Flag, 'timemachine', _('Apple Time-machine share'));
-
+
o = s.option(form.Value, 'timemachine_maxsize', _('Time-machine size in GB'));
o.rmempty = true;
o.maxlength = 5;
diff --git a/applications/luci-app-samba4/po/ar/samba4.po b/applications/luci-app-samba4/po/ar/samba4.po
index 8194abdbb5..2518a950aa 100644
--- a/applications/luci-app-samba4/po/ar/samba4.po
+++ b/applications/luci-app-samba4/po/ar/samba4.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-22 15:23+0100\n"
-"PO-Revision-Date: 2020-07-10 10:42+0000\n"
-"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n"
+"PO-Revision-Date: 2021-03-03 01:50+0000\n"
+"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/ar/>\n"
"Language: ar\n"
@@ -13,153 +13,153 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.5\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "السماح للضيوف"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "الوصف"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr ""
+msgstr "الاعدادات العامة"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
-msgstr ""
+msgstr "واجهه"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "اسم"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "مسار"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -167,15 +167,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/bg/samba4.po b/applications/luci-app-samba4/po/bg/samba4.po
index 8fe72c17dc..abed27b482 100644
--- a/applications/luci-app-samba4/po/bg/samba4.po
+++ b/applications/luci-app-samba4/po/bg/samba4.po
@@ -14,94 +14,94 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Описание"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -109,56 +109,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -166,15 +166,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/bn_BD/samba4.po b/applications/luci-app-samba4/po/bn_BD/samba4.po
index 5d3e162052..6f061c0475 100644
--- a/applications/luci-app-samba4/po/bn_BD/samba4.po
+++ b/applications/luci-app-samba4/po/bn_BD/samba4.po
@@ -3,104 +3,105 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-22 15:23+0100\n"
-"PO-Revision-Date: 2011-10-25 21:26+0200\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2021-03-05 07:34+0000\n"
+"Last-Translator: Anup Debnath <anupdebnath7@gmail.com>\n"
+"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationssamba4/bn_BD/>\n"
"Language: bn_BD\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Pootle 2.0.4\n"
+"X-Generator: Weblate 4.5.1-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
-msgstr ""
+msgstr "বর্ণনা"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -108,56 +109,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -165,15 +166,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/ca/samba4.po b/applications/luci-app-samba4/po/ca/samba4.po
index 585d0152f8..c1ec946e0f 100644
--- a/applications/luci-app-samba4/po/ca/samba4.po
+++ b/applications/luci-app-samba4/po/ca/samba4.po
@@ -5,8 +5,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-01-10 12:22+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
+"PO-Revision-Date: 2021-03-08 13:03+0000\n"
+"Last-Translator: BenRoura <benrouravkg@gmail.com>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/ca/>\n"
"Language: ca\n"
@@ -14,153 +14,153 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10.1\n"
+"X-Generator: Weblate 4.5.1\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permet convidats"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Usuaris permesos"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Crea màscara"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descripció"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Màscara de directori"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Edita plantilla"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Edita la plantilla que s'usa per generar la configuració de samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Ajusts generals"
+msgstr "Paràmetres generals"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interfície"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nom"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Comparticions de xarxa"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Ruta"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Només lectura"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Directoris compartits"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -172,15 +172,15 @@ msgstr ""
"barra ('|') no es deuen canviar. Reben els seus valors de la pestanya "
"'Ajusts generals'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Grup de treball"
diff --git a/applications/luci-app-samba4/po/cs/samba4.po b/applications/luci-app-samba4/po/cs/samba4.po
index a6e0eefbec..4daca258f4 100644
--- a/applications/luci-app-samba4/po/cs/samba4.po
+++ b/applications/luci-app-samba4/po/cs/samba4.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2019-12-21 21:42+0000\n"
-"Last-Translator: Jiri Tersel <jiri.tersel@seznam.cz>\n"
+"PO-Revision-Date: 2021-04-09 08:04+0000\n"
+"Last-Translator: Pavel Pernička <pernicka.pa@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/cs/>\n"
"Language: cs\n"
@@ -10,84 +10,84 @@ msgstr ""
"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\n"
+"X-Generator: Weblate 4.6-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Povolení hosté"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
-msgstr ""
+msgstr "Povolit starší (nezabezpečené) protokoly/autentizaci"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Povolení uživatelé"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Sdílení Apple Time-machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Možnost procházení"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Vytvořit masku"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Popis"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Maska adresáře"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Zakázat řadič domény služby Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Zakázat NetBIOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Zakázat Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Editovat šablonu"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"Editovat šablonu, která je použita pro generování konfiguračního souboru pro "
"sambu."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Povolit sdílení kompatibilní s macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -95,48 +95,48 @@ msgstr ""
"Povoluje rozšíření AAPL společnosti Apple globálně a do všech sdílených "
"složek přidává možnosti kompatibility s macOS."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Vynutit superuživatelský přístup"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Vynutit synchronní I/O"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Obecné nastavení"
+msgstr "Obecná nastavení"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Pouze pro hosty"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Zdědit vlastníka"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Rozhraní"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Název"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Síťová sdílení"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -144,11 +144,11 @@ msgstr ""
"U levnějších zařízení může zvýšit rychlost tím, že se vynutí synchronní I/O "
"místo výchozího asynchronního."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Cesta"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -156,15 +156,15 @@ 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-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Pouze pro čtení"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Sdílené adresáře"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -175,15 +175,15 @@ msgstr ""
"konfigurace samby generována. Hodnoty uzavřené rourou (\"|\"), by se neměly "
"měnit. Tyto hodnoty jsou brány ze záložky \"Obecná nastavení\"."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Velikost Time-machine v GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "VFS objekty"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Skupina"
diff --git a/applications/luci-app-samba4/po/de/samba4.po b/applications/luci-app-samba4/po/de/samba4.po
index 4d9b711ca5..0ad402c732 100644
--- a/applications/luci-app-samba4/po/de/samba4.po
+++ b/applications/luci-app-samba4/po/de/samba4.po
@@ -14,15 +14,15 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Gastzugang"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Erlaube veraltete (unsichere) Protokolle/Authentifizierungen."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,68 +30,68 @@ msgstr ""
"Erlaube veraltete smb(v1)/Lanman-Verbindungen, die für ältere Geräte ohne "
"smb(v2.1/3)-Unterstützung benötigt werden."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Legitimierte Benutzer"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Apple Time-Machine Freigabe"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Durchsuchbar"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Berechtigungs-maske für neue Dateien"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Beschreibung"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Verzeichnis-maske"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Deaktiviere Active Directory Domain Controller"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Deaktiviere Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Deaktiviere Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Template bearbeiten"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-"
"Konfigurationsdateien verwendet wird."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "aktiviere macOS kompatible Freigaben"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -99,15 +99,15 @@ msgstr ""
"Aktiviert Apples AAPL-Erweiterung global und fügt allen Freigaben MacOS-"
"Kompatibilitätsoptionen hinzu."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Root erzwingen"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "synchrone I/O erzwingen"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
@@ -115,34 +115,34 @@ msgstr "Allgemeine Einstellungen"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Nur Gaeste"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Besitzer Erben"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Schnittstelle"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Name"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Netzwerk-freigaben"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -150,11 +150,11 @@ msgstr ""
"Das Erzwingen von sychronous I/O (statt asynchronous I/O Default) kann auf "
"leistungsschwachen Geräten die Geschwindigkeit erhöhen."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Pfad"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -162,15 +162,15 @@ 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-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Nur Lesen"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Freigegebene Verzeichnisse"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -183,15 +183,15 @@ msgstr ""
"werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab "
"'Allgemeine Einstellungen' ersetzt werden."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time-Machine Größe in GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "VFS-Objekte"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Arbeitsgruppe"
diff --git a/applications/luci-app-samba4/po/el/samba4.po b/applications/luci-app-samba4/po/el/samba4.po
index eb6c57fc5f..40235b0128 100644
--- a/applications/luci-app-samba4/po/el/samba4.po
+++ b/applications/luci-app-samba4/po/el/samba4.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-28 02:08+0200\n"
-"PO-Revision-Date: 2020-03-14 19:36+0000\n"
-"Last-Translator: lamprakis <lamprakisa@yahoo.gr>\n"
+"PO-Revision-Date: 2021-01-23 03:57+0000\n"
+"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/el/>\n"
"Language: el\n"
@@ -12,153 +12,153 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.0-dev\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Περιγραφή"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr ""
+msgstr "Γενικές ρυθμίσεις"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Διεπαφή"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Όνομα"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -166,14 +166,14 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/en/samba4.po b/applications/luci-app-samba4/po/en/samba4.po
index 60fe7d6f4f..e202a07137 100644
--- a/applications/luci-app-samba4/po/en/samba4.po
+++ b/applications/luci-app-samba4/po/en/samba4.po
@@ -13,94 +13,94 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.4\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Allow guests"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Allowed users"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Create mask"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Description"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Directory mask"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Edit template"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Edit the template that is used for generating the Samba configuration."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "General settings"
@@ -108,56 +108,56 @@ msgstr "General settings"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Name"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Network Shares"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Path"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Read-only"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Shared Directories"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -169,15 +169,15 @@ msgstr ""
"('|') should not be changed. They get their values from the 'General "
"settings' tab."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Workgroup"
diff --git a/applications/luci-app-samba4/po/es/samba4.po b/applications/luci-app-samba4/po/es/samba4.po
index 3db088373b..bb74b31c41 100644
--- a/applications/luci-app-samba4/po/es/samba4.po
+++ b/applications/luci-app-samba4/po/es/samba4.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-07-06 11:07+0000\n"
-"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
+"PO-Revision-Date: 2020-08-07 03:34+0000\n"
+"Last-Translator: Álvaro Fernández Rojas <noltari@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/es/>\n"
"Language: es\n"
@@ -14,15 +14,15 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permitir invitados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Permitir protocolos/autenticación heredados (inseguros)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,59 +30,59 @@ msgstr ""
"Permitir conexiones smb(v1)/Lanman heredadas, necesarias para dispositivos "
"más antiguos sin soporte smb (v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Usuarios permitidos"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Compartir como Apple Time-Machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Navegable"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Crear máscara"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descripción"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Máscara de directorio"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Desactivar el controlador de dominio de directorio activo"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Desactivar Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Desactivar Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Editar plantilla"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Editar la plantilla usada para generar la configuración de samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr "Activar ajuste adicional"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Activar compatibilidad de Samba con macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
@@ -93,7 +93,7 @@ msgstr ""
"Fi. ¡No se recomienda si varios clientes escriben en los mismos archivos, al "
"mismo tiempo!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -101,15 +101,15 @@ msgstr ""
"Activa la extensión AAPL de Apple globalmente y agrega opciones de "
"compatibilidad de macOS a todos los recursos compartidos."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Forzar Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Forzar E/S sincrónica"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Configuración general"
@@ -117,32 +117,32 @@ msgstr "Configuración general"
msgid "Grant access to LuCI app samba4"
msgstr "Conceder acceso a la aplicación samba4 de LuCI"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Sólo invitados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Heredar propietario"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interfaz"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nombre"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Recursos compartidos de red"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -150,11 +150,11 @@ msgstr ""
"En dispositivos de gama baja, puede aumentar la velocidad al forzar E/ S "
"sincrónica en lugar de la predeterminada."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Ruta"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -162,15 +162,15 @@ msgstr ""
"Por favor agregue directorios para compartir. Cada directorio hace "
"referencia a una carpeta en un dispositivo montado."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
-msgstr "Sólo lectura"
+msgstr "Solo lectura"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Directorios compartidos"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -182,15 +182,15 @@ msgstr ""
"delimitados por plecas («|»); estos reciben sus valores de la pestaña "
"«Configuración general»."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Tamaño del Time-Machine en GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Objetos vfs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Grupo de trabajo"
diff --git a/applications/luci-app-samba4/po/fi/samba4.po b/applications/luci-app-samba4/po/fi/samba4.po
index 1ce471e2cc..43af2da504 100644
--- a/applications/luci-app-samba4/po/fi/samba4.po
+++ b/applications/luci-app-samba4/po/fi/samba4.po
@@ -14,94 +14,94 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Kuvaus"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Yleisasetukset"
@@ -109,56 +109,56 @@ msgstr "Yleisasetukset"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Sovitin"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nimi"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -166,15 +166,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/fr/samba4.po b/applications/luci-app-samba4/po/fr/samba4.po
index b560d13875..38a936a9cd 100644
--- a/applications/luci-app-samba4/po/fr/samba4.po
+++ b/applications/luci-app-samba4/po/fr/samba4.po
@@ -14,15 +14,15 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.2-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Autoriser les invités"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Autoriser les protocoles/authentification hérités (non sécurisés)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,66 +30,66 @@ msgstr ""
"Autorise les connexions smb (v1)/Lanman héritées, nécessaires pour les "
"appareils plus anciens sans prise en charge smb (v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Utilisateurs autorisés"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Partage Apple Time-machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Navigable"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Créer un masque"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Description"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Masque de répertoire"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Désactiver le contrôleur de domaine Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Désactiver Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Désactiver Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Modifier le modèle"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Modifiez le modèle utilisé pour générer la configuration de samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Activer les partages compatibles macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -97,15 +97,15 @@ msgstr ""
"Active l'extension AAPL d'Apple à l'échelle mondiale et ajoute des options "
"de compatibilité macOS à tous les partages."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Forcer le Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Forcer les I/O synchrones"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Paramètres généraux"
@@ -113,32 +113,32 @@ msgstr "Paramètres généraux"
msgid "Grant access to LuCI app samba4"
msgstr "Accorder l'accès à l'application LuCI samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Invités seulement"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Hériter du propriétaire"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interface"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "Écoutez uniquement sur l'interface donnée ou, si non spécifié, sur LAN"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nom"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Partages réseau"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -146,11 +146,11 @@ msgstr ""
"Sur les appareils bas de gamme, les vitesses peuvent augmenter en forçant "
"les I/O synchrones au lieu des asynchrones par défaut."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Chemin"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -158,15 +158,15 @@ 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-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Lecture seule"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Répertoires partagés"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -178,15 +178,15 @@ msgstr ""
"symboles de tuyau ('|') ne doivent pas être modifiées. Ils obtiennent leurs "
"valeurs dans l'onglet 'Paramètres généraux'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Taille en Go de la Time-machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Objets Vfs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Groupe de travail"
diff --git a/applications/luci-app-samba4/po/he/samba4.po b/applications/luci-app-samba4/po/he/samba4.po
index 97f558f87a..e8cbe89fe2 100644
--- a/applications/luci-app-samba4/po/he/samba4.po
+++ b/applications/luci-app-samba4/po/he/samba4.po
@@ -1,101 +1,105 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2021-01-15 22:31+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationssamba4/he/>\n"
+"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
-msgstr ""
+msgstr "אפשר לאורחים"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
-msgstr ""
+msgstr "תיאור"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -103,56 +107,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
-msgstr ""
+msgstr "מנשק"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -160,14 +164,14 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/hi/samba4.po b/applications/luci-app-samba4/po/hi/samba4.po
index 5490d5b5f7..78c3c3e604 100644
--- a/applications/luci-app-samba4/po/hi/samba4.po
+++ b/applications/luci-app-samba4/po/hi/samba4.po
@@ -13,94 +13,94 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.4\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -108,56 +108,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -165,15 +165,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/hu/samba4.po b/applications/luci-app-samba4/po/hu/samba4.po
index 44b59b129d..e465b2a601 100644
--- a/applications/luci-app-samba4/po/hu/samba4.po
+++ b/applications/luci-app-samba4/po/hu/samba4.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-03-31 13:27+0000\n"
-"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n"
+"PO-Revision-Date: 2021-01-29 18:06+0000\n"
+"Last-Translator: Axhyre <axhyre@gmail.com>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/hu/>\n"
"Language: hu\n"
@@ -10,17 +10,17 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.0-dev\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Vendégek engedélyezése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Régi, már nem biztonságos protokollok és autentikáció engedélyezése."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -28,68 +28,68 @@ msgstr ""
"Régi SMB v1/Lanman kapcsolatok engedélyezése, SMB v2.1/3-at nem támogató "
"eszközökhöz."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Engedélyezett felhasználók"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Apple Time Machine megosztás"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Tallózható"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Létrehozási maszk"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Leírás"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Könyvtármaszk"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Active Directory-tartományvezérlő letiltása"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Netbios letiltása"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Winbind letiltása"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Sablon szerkesztése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"A sablon szerkesztése, amely a samba beállításainak előállításához kerül "
"felhasználásra."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "MacOS kompatibilis megosztások engedélyezése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -97,49 +97,49 @@ msgstr ""
"Globálisan engedélyezi az Apple AAPL kiterjesztését, és macOS kompatibilis "
"beállításokat ad az összes megosztáshoz."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Rendszergazda kényszerítése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Szinkron I/O kényszerítése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Általános beállítások"
+msgstr "Általános Beállítások"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Csak vendégek"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Tulajdonos öröklése"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Csatoló"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Név"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Hálózati megosztások"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -147,11 +147,11 @@ msgstr ""
"Az alsóbb kategóriás eszközökön növelheti a sebességet a szinkron I/O "
"kényszerítésével az alapértelmezett aszinkron helyett."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Útvonal"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -159,15 +159,15 @@ 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-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Csak olvasható"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Megosztott könyvtárak"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -179,15 +179,15 @@ msgstr ""
"értékeket nem szabad módosítani. Az értéküket az „Általános beállítások” "
"lapról kapják."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time Machine mérete GB-ban"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Vfs objektumok"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Munkacsoport"
diff --git a/applications/luci-app-samba4/po/it/samba4.po b/applications/luci-app-samba4/po/it/samba4.po
index ec6a38043e..f1767f14e3 100644
--- a/applications/luci-app-samba4/po/it/samba4.po
+++ b/applications/luci-app-samba4/po/it/samba4.po
@@ -3,8 +3,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
-"PO-Revision-Date: 2020-03-05 08:06+0000\n"
-"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n"
+"PO-Revision-Date: 2021-05-15 14:32+0000\n"
+"Last-Translator: Marco Mihai Condrache <marcomihaicondrache@gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/it/>\n"
"Language: it\n"
@@ -12,97 +12,97 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.0-dev\n"
+"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permetti ospiti"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Utenti ammessi"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Crea maschera"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descrizione"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Maschera della cartella"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
-msgstr "Modifica Template"
+msgstr "Modifica template"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"Modifica il template utilizzato per generare la configurazione di samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Impostazioni Generali"
@@ -110,42 +110,42 @@ msgstr "Impostazioni Generali"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interfaccia"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nome"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Condivisioni di rete"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Percorso"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -153,15 +153,15 @@ msgstr ""
"Per favore aggiungi le directory da condividere. Ogni directory si riferisce "
"a una cartella su un dispositivo montato."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Solo lettura"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Cartelle Condivise"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -173,15 +173,15 @@ msgstr ""
"('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata "
"'Opzioni Generali'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Gruppo di lavoro"
diff --git a/applications/luci-app-samba4/po/ja/samba4.po b/applications/luci-app-samba4/po/ja/samba4.po
index 3913d159f1..fc1e65e32a 100644
--- a/applications/luci-app-samba4/po/ja/samba4.po
+++ b/applications/luci-app-samba4/po/ja/samba4.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
-"PO-Revision-Date: 2020-06-13 22:13+0000\n"
+"PO-Revision-Date: 2021-02-11 14:23+0000\n"
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/ja/>\n"
@@ -12,17 +12,17 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.1-dev\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "ゲストアクセスを許可"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "レガシー(安全でない)プロトコル/認証を許可します。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,66 +30,69 @@ msgstr ""
"レガシー smb(v1)/Lanman 接続を許可します。smb(v2.1/3) サポートのない古いデバ"
"イスに必要です。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "許可されたユーザー"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Apple タイムマシン共有"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "閲覧可能"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "マスクを作成"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "説明"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "ディレクトリ・マスク"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Active Directory ドメインコントローラを無効化"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Netbios を無効化"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Winbind を無効化"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "テンプレートの編集"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "samba設定を生成するテンプレートを編集します。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
-msgstr ""
+msgstr "追加のチューニングを有効化"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "macOS 互換共有を有効化"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
+"コミュニティ主導のチューニング パラメータを有効にします。 これにより、書き込"
+"み速度が向上し、WiFi 経由の操作が向上する可能性があります。 複数のクライアン"
+"トが同時に同じファイルへ書き込む場合はお勧めしません。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -97,15 +100,15 @@ msgstr ""
"Apple の AAPL 拡張機能をグローバルに有効にし、すべての共有に macOS 互換性オプ"
"ションを追加します。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "強制ルート"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "強制同期 I/O"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "一般設定"
@@ -113,34 +116,34 @@ msgstr "一般設定"
msgid "Grant access to LuCI app samba4"
msgstr "LuCI アプリ samba4 へのアクセスを許可"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "ゲストのみ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "オーナーの継承"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "インターフェース"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
"指定されたインターフェースでのみリッスンするか、指定されていない場合は lan で"
"リッスンします"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "名前"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "ネットワーク共有"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -148,11 +151,11 @@ msgstr ""
"ローエンド・デバイスでは、デフォルトの非同期ではなく同期 I/O を強制することに"
"より、速度が向上する場合があります。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "パス"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -160,15 +163,15 @@ msgstr ""
"共有するディレクトリを追加してください。マウントされたデバイス等のディレクト"
"リを設定し、公開することができます。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "読み込みのみ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "共有ディレクトリ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -179,15 +182,15 @@ msgstr ""
"容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設"
"定'タブ内の値によって置き換えられます。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "GB 単位のタイムマシン・サイズ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Vfs オブジェクト"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "ワークグループ"
diff --git a/applications/luci-app-samba4/po/ko/samba4.po b/applications/luci-app-samba4/po/ko/samba4.po
index 4b530a87d7..c4bdac5b52 100644
--- a/applications/luci-app-samba4/po/ko/samba4.po
+++ b/applications/luci-app-samba4/po/ko/samba4.po
@@ -3,161 +3,162 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-22 15:23+0100\n"
-"PO-Revision-Date: 2011-10-25 21:26+0200\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2021-01-17 20:54+0000\n"
+"Last-Translator: ANTEGRAL <antegral@antegral.net>\n"
+"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationssamba4/ko/>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.4\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
-msgstr ""
+msgstr "설명"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr ""
+msgstr "기본 설정"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
-msgstr ""
+msgstr "인터페이스"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -165,15 +166,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/mr/samba4.po b/applications/luci-app-samba4/po/mr/samba4.po
index 1d410a2039..efdfe729fe 100644
--- a/applications/luci-app-samba4/po/mr/samba4.po
+++ b/applications/luci-app-samba4/po/mr/samba4.po
@@ -14,94 +14,94 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "अतिथींना परवानगी द्या"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "अनुमत वापरकर्ते"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "ब्राउझ-सक्षम"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "मुखवटा तयार करा"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "वर्णन"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "निर्देशिका मास्क"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "टेम्पलेट संपादित करा"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "सांबा कॉन्फिगरेशन व्युत्पन्न करण्यासाठी वापरला जाणारा टेम्पलेट संपादित करा."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "सक्ती रूट"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "सामान्य सेटिंग्ज"
@@ -109,42 +109,42 @@ msgstr "सामान्य सेटिंग्ज"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "वारसा मालकी मिळवा"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "इंटरफेस"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "केवळ दिलेल्या इंटरफेसवर किंवा, अनिर्दिष्ट असल्यास, लॅनवर ऐका"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "नाव"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "नेटवर्क शेअर्स"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "पथ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -152,15 +152,15 @@ msgstr ""
"कृपया सामायिक करण्यासाठी निर्देशिका जोडा. प्रत्येक निर्देशिका माउंट केलेल्या डिव्हाइसवरील "
"फोल्डरचा संदर्भ देते."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "केवळ-वाचनीय"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "सामायिक निर्देशिका"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -171,15 +171,15 @@ msgstr ""
"व्युत्पन्न केली जाईल. पाईप चिन्हाद्वारे बंद केलेली मूल्ये ('|') बदलू नयेत. त्यांना त्यांची मूल्ये "
"'सामान्य सेटिंग्ज' टॅबमधून मिळतात."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "कार्यसमूह"
diff --git a/applications/luci-app-samba4/po/ms/samba4.po b/applications/luci-app-samba4/po/ms/samba4.po
index bf9a9730a9..05fe15a5dd 100644
--- a/applications/luci-app-samba4/po/ms/samba4.po
+++ b/applications/luci-app-samba4/po/ms/samba4.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2019-12-18 04:21+0000\n"
-"Last-Translator: Pusak Hitam <thegame.gamesky@gmail.com>\n"
+"PO-Revision-Date: 2021-03-31 12:26+0000\n"
+"Last-Translator: Faruki Ramly <farukiramly45@gmail.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/ms/>\n"
"Language: ms\n"
@@ -10,96 +10,96 @@ msgstr ""
"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"
+"X-Generator: Weblate 4.6-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
-msgstr ""
+msgstr "Benarkan Tetamu"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Keterangan"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -107,56 +107,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -164,14 +164,14 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/nb_NO/samba4.po b/applications/luci-app-samba4/po/nb_NO/samba4.po
index fdcf461bd0..b821808497 100644
--- a/applications/luci-app-samba4/po/nb_NO/samba4.po
+++ b/applications/luci-app-samba4/po/nb_NO/samba4.po
@@ -1,154 +1,160 @@
msgid ""
msgstr ""
-"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n"
+"PO-Revision-Date: 2021-03-27 15:30+0000\n"
+"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
+"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationssamba4/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 4.6-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Tillat gjester"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Tillatte brukere"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Opprett Maske"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Beskrivelse"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Katalog maske"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Rediger Mal"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Rediger malen som brukes til å generere samba konfigurasjonen."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Generelle Innstillinger"
+msgstr "Generelle innstillinger"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
-msgstr ""
+msgstr "Grensesnitt"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Navn"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Nettverks Mapper"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
-msgstr "Fysisk bane"
+msgstr "Sti"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Skrivebeskyttet"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Delte Kataloger"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -159,15 +165,15 @@ msgstr ""
"konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke "
"endres. De får sine verdier fra 'Generelle Innstillinger' fanen."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Arbeidsgruppe"
diff --git a/applications/luci-app-samba4/po/nl/samba4.po b/applications/luci-app-samba4/po/nl/samba4.po
new file mode 100644
index 0000000000..1b9afeee51
--- /dev/null
+++ b/applications/luci-app-samba4/po/nl/samba4.po
@@ -0,0 +1,200 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-03-22 15:23+0100\n"
+"PO-Revision-Date: 2021-03-23 11:29+0000\n"
+"Last-Translator: Vivovix <noudjemaas@gmail.com>\n"
+"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationssamba4/nl/>\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.5.2-dev\n"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
+msgid "Allow guests"
+msgstr "Gasten toestaan"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+msgid "Allow legacy (insecure) protocols/authentication."
+msgstr "Verouderde (onveilige) authenticatie toestaan."
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
+msgid ""
+"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
+"smb(v2.1/3) support."
+msgstr ""
+"Verouderde smb(v1)/Lanman verbindingen toestaan, nodig voor oudere apparaten "
+"zonder ondersteuning voor smb(v2.1/3)."
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
+msgid "Allowed users"
+msgstr "Toegestane gebruikers"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
+msgid "Apple Time-machine share"
+msgstr "Apple Time-machine netwerklocatie"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
+msgid "Browse-able"
+msgstr "Doorzoekbare"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+msgid "Create mask"
+msgstr "Masker maken"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
+msgid "Description"
+msgstr "Beschrijving"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
+msgid "Directory mask"
+msgstr "Directory masker"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
+msgid "Disable Active Directory Domain Controller"
+msgstr "Active Directory domeincontroller uitschakelen"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
+msgid "Disable Netbios"
+msgstr "Netbios uitschakelen"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
+msgid "Disable Winbind"
+msgstr "Winbind uitschakelen"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
+msgid "Edit Template"
+msgstr "Template bewerken"
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
+msgid "Edit the template that is used for generating the samba configuration."
+msgstr ""
+"Template bewerken dat wordt gebruikt voor het genereren van de samba-"
+"configuratie."
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
+msgid "Enable extra Tuning"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
+msgid "Enable macOS compatible shares"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
+msgid ""
+"Enable some community driven tuning parameters, that may improve write "
+"speeds and better operation via WiFi. Not recommend if multiple clients "
+"write to the same files, at the same time!"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
+msgid ""
+"Enables Apple's AAPL extension globally and adds macOS compatibility options "
+"to all shares."
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
+msgid "Force Root"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
+msgid "Force synchronous I/O"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+msgid "General Settings"
+msgstr ""
+
+#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
+msgid "Grant access to LuCI app samba4"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
+msgid "Guests only"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
+msgid "Inherit owner"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+msgid "Interface"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
+msgid "Listen only on the given interface or, if unspecified, on lan"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
+#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
+msgid "Network Shares"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+msgid ""
+"On lower-end devices may increase speeds, by forceing synchronous I/O "
+"instead of the default asynchronous."
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
+msgid "Path"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+msgid ""
+"Please add directories to share. Each directory refers to a folder on a "
+"mounted device."
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
+msgid "Read-only"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
+msgid "Shared Directories"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
+msgid ""
+"This is the content of the file '/etc/samba/smb.conf.template' from which "
+"your samba configuration will be generated. Values enclosed by pipe symbols "
+"('|') should not be changed. They get their values from the 'General "
+"Settings' tab."
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
+msgid "Time-machine size in GB"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
+msgid "Vfs objects"
+msgstr ""
+
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
+msgid "Workgroup"
+msgstr ""
+
+#~ msgid ""
+#~ "Allow system users to reach their home directories via network shares"
+#~ msgstr ""
+#~ "Allow system users to reach their home directories via network shares"
+
+#~ msgid "Hostname"
+#~ msgstr "Hostname"
+
+#~ msgid "Share home-directories"
+#~ msgstr "Share home-directories"
+
+#~ msgid "Mask for new directories"
+#~ msgstr "Mask for new directories"
+
+#~ msgid "Mask for new files"
+#~ msgstr "Mask for new files"
diff --git a/applications/luci-app-samba4/po/pl/samba4.po b/applications/luci-app-samba4/po/pl/samba4.po
index 3caf6b6b96..b292fb3902 100644
--- a/applications/luci-app-samba4/po/pl/samba4.po
+++ b/applications/luci-app-samba4/po/pl/samba4.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2020-07-06 11:07+0000\n"
+"PO-Revision-Date: 2021-03-14 05:16+0000\n"
"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/pl/>\n"
@@ -11,17 +11,17 @@ msgstr ""
"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 4.2-dev\n"
+"X-Generator: Weblate 4.5.2-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Zezwól gościom"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Zezwalaj na starsze (niepewne) protokoły/uwierzytelnianie."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -29,59 +29,59 @@ msgstr ""
"Zezwalaj na starsze połączenia smb (v1)/Lanman, potrzebne dla starszych "
"urządzeń bez obsługi smb (v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Użytkownicy z prawem dostępu"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Udział Apple Time-machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Możliwe do przeglądania"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Utwórz maskę"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Opis"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Katalog maski"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Wyłącz kontroler domeny Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Wyłącz Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Wyłącz Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Edytuj szablon"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr "Włącz dodatkowe strojenie"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Włącz udziały zgodne z macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
@@ -91,7 +91,7 @@ msgstr ""
"poprawić szybkość zapisu i lepszą obsługę przez WiFi. Nie zaleca się, jeśli "
"wielu klientów pisze do tych samych plików jednocześnie!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -99,15 +99,15 @@ msgstr ""
"Zapewnia globalne rozszerzenie AAPL firmy Apple i dodaje opcje zgodności z "
"systemem MacOS do wszystkich akcji."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Wymuszanie Roota"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Wymuś synchroniczne I/O"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Ustawienia główne"
@@ -115,32 +115,32 @@ msgstr "Ustawienia główne"
msgid "Grant access to LuCI app samba4"
msgstr "Udziel dostępu LuCI do aplikacji samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Tylko dla gości"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
-msgstr "Właściciel spadku"
+msgstr "Właściciel dziedziczący"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interfejs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nazwa"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Udziały sieciowe"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -148,11 +148,11 @@ msgstr ""
"Na urządzeniach budżetowych może zwiększyć szybkość, przez forceing "
"synchroniczne I/O zamiast domyślnego asynchronicznego."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Ścieżka"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -160,15 +160,15 @@ msgstr ""
"Proszę dodać katalogi do udostępnienia. Każdy katalog odnosi się do folderu "
"w zamontowanym urządzeniu."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Tylko do odczytu"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Udostępniane katalogi"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -180,15 +180,15 @@ msgstr ""
"kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną "
"pobrane z zakładki \"Ustawienia ogólne\"."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time-machine rozmiar w GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Obiekty Vfs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Grupa robocza"
diff --git a/applications/luci-app-samba4/po/pt/samba4.po b/applications/luci-app-samba4/po/pt/samba4.po
index 19df51a139..8531dc4810 100644
--- a/applications/luci-app-samba4/po/pt/samba4.po
+++ b/applications/luci-app-samba4/po/pt/samba4.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-26 19:03+0200\n"
-"PO-Revision-Date: 2020-07-04 17:41+0000\n"
+"PO-Revision-Date: 2020-11-01 08:19+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/pt/>\n"
@@ -12,17 +12,17 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.3.2-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permitir Convidados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Permitir protocolos/autenticação antigos (inseguro)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,59 +30,59 @@ msgstr ""
"Permitir ligações smb(v1)/Lanman antigas, necessárias para aparelhos mais "
"antigos sem suporte smb(v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Utilizadores Permitidos"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Compartilhamento da Time Machine da Apple"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Navegável"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Criar máscara"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descrição"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Máscara do diretório"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Desativar Controlador de Domínio de Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Desativar Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Desativar Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Editar Modelo"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Editar o modelo que é utilizado para gerar a configuração do Samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr "Ativar Ajustes adicionais"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Ativar compartilhamentos compatíveis com macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
@@ -92,7 +92,7 @@ msgstr ""
"melhorar a velocidade de transmissão e melhor operação via WiFi. Não é "
"recomendável se vários clientes escrevem nos mesmos ficheiros ao mesmo tempo!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -100,48 +100,48 @@ msgstr ""
"Ativa a extensão AAPL da Apple globalmente e adiciona opções de "
"compatibilidade de macOS em todos os compartilhamentos."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Forçar Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Forçar E/S síncrona"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Configurações Gerais"
+msgstr "Configurações gerais"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr "Conceder acesso à app LuCI samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Somente convidados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Herdar proprietário"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interface"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nome"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Partilhas da Rede"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -149,11 +149,11 @@ msgstr ""
"Em aparelhos de extremidade inferior podem aumentar as velocidades, forçando "
"a E/S síncrona em vez da assíncrona padrão."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Caminho"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -161,15 +161,15 @@ msgstr ""
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
"uma pasta num aparelho montado."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Apenas Leitura"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Directórios Partilhados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -181,15 +181,15 @@ msgstr ""
"| não devem ser alterados. Eles recebem os valores do separador 'Definições "
"Gerais'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Tamanho da Time Machine em GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Objetos Vfs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Grupo de trabalho"
diff --git a/applications/luci-app-samba4/po/pt_BR/samba4.po b/applications/luci-app-samba4/po/pt_BR/samba4.po
index 657763c881..967de9e3b6 100644
--- a/applications/luci-app-samba4/po/pt_BR/samba4.po
+++ b/applications/luci-app-samba4/po/pt_BR/samba4.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2020-07-04 17:41+0000\n"
+"PO-Revision-Date: 2021-03-23 11:29+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssamba4/pt_BR/>\n"
@@ -12,17 +12,17 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.5.2-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permitir convidados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Permitir protocolos/autenticação antigos (inseguro)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -30,59 +30,59 @@ msgstr ""
"Permita conexões smb(v1)/Lanman antigas, necessário para dispositivos mais "
"antigos sem suporte a smb (v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Usuários permitidos"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Compartilhamento Time Machine da Apple"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Navegável"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Máscara de criação"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descrição"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Máscara do diretório"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Desabilitar o Controlador de Domínios AD"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Desabilitar o NetBIOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Desabilitar o Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Editar o modelo"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Edita o modelo que é usado para gerar a configuração do samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr "Ativar o ajuste fino extra"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Habilitar compartilhamentos compatíveis com MacOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
@@ -93,7 +93,7 @@ msgstr ""
"Não é recomendável caso vários clientes escrevam nos mesmos arquivos, ao "
"mesmo tempo!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -101,49 +101,49 @@ msgstr ""
"Habilitar globalmente a extensão AAPL da Apple e adicione a opção de "
"compatibilidade com MacOS em todos os compartilhamentos."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Impor o Usuário Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Impõem E/S síncrona"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Configurações Gerais"
+msgstr "Configurações gerais"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr "Conceder acesso ao aplicativo LuCI samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Somente convidados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Herdar o dono"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interface"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
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-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nome"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Compartilhamentos de Rede"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -151,11 +151,11 @@ msgstr ""
"Pode aumentar a velocidade em equipamentos mais simples ao impor E/S "
"síncrona em vez do padrão assíncrono."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Caminho"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -163,15 +163,15 @@ msgstr ""
"Por favor, adicione diretórios para compartilhar. Cada diretório refere-se a "
"uma pasta em um dispositivo montado."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Somente leitura"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Diretórios Compartilhados"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -183,15 +183,15 @@ msgstr ""
"não devem ser alterados. Estes valores serão obtidos a partir da aba "
"'Configurações Gerais'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Tamanho do Time Machine em GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Objetos VFS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Grupo de trabalho"
diff --git a/applications/luci-app-samba4/po/ro/samba4.po b/applications/luci-app-samba4/po/ro/samba4.po
index 65282a8f06..8b89245434 100644
--- a/applications/luci-app-samba4/po/ro/samba4.po
+++ b/applications/luci-app-samba4/po/ro/samba4.po
@@ -13,15 +13,15 @@ msgstr ""
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Permite oaspeți"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Permit protocoale/autentificare vechi/e (nesigure)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -29,66 +29,66 @@ msgstr ""
"Permiteți conexiuni SMB(v1)/Lanman, necesare pentru dispozitive mai vechi "
"fără suport SMB(v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Utilizatori permiși"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Partajare pentru Apple Time-machine"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Navigabil"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Creaza masca"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Descriere"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Masca director"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Dezactivează Active Directory Domain Controller"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Dezactivează Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Dezactivează Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Editare sablon"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Editati sablonul utilizat pentru generarea configuratiei samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Activează partajările compatibile cu macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -96,15 +96,15 @@ msgstr ""
"Activează extensia AAPL de la Apple la nivel global și adaugă opțiuni de "
"compatibilitate macOS tuturor partajărilor."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Forțează ca Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Forțează I/O sincron"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Setări generale"
@@ -112,33 +112,33 @@ msgstr "Setări generale"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Doar oaspeți"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Proprietar care moștenește"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Interfață"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
"Ascultați numai pe interfața dată sau, dacă nu este specificată, pe LAN"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Nume"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Rețea, partajări"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -146,11 +146,11 @@ msgstr ""
"Pe dispozitivele inferioare poate crește vitezele, prin forțarea I/O sincron "
"în loc de asincron implicit."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Calea"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -158,15 +158,15 @@ msgstr ""
"Vă rugăm să adăugați directoare pentru a partaja. Fiecare director se referă "
"la un folder de pe un dispozitiv montat."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Doar citire"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Directoare partajate"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -178,15 +178,15 @@ msgstr ""
"verticala ('|') nu trebuie modificate, ele își iau valorile direct din tab-"
"ul de \"Setări generale\"."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time-machine marine în GB"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Vfs obiecte"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Workgroup"
diff --git a/applications/luci-app-samba4/po/ru/samba4.po b/applications/luci-app-samba4/po/ru/samba4.po
index 39c340a688..309492b88a 100644
--- a/applications/luci-app-samba4/po/ru/samba4.po
+++ b/applications/luci-app-samba4/po/ru/samba4.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LuCI: samba\n"
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
-"PO-Revision-Date: 2020-07-04 17:41+0000\n"
+"PO-Revision-Date: 2021-03-11 08:13+0000\n"
"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/ru/>\n"
@@ -12,19 +12,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.5.2-dev\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Разрешить гостевой доступ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Разрешить устаревшие (небезопасные) протоколы / аутентификацию."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -32,68 +32,68 @@ msgstr ""
"Разрешить устаревшие соединения smb (v1)/Lanman, необходимые для старых "
"устройств без поддержки smb (v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Разрешенные пользователи"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Apple Time-machine share"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Показывать содержимое"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Создать маску"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Описание"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Маска папок"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Выключить контроллер домена Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Выключить Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Выключить Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Настройка шаблона"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"Редактирование шаблона, который используется для генерации конфигурации "
"Samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Включить MacOS-совместимые ресурсы"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -101,48 +101,48 @@ msgstr ""
"Включает расширение Apple AAPL в глобальном масштабе и добавляет параметры "
"совместимости macOS для всех общих ресурсов."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Принудительно Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Принудительный синхронный ввод/вывод"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Основные настройки"
+msgstr "Общие настройки"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
msgstr "Предоставить доступ LuCI к приложению samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Гостевой"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Наследовать владельца"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Интерфейс"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "Слушать только на данном интерфейсе или, если не указано, на lan"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Название"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Сетевые ресурсы"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -150,11 +150,11 @@ msgstr ""
"На устройствах более низкого уровня скорость может увеличиться за счет "
"принудительного синхронного ввода-вывода вместо асинхронного по умолчанию."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Путь"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -162,15 +162,15 @@ msgstr ""
"Добавьте папки для совместного доступа. Каждая папка соответствует разделу "
"на подключенном устройстве."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Только для чтения"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Папки общего доступа"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -182,15 +182,15 @@ msgstr ""
"('|'), не должны быть изменены.<br />Они будут автоматически заменены на "
"значения со страницы 'Основные настройки'."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Размер Time-machine в Гб"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Vfs объекты"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Рабочая группа"
diff --git a/applications/luci-app-samba4/po/sk/samba4.po b/applications/luci-app-samba4/po/sk/samba4.po
index 3e195b6569..39ad9f197d 100644
--- a/applications/luci-app-samba4/po/sk/samba4.po
+++ b/applications/luci-app-samba4/po/sk/samba4.po
@@ -12,94 +12,94 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Popis"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Všeobecné nastavenia"
@@ -107,56 +107,56 @@ msgstr "Všeobecné nastavenia"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Rozhranie"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Názov"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -164,14 +164,14 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/sv/samba4.po b/applications/luci-app-samba4/po/sv/samba4.po
index c7c24d58e3..12fbe4a2a6 100644
--- a/applications/luci-app-samba4/po/sv/samba4.po
+++ b/applications/luci-app-samba4/po/sv/samba4.po
@@ -12,95 +12,95 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Tillåt gäster"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Tillåtna användare"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Skapa mask"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Beskrivning"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Mask för mapp"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Redigera mall"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
"Redigera mallen som används för att generera konfigurationen för samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "Generella inställningar"
@@ -108,56 +108,56 @@ msgstr "Generella inställningar"
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Gränssnitt"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Namn"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Nätverksdelningar"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Genväg"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Endast läsbar"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Delade mappar"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -165,15 +165,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Arbetsgrupp"
diff --git a/applications/luci-app-samba4/po/templates/samba4.pot b/applications/luci-app-samba4/po/templates/samba4.pot
index 5609f4f228..64ceba3224 100644
--- a/applications/luci-app-samba4/po/templates/samba4.pot
+++ b/applications/luci-app-samba4/po/templates/samba4.pot
@@ -1,94 +1,94 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -96,56 +96,56 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -153,14 +153,14 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr ""
diff --git a/applications/luci-app-samba4/po/tr/samba4.po b/applications/luci-app-samba4/po/tr/samba4.po
index f8d791f66d..4d0605e39b 100644
--- a/applications/luci-app-samba4/po/tr/samba4.po
+++ b/applications/luci-app-samba4/po/tr/samba4.po
@@ -1,173 +1,191 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2021-05-15 14:32+0000\n"
+"Last-Translator: semih <semiht@gmail.com>\n"
+"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationssamba4/tr/>\n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.7-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
-msgstr ""
+msgstr "Konuklara izin ver"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
-msgstr ""
+msgstr "Eski (güvenli olmayan) protokollere / kimlik doğrulamaya izin ver."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
+"Smb (v2.1/3) desteği olmayan eski cihazlar için gerekli olan eski smb (v1) / "
+"Lanman bağlantılarına izin ver."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
-msgstr ""
+msgstr "İzin verilen kullanıcılar"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
-msgstr ""
+msgstr "Apple Zaman makinesi paylaşımı"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
-msgstr ""
+msgstr "Göz atılabilir"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
-msgstr ""
+msgstr "Maske oluştur"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
-msgstr ""
+msgstr "Açıklama"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
-msgstr ""
+msgstr "Dizin maskesi"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
-msgstr ""
+msgstr "Aktif Dizin Etki Alanı Denetleyicisini Devre Dışı Bırak"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
-msgstr ""
+msgstr "Netbios'u devre dışı bırak"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
-msgstr ""
+msgstr "Winbind'ı devre dışı bırak"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
-msgstr ""
+msgstr "Şablonu Düzenle"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
-msgstr ""
+msgstr "Samba yapılandırmasını oluşturmak için kullanılan şablonu düzenle."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
-msgstr ""
+msgstr "Ekstra Ayarlamayı etkinleştir"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
-msgstr ""
+msgstr "MacOS uyumlu paylaşımları etkinleştir"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
+"Yazma hızlarını artırabilecek ve WiFi üzerinden daha iyi çalışmayı "
+"sağlayabilecek bazı topluluk odaklı ayar parametrelerini etkinleştirin. "
+"Birden fazla istemcinin aynı dosyaya aynı anda yazması önerilmez!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
+"Apple'ın AAPL uzantısını global olarak etkinleştirir ve tüm paylaşımlara "
+"macOS uyumluluk seçenekleri ekler."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
-msgstr ""
+msgstr "Kökü Zorla"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
-msgstr ""
+msgstr "Eşzamanlı G/Ç'yi zorla"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr ""
+msgstr "Genel Ayarlar"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
-msgstr ""
+msgstr "LuCI uygulaması samba4'e erişim izni verin"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
-msgstr ""
+msgstr "Sadece misafirler"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
-msgstr ""
+msgstr "Sahibi devral"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
-msgstr ""
+msgstr "Arayüz"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
-msgstr ""
+msgstr "Yalnızca verilen arabirimde veya belirtilmemişse lan üzerinde dinleyin"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
-msgstr ""
+msgstr "Ad"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
-msgstr ""
+msgstr "Ağ Paylaşımları"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
+"Alt uç cihazlarda, varsayılan eşzamansız yerine eşzamanlı G/Ç'yi zorlayarak "
+"hızları artırabilir."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
-msgstr ""
+msgstr "Yol"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
+"Lütfen paylaşılacak dizinleri ekleyin. Her dizin, bağlı bir cihazdaki bir "
+"klasörü ifade eder."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
-msgstr ""
+msgstr "Salt okunur"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
-msgstr ""
+msgstr "Paylaşılan Dizinler"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
"('|') should not be changed. They get their values from the 'General "
"Settings' tab."
msgstr ""
+"Bu, samba yapılandırmanızın oluşturulacağı '/etc/samba/smb.conf.template' "
+"dosyasının içeriğidir. Boru sembolleriyle ('|') çevrelenen değerler "
+"değiştirilmemelidir. Değerlerini 'Genel Ayarlar' sekmesinden alırlar."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
-msgstr ""
+msgstr "GB cinsinden zaman makinesi boyutu"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
-msgstr ""
+msgstr "Vfs nesneleri"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
-msgstr ""
+msgstr "Çalışma grubu"
diff --git a/applications/luci-app-samba4/po/uk/samba4.po b/applications/luci-app-samba4/po/uk/samba4.po
index 461c93492f..96d1ff54da 100644
--- a/applications/luci-app-samba4/po/uk/samba4.po
+++ b/applications/luci-app-samba4/po/uk/samba4.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"PO-Revision-Date: 2020-02-19 13:28+0000\n"
+"PO-Revision-Date: 2021-04-04 07:26+0000\n"
"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssamba4/uk/>\n"
@@ -9,19 +9,19 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
-"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 3.11\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.6-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "Дозволити гостьовий вхід"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "Дозволити застарілі (небезпечні) протоколи/автентифікації."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
@@ -29,66 +29,69 @@ msgstr ""
"Дозволити застарілі підключення smb(v1)/Lanman, необхідні для старих "
"пристроїв без підтримки smb(v2.1/3)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "Дозволені користувачі"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Частина \"Машини часу\" Apple"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "Доступний для перегляду"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "Створити маску"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Опис"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "Маска каталогу"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "Вимкнути контролер домену Active Directory"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "Вимкнути Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "Вимкнути Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "Редагувати шаблон"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr "Редагувати шаблон файлу конфігурації samba."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
-msgstr ""
+msgstr "Увімкнути додаткове налаштування"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "Увімкнути спільні папки, сумісні з macOS"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
+"Увімкніть деякі параметри налаштування, орієнтовані на спільноту, що може "
+"поліпшити швидкість запису та кращу роботу через WiFi. Не рекомендується, "
+"якщо кілька клієнтів пишуть в одні й ті ж файли, в той же час!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
@@ -96,50 +99,50 @@ msgstr ""
"Увімкнути розширення Apple AAPL глобально і додавати параметри сумісності з "
"macOS для всіх спільних ресурсів."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "Примусово Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "Примусово синхронний ввід/вивід"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
-msgstr "Загальні параметри"
+msgstr "Загальні налаштування"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
-msgstr ""
+msgstr "Надати доступ LuCI до застосунку samba4"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "Лише гості"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "Успадковувати власника"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "Інтерфейс"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
"Прослуховувати тільки на цьому інтерфейсі, якщо <em>не визначено</em> – на "
"всіх"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "Назва"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Спільні мережеві ресурси"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
@@ -147,11 +150,11 @@ msgstr ""
"На пристроях нижнього класу можна збільшити швидкість, застосовуючи "
"синхронний ввід/вивід замість типового асинхронного."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "Шлях"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
@@ -159,15 +162,15 @@ msgstr ""
"Додайте каталоги для спільного доступу. Кожен каталог посилається на папку "
"на підключеному пристрої."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "Тільки читання"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Спільні каталоги"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -179,15 +182,15 @@ msgstr ""
"повинні змінюватися.<br />Вони отримують свої значення з вкладки \"Загальні "
"параметри\"."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Обсяг \"Машини часу\", ГБ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "Об'єкти Vfs"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Робоча група"
diff --git a/applications/luci-app-samba4/po/vi/samba4.po b/applications/luci-app-samba4/po/vi/samba4.po
index 7e8efda087..9c00355972 100644
--- a/applications/luci-app-samba4/po/vi/samba4.po
+++ b/applications/luci-app-samba4/po/vi/samba4.po
@@ -14,98 +14,98 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
#, fuzzy
msgid "Allow guests"
msgstr "Cho phép khách"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
#, fuzzy
msgid "Allowed users"
msgstr "Người sử dụng được cho phép"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
#, fuzzy
msgid "Create mask"
msgstr "Tạo Mask"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "Mô tả"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
#, fuzzy
msgid "Directory mask"
msgstr "Thư mục Mask"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr ""
@@ -113,57 +113,57 @@ msgstr ""
msgid "Grant access to LuCI app samba4"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "Mạng chia sẻ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
#, fuzzy
msgid "Read-only"
msgstr "Chỉ đọc "
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "Thư mục chia sẻ"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -171,15 +171,15 @@ msgid ""
"Settings' tab."
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr ""
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "Nhóm làm việc "
diff --git a/applications/luci-app-samba4/po/zh_Hans/samba4.po b/applications/luci-app-samba4/po/zh_Hans/samba4.po
index e916194305..a13e828eef 100644
--- a/applications/luci-app-samba4/po/zh_Hans/samba4.po
+++ b/applications/luci-app-samba4/po/zh_Hans/samba4.po
@@ -6,8 +6,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-05-10 12:47+0000\n"
-"Last-Translator: gw826943555 <gw826943555@qq.com>\n"
+"PO-Revision-Date: 2021-04-12 08:24+0000\n"
+"Last-Translator: xiazhang <xz@xia.plus>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssamba4/zh_Hans/>\n"
"Language: zh_Hans\n"
@@ -15,153 +15,155 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.1-dev\n"
+"X-Generator: Weblate 4.6-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
msgstr "允许匿名用户"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
msgstr "允许旧协议与身份验证(不安全)."
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
msgstr "允许不支持smb(v2.1/3)的旧设备使用旧的smb(v1)/Lanman连接。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "允许用户"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
msgstr "Apple Time-machine 共享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "可浏览"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
msgstr "创建权限掩码"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "描述"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
msgstr "目录权限掩码"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "禁用 Active Directory 域控制器"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "禁用 Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "禁用 Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
msgstr "编辑模板"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
-msgstr "编辑用于生成samba配置的模板。"
+msgstr "编辑用于生成 samba 配置的模板。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
-msgstr ""
+msgstr "启用扩展调整"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
msgstr "启用 macOS 兼容共享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
+"启用一些社区驱动的调整参数,通过 WiFi 可以提高写入速度和更好地运行。不建议多"
+"个客户端同时写入同一文件!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr "全局启用 Apple 的 AAPL 扩展,并为所有共享添加 macOS 兼容性选项。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "强制 Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "强制同步 I/O"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "常规设置"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
-msgstr "授予访问LuCI app samba4的权限"
+msgstr "授予访问 LuCI 应用 samba4 的权限"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "仅来宾用户"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "继承所有者"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "接口"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "仅监听指定的接口,未指定则监听 lan"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
msgstr "名称"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "网络共享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr "在低端设备上,可以通过强制使用同步I / O而不是默认的异步来提高速度。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "路径"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
msgstr "请添加要共享的目录。每个目录指到已挂载设备上的文件夹。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "只读"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "共享目录"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
@@ -171,15 +173,15 @@ msgstr ""
"这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道"
"符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time-machine 大小(GB)"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "VFS 对象"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "工作组"
diff --git a/applications/luci-app-samba4/po/zh_Hant/samba4.po b/applications/luci-app-samba4/po/zh_Hant/samba4.po
index 71fa028da0..920cc5aeeb 100644
--- a/applications/luci-app-samba4/po/zh_Hant/samba4.po
+++ b/applications/luci-app-samba4/po/zh_Hant/samba4.po
@@ -6,8 +6,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-06-30 13:41+0000\n"
-"Last-Translator: Hulen <shift0106@gmail.com>\n"
+"PO-Revision-Date: 2021-01-15 12:32+0000\n"
+"Last-Translator: akibou <jinwenxin1997@icloud.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssamba4/zh_Hant/>\n"
"Language: zh_Hant\n"
@@ -15,171 +15,173 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.2-dev\n"
+"X-Generator: Weblate 4.5-dev\n"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:105
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:120
msgid "Allow guests"
-msgstr "允許匿名使用者"
+msgstr "允許訪客"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:52
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
msgid "Allow legacy (insecure) protocols/authentication."
-msgstr "允許舊協定與身份驗證 (不安全)。"
+msgstr "允許舊有協定/身分驗證。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:53
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:68
msgid ""
"Allow legacy smb(v1)/Lanman connections, needed for older devices without "
"smb(v2.1/3) support."
-msgstr "允許不支援 smb(v2.1/3) 的舊裝置使用舊的 smb(v1)/Lanman 連接。"
+msgstr "允許不支援 SMB(v2.1/3) 的舊裝置使用舊有 SMB(v1)/Lanman 連接。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:102
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:117
msgid "Allowed users"
msgstr "允許使用者"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:151
msgid "Apple Time-machine share"
-msgstr "Apple Time-machine 共享"
+msgstr "Apple Time Machine 分享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:89
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:104
msgid "Browse-able"
msgstr "可瀏覽"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:121
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:136
msgid "Create mask"
-msgstr "建立權限掩碼"
+msgstr "建立遮罩"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:39
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:54
msgid "Description"
msgstr "描述"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:127
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:142
msgid "Directory mask"
-msgstr "目錄權限掩碼"
+msgstr "目錄遮罩"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:59
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:74
msgid "Disable Active Directory Domain Controller"
msgstr "停用 Active Directory 網域控制器"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:56
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:71
msgid "Disable Netbios"
msgstr "停用 Netbios"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:77
msgid "Disable Winbind"
msgstr "停用 Winbind"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:32
msgid "Edit Template"
-msgstr "編輯範本"
+msgstr "編輯模板"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:66
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:81
msgid "Edit the template that is used for generating the samba configuration."
-msgstr "編輯用於產生 samba 設定的範本。"
+msgstr "編輯用於產生 Samba 組態的範本。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:42
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:57
msgid "Enable extra Tuning"
-msgstr ""
+msgstr "啟用額外調整"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:49
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:64
msgid "Enable macOS compatible shares"
-msgstr "啟用 macOS 相容共享"
+msgstr "啟用 macOS 相容分享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:43
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:58
msgid ""
"Enable some community driven tuning parameters, that may improve write "
"speeds and better operation via WiFi. Not recommend if multiple clients "
"write to the same files, at the same time!"
msgstr ""
+"啟用一些社區驅動的調整參數,透過 WiFi 可以提高寫入速度和更好地執行。不建議多"
+"個客戶端同時寫入同一檔案!"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:50
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:65
msgid ""
"Enables Apple's AAPL extension globally and adds macOS compatibility options "
"to all shares."
msgstr "全域啟用 Apple 的 AAPL 擴充套件,並為所有分享加入 macOS 相容性選項。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:100
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:115
msgid "Force Root"
msgstr "強制 Root"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:46
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:61
msgid "Force synchronous I/O"
msgstr "強制同步 I/O"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:30
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:31
msgid "General Settings"
msgstr "一般設定"
#: applications/luci-app-samba4/root/usr/share/rpcd/acl.d/luci-app-samba4.json:3
msgid "Grant access to LuCI app samba4"
-msgstr "授予存取 LuCI app samba4 的權限"
+msgstr "授予 luci-app-samba4 擁有存取的權限"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:111
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:126
msgid "Guests only"
msgstr "僅來賓使用者"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:116
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:131
msgid "Inherit owner"
msgstr "繼承所有者"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:33
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
msgid "Interface"
msgstr "介面"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:34
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:35
msgid "Listen only on the given interface or, if unspecified, on lan"
msgstr "僅監聽指定的介面,未指定則監聽 lan"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:83
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:98
msgid "Name"
-msgstr "分享名稱"
+msgstr "名稱"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:22
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:23
#: applications/luci-app-samba4/root/usr/share/luci/menu.d/luci-app-samba4.json:3
msgid "Network Shares"
msgstr "網路分享"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:47
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:62
msgid ""
"On lower-end devices may increase speeds, by forceing synchronous I/O "
"instead of the default asynchronous."
msgstr "在低端裝置上,可以透過強制使用同步 I / O 而不是預設的異步來提高速度。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:84
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:99
msgid "Path"
msgstr "路徑"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:79
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
msgid ""
"Please add directories to share. Each directory refers to a folder on a "
"mounted device."
-msgstr "請新增要分享的目錄。每個目錄指到已掛載裝置上的資料夾。"
+msgstr "請新增要分享的目錄;每個目錄指向已掛載裝置上的資料夾。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:94
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:109
msgid "Read-only"
msgstr "唯讀"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:78
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:93
msgid "Shared Directories"
msgstr "分享目錄"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:67
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:82
msgid ""
"This is the content of the file '/etc/samba/smb.conf.template' from which "
"your samba configuration will be generated. Values enclosed by pipe symbols "
"('|') should not be changed. They get their values from the 'General "
"Settings' tab."
msgstr ""
-"這是將從其上產生 samba 設定的檔案「/etc/samba/smb.conf.template」的內容。由管道符號 (「|」) "
-"包圍的值不應變更。它們將從「一般設定」標籤中取得其值。"
+"這是 \"/etc/samba/smb.conf.template\" 檔案的內容,您的 Samba 組態將藉由它產"
+"生。由管道符號 \"|\" 封閉的內容不應被變更,它們的值來自「一般設定」欄標。"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:138
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:153
msgid "Time-machine size in GB"
msgstr "Time-machine 大小 (GB)"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:133
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:148
msgid "Vfs objects"
msgstr "VFS 物件"
-#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:36
+#: applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js:51
msgid "Workgroup"
msgstr "工作群組"